/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4b4241;
    background-color: #f8f0ed;
}

/* Header section */
.header {
    background-color: #dcc5c0;
    text-align: center;
    padding: 4rem 2rem;
    color: #4b4241;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: #2c2826;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #866962, transparent);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #866962;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2rem;
}

/* Profiles section */
.profiles-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f0ed 0%, #f0e7e3 100%);
}

.profiles-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Model Cards */
.model-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(75, 66, 65, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    transform-origin: center;
}

.model-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(75, 66, 65, 0.2);
}

/* 移除阶梯式效果，所有卡片相同高度 */

/* Image wrapper with overlay */
.model-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
    filter: brightness(0.95) contrast(1.05);
}

.model-card:hover .model-image {
    transform: scale(1.08);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 66, 65, 0.8) 0%, rgba(134, 105, 98, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.view-profile-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: #4b4241;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.view-profile-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Model info section */
.model-info {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2826;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.model-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #866962;
    margin: 0 0 1rem 0;
    font-weight: 300;
    line-height: 1.4;
}

.model-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8ddd9;
}

.detail-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #866962;
    font-weight: 400;
}

.detail-divider {
    color: #dcc5c0;
    font-weight: 300;
}

/* Back link */
.back-link {
    color: #866962;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #4b4241;
}

/* Model detail pages */
.model-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.model-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.model-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card, .rates-card, .description-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.info-card h2, .rates-card h2, .description-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4b4241;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.info-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    color: #866962;
}

.rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rate-item {
    text-align: center;
}

.rate-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #4b4241;
    margin-bottom: 1rem;
    font-weight: 400;
}

.rate-item p {
    font-family: 'Poppins', sans-serif;
    margin: 0.5rem 0;
    color: #4b4241;
}

.deposit-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f0ed;
    border-left: 4px solid #866962;
    border-radius: 4px;
}

.deposit-note p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #4b4241;
    text-align: center;
}

.description-card p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4b4241;
}

.model-gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4b4241;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.gallery-grid .gallery-item {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    background: linear-gradient(135deg, #f8f0ed 0%, #ede4e0 100%); /* 添加固定高度消除空白 */
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.02);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

/* 视频样式 */
.gallery-grid .gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

.gallery-grid .gallery-item .video-overlay {
    position: relative;
    display: block;
    width: 100%;
}

/* 视频播放按钮覆盖层 */
.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); /* 减少暗度 */
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0; /* 默认隐藏 */
}

.video-overlay:hover::before {
    opacity: 1; /* 悬停时显示轻微暗化 */
}

.video-overlay::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0; /* 默认隐藏 */
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-overlay:hover::after {
    opacity: 0.9; /* 悬停时显示 */
    background: rgba(0,0,0,0.8);
}

/* 当视频播放时隐藏播放按钮 */
.video-overlay.playing::before,
.video-overlay.playing::after {
    opacity: 0 !important;
}

/* Loading message */
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #866962;
    font-style: italic;
    font-size: 1.1rem;
}

/* Error message */
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #dc3545;
    font-size: 1.1rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 2rem;
}

/* Responsive design for detail pages */
@media (max-width: 768px) {
    .model-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-item img,
    .gallery-grid .gallery-item video {
        height: 300px;
    }
}

/* Contact section */
.contact-section {
    background-color: #dcc5c0;
    text-align: center;
    padding: 3rem 2rem;
}

.contact-section h2 {
    font-size: 1.75rem;
    color: #4b4241;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-light {
    background-color: #f8f0ed;
    color: #4b4241;
    border: 2px solid #866962;
}

.btn-light:hover {
    background-color: #866962;
    color: #f8f0ed;
}

.btn-dark {
    background-color: #4b4241;
    color: #f8f0ed;
}

.btn-dark:hover {
    background-color: #866962;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #f8f0ed;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* 媒体查询优化 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.01em;
    }

    .hero-title::after {
        width: 40px;
        bottom: -6px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .profiles-section {
        padding: 2rem 1rem;
    }

    .profiles-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-card {
        max-width: 100%;
    }

    .profile-image {
        height: 350px;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }

    /* 视频控制优化移动端 */
    .video-overlay::after {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .hero-title::after {
        width: 30px;
        bottom: -4px;
    }

    .header {
        padding: 2rem 1rem;
    }

    .gallery-grid .gallery-item img,
    .gallery-grid .gallery-item video {
        height: 200px;
    }
}

/* 视频播放优化 */
video {
    outline: none;
}

video::-webkit-media-controls {
    display: flex !important;
}

video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #dcc5c0 0%, #c9aea7 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23fff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2826;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #4b4241;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-dark {
    background: linear-gradient(135deg, #4b4241 0%, #2c2826 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(75, 66, 65, 0.3);
    background: linear-gradient(135deg, #2c2826 0%, #1a1615 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20BA5A 0%, #1BA84E 100%);
}

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

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Responsive Grid for Model Cards */
@media (max-width: 1024px) {
    .profiles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .model-card:nth-child(2) {
        margin-top: 1rem;
    }

    .model-card:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .profiles-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .model-card:nth-child(2),
    .model-card:nth-child(3) {
        margin-top: 0;
    }

    .model-image-wrapper {
        height: 400px;
    }

    .profiles-section {
        padding: 3rem 1rem;
    }
}

/* ====== 模特详情页面样式 ====== */

/* 详情页面基础样式 */
.detail-page {
    background: #f8f0ed;
    overflow-x: hidden;
}

/* 导航栏样式 */
.detail-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(220, 197, 192, 0.3);
}

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

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4b4241;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(220, 197, 192, 0.2);
}

.back-btn:hover {
    background: rgba(220, 197, 192, 0.4);
    transform: translateX(-3px);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c2826;
    font-weight: 500;
}

/* Hero区域 */
.hero-detail {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 20%; /* 调整为显示上半部分，更好展示脸部 */
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(75, 66, 65, 0.8) 0%,
        rgba(134, 105, 98, 0.6) 50%,
        rgba(220, 197, 192, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.model-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 2rem auto;
}

.model-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 3rem;
}

/* 浮动信息气泡 */
.floating-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.info-bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
}

/* 主要内容区域 */
.detail-main {
    background: #f8f0ed;
    padding-top: 5rem;
}

/* 章节标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2826;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-decoration {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dcc5c0, #866962, #dcc5c0);
    margin: 0 auto;
    border-radius: 2px;
}

/* 信息卡片区域 */
.info-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(75, 66, 65, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 197, 192, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 66, 65, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dcc5c0, #866962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2826;
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-card p {
    font-family: 'Poppins', sans-serif;
    color: #866962;
    font-weight: 300;
    line-height: 1.6;
}

/* 关于我区域 */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: contain; /* 改为cover以填满容器，消除空白 */
    object-position: center center; /* 显示上半部分，确保脸部可见 */
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(75, 66, 65, 0.2);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #dcc5c0;
    border-radius: 25px;
    z-index: -1;
}

.about-content {
    padding-left: 2rem;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b4241;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* 价格卡片区域 */
.pricing-section {
    padding: 5rem 2rem;
    background: #f8f0ed;
}

.pricing-cards {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(75, 66, 65, 0.1);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dcc5c0, #866962);
}

.pricing-card.premium {
    border: 2px solid #dcc5c0;
}

.pricing-card.luxury {
    border: 2px solid #866962;
}

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

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

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2826;
    font-weight: 500;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dcc5c0, #866962);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0e7e3;
}

.price-item:last-child {
    border-bottom: none;
}

.service {
    font-family: 'Poppins', sans-serif;
    color: #4b4241;
    font-weight: 400;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #866962;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(220, 197, 192, 0.1);
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    font-family: 'Poppins', sans-serif;
    color: #866962;
    font-weight: 400;
    margin: 0;
}

/* 画廊区域 */
.gallery-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease; /* 统一transition时间 */
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    background: #f8f0ed;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 改为cover以填满容器，消除空白 */
    object-position: center center; /* 显示图片上半部分，确保脸部可见 */
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 66, 65, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.02); /* 减小缩放比例避免空白区域 */
}

/* 联系CTA区域 */
.contact-cta {
    background: linear-gradient(135deg, #2c2826 0%, #4b4241 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.cta-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover .btn-glow {
    left: 100%;
}

/* 装饰性浮动形状 */
.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 150px);
    }

    .gallery-item.large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 6;
        grid-row: span 1;
    }

    .gallery-item:not(.large):not(.wide) {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .model-name {
        font-size: 2.5rem;
    }

    .floating-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .info-bubble {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        width: 200px;
    }

    .info-number {
        margin-bottom: 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item:not(.large):not(.wide) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand {
        display: none;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery-item {
        width: 250px;
        height: 320px;
    }

    .gallery-item:first-child {
        width: 280px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }

    .model-name {
        font-size: 2.5rem;
    }

    .floating-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .info-bubble {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        width: 200px;
    }

    .info-number {
        margin-bottom: 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        width: 300px;
        height: 400px;
    }



    .nav-container {
        padding: 0 1rem;
    }

    .nav-brand {
        display: none;
    }

    /* 确保视频在移动设备上正确显示 */
    video {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
}
