/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* 导航栏样式 */
.header-navigation-section-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-brand-identity-area {
    flex-shrink: 0;
}

.site-title-heading-primary a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.site-title-heading-primary a:hover {
    color: #e74c3c;
}

.menu-navigation-list-horizontal {
    display: flex;
    gap: 2rem;
}

.menu-navigation-list-horizontal a {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.menu-navigation-list-horizontal a:hover,
.menu-navigation-list-horizontal a.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
}

/* 英雄区域 */
.hero-banner-main-showcase-area {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-overlay-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-content-container {
    padding: 2rem 0;
}

.hero-main-headline-text {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subheading-description-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-cta-button-group-area {
    display: flex;
    gap: 1rem;
}

.primary-button-cta-main,
.primary-button-cta-large {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.primary-button-cta-main:hover,
.primary-button-cta-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.secondary-button-cta-outline,
.secondary-button-cta-large-outline {
    background: transparent;
    color: #e74c3c;
    padding: 1rem 2rem;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.secondary-button-cta-outline:hover,
.secondary-button-cta-large-outline:hover {
    background: #e74c3c;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-showcase-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* 通用区域样式 */
.section-container-content-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title-heading-center {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle-description-text {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* 特色功能区 */
.features-highlight-section-wrapper {
    background: #f8f9fa;
}

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

.feature-card-item-box-1,
.feature-card-item-box-2,
.feature-card-item-box-3,
.feature-card-item-box-4 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-item-box-1:hover,
.feature-card-item-box-2:hover,
.feature-card-item-box-3:hover,
.feature-card-item-box-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon-wrapper-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title-heading-small {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-description-text-content {
    color: #666;
    line-height: 1.8;
}

/* 服务预览区 */
.services-preview-section-background {
    background: #fff;
}

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

.service-card-content-block-1,
.service-card-content-block-2,
.service-card-content-block-3 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.service-card-content-block-1:hover,
.service-card-content-block-2:hover,
.service-card-content-block-3:hover {
    transform: translateY(-8px);
}

.service-card-image-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card-text-overlay {
    padding: 1.5rem;
    background: #fff;
}

.service-card-title-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-card-description-brief {
    color: #666;
    margin-bottom: 1rem;
}

.service-link-more-details {
    color: #e74c3c;
    font-weight: 600;
}

.service-link-more-details:hover {
    text-decoration: underline;
}

/* 作品展示画廊 */
.portfolio-gallery-section-showcase {
    background: #f8f9fa;
}

.portfolio-grid-masonry-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item-card-wrapper-1,
.portfolio-item-card-wrapper-2,
.portfolio-item-card-wrapper-3,
.portfolio-item-card-wrapper-4,
.portfolio-item-card-wrapper-5,
.portfolio-item-card-wrapper-6 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

.portfolio-item-card-wrapper-1:hover .portfolio-image-display,
.portfolio-item-card-wrapper-2:hover .portfolio-image-display,
.portfolio-item-card-wrapper-3:hover .portfolio-image-display,
.portfolio-item-card-wrapper-4:hover .portfolio-image-display,
.portfolio-item-card-wrapper-5:hover .portfolio-image-display,
.portfolio-item-card-wrapper-6:hover .portfolio-image-display {
    transform: scale(1.1);
}

.portfolio-overlay-info-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item-card-wrapper-1:hover .portfolio-overlay-info-hover,
.portfolio-item-card-wrapper-2:hover .portfolio-overlay-info-hover,
.portfolio-item-card-wrapper-3:hover .portfolio-overlay-info-hover,
.portfolio-item-card-wrapper-4:hover .portfolio-overlay-info-hover,
.portfolio-item-card-wrapper-5:hover .portfolio-overlay-info-hover,
.portfolio-item-card-wrapper-6:hover .portfolio-overlay-info-hover {
    opacity: 1;
}

.portfolio-item-title-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-item-category-tag {
    color: #e74c3c;
    font-weight: 500;
}

.portfolio-cta-button-center {
    text-align: center;
    margin-top: 3rem;
}

/* 客户评价 */
.testimonials-reviews-section-area {
    background: #fff;
}

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

.testimonial-card-box-item-1,
.testimonial-card-box-item-2,
.testimonial-card-box-item-3 {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.testimonial-avatar-image-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote-text-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author-name-text {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author-title-info {
    color: #999;
    font-size: 0.9rem;
}

/* CTA区域 */
.cta-call-to-action-banner-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content-overlay-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subheading-description-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-button-group-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-call-to-action-banner-section .primary-button-cta-large {
    background: #fff;
    color: #e74c3c;
}

.cta-call-to-action-banner-section .primary-button-cta-large:hover {
    background: #f8f9fa;
    color: #c0392b;
}

.cta-call-to-action-banner-section .secondary-button-cta-large-outline {
    border-color: #fff;
    color: #fff;
}

.cta-call-to-action-banner-section .secondary-button-cta-large-outline:hover {
    background: #fff;
    color: #e74c3c;
}

/* 页脚 */
.footer-section-bottom-area {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-heading-title-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description-text-content {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-links-list-vertical li {
    margin-bottom: 0.5rem;
}

.footer-links-list-vertical a {
    color: rgba(255,255,255,0.8);
}

.footer-links-list-vertical a:hover {
    color: #e74c3c;
}

.footer-contact-list-items li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom-copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright-text-content {
    color: rgba(255,255,255,0.6);
}

/* 页面标题区 */
.page-hero-banner-title-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero-main-title-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero-subtitle-description-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* 服务详情页 */
.service-detail-section-wrapper-odd,
.service-detail-section-wrapper-even {
    padding: 4rem 2rem;
}

.service-detail-section-wrapper-odd {
    background: #fff;
}

.service-detail-section-wrapper-even {
    background: #f8f9fa;
}

.service-detail-container-layout,
.service-detail-container-layout-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-container-layout-reverse {
    direction: rtl;
}

.service-detail-container-layout-reverse > * {
    direction: ltr;
}

.service-detail-image-area img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-detail-title-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-detail-intro-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.service-features-items-list li,
.service-process-steps-list li,
.service-highlights-points-list li,
.service-advantages-items-list li,
.service-delivery-items-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features-items-list li::before,
.service-highlights-points-list li::before,
.service-advantages-items-list li::before,
.service-delivery-items-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.service-process-steps-list {
    counter-reset: step-counter;
}

.service-process-steps-list li {
    counter-increment: step-counter;
}

.service-process-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.service-detail-cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2rem;
}

.service-detail-cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* 其他特色服务 */
.additional-services-section-area {
    background: #f8f9fa;
}

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

.additional-service-card-item-1,
.additional-service-card-item-2,
.additional-service-card-item-3,
.additional-service-card-item-4 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.additional-service-card-item-1:hover,
.additional-service-card-item-2:hover,
.additional-service-card-item-3:hover,
.additional-service-card-item-4:hover {
    transform: translateY(-5px);
}

.additional-service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.additional-service-card-title {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.additional-service-card-description {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* 作品集页面 */
.portfolio-filter-navigation-section {
    background: #fff;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.portfolio-filter-container-center {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-filter-tabs-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-filter-tab-item {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #555;
    font-weight: 500;
}

.portfolio-filter-tab-item:hover,
.portfolio-filter-tab-item.active {
    background: #e74c3c;
    color: #fff;
}

.portfolio-gallery-main-section {
    padding: 4rem 2rem;
    background: #fff;
}

.portfolio-gallery-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-masonry-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-grid-item-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-item-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.portfolio-item-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-grid-item-box:hover .portfolio-item-image-display {
    transform: scale(1.1);
}

.portfolio-item-info-content {
    text-align: center;
}

.testimonials-slider-container-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide-item-active {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.testimonial-quote-text-large {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author-info-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name-bold {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author-service-info {
    color: #999;
    font-size: 0.9rem;
}

/* 关于我们页面 */
.studio-intro-section-wrapper {
    padding: 4rem 2rem;
    background: #fff;
}

.studio-intro-container-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.studio-intro-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.studio-intro-title-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.values-mission-section-background {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.value-card-item-box-1,
.value-card-item-box-2,
.value-card-item-box-3,
.value-card-item-box-4 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-icon-circle-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.value-icon-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card-title-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.value-card-description-text {
    color: #666;
    line-height: 1.6;
}

.team-members-section-wrapper {
    padding: 4rem 2rem;
    background: #fff;
}

.team-grid-layout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member-card-item-1,
.team-member-card-item-2,
.team-member-card-item-3,
.team-member-card-item-4 {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.team-member-photo-wrapper {
    height: 300px;
    overflow: hidden;
}

.team-member-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info-content {
    padding: 1.5rem;
}

.team-member-name-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.team-member-position-title {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-bio-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-member-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-member-skills-list li {
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #555;
}

.studio-facilities-section-area {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.facility-image-card-wrapper-1,
.facility-image-card-wrapper-2,
.facility-image-card-wrapper-3,
.facility-image-card-wrapper-4 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.facility-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: #fff;
}

.facility-title-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.facility-description-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.awards-achievements-section-wrapper {
    padding: 4rem 2rem;
    background: #fff;
}

.awards-timeline-layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.award-item-block-1,
.award-item-block-2,
.award-item-block-3,
.award-item-block-4 {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.award-year-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.award-title-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.award-description-text {
    color: #666;
}

.statistics-numbers-section-background {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 2rem;
}

.statistics-grid-layout-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.statistic-card-item-1,
.statistic-card-item-2,
.statistic-card-item-3,
.statistic-card-item-4 {
    padding: 2rem;
}

.statistic-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.statistic-label-text {
    color: #fff;
    font-size: 1.1rem;
}

/* 价格页面 */
.pricing-category-section-wrapper,
.pricing-category-section-wrapper-alt {
    padding: 4rem 2rem;
}

.pricing-category-section-wrapper {
    background: #fff;
}

.pricing-category-section-wrapper-alt {
    background: #f8f9fa;
}

.pricing-category-title-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-category-subtitle-text {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

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

.pricing-card-box-item-basic,
.pricing-card-box-item-standard,
.pricing-card-box-item-premium {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card-box-item-basic:hover,
.pricing-card-box-item-standard:hover,
.pricing-card-box-item-premium:hover {
    transform: translateY(-8px);
}

.pricing-card-box-item-standard {
    border: 2px solid #e74c3c;
}

.pricing-badge-popular-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-package-name-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-amount-display-area {
    margin-bottom: 0.5rem;
}

.pricing-currency-symbol {
    font-size: 1.5rem;
    color: #e74c3c;
    vertical-align: top;
}

.pricing-price-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
}

.pricing-price-custom-text {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.pricing-duration-info-text {
    color: #999;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features-list-items li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-cta-button-outline,
.pricing-cta-button-primary {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2rem;
}

.pricing-cta-button-outline {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.pricing-cta-button-outline:hover {
    background: #e74c3c;
    color: #fff;
}

.pricing-cta-button-primary {
    background: #e74c3c;
    color: #fff;
}

.pricing-cta-button-primary:hover {
    background: #c0392b;
}

.additional-services-pricing-section {
    padding: 4rem 2rem;
    background: #fff;
}

.additional-services-grid-two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-service-pricing-item-1,
.additional-service-pricing-item-2,
.additional-service-pricing-item-3,
.additional-service-pricing-item-4 {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.additional-service-title-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.additional-service-description-text {
    color: #666;
    margin-bottom: 0.5rem;
}

.additional-service-price-text {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.promotions-offers-section-area {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.promotion-card-item-box-1,
.promotion-card-item-box-2,
.promotion-card-item-box-3 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e74c3c;
    position: relative;
}

.promotion-badge-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.promotion-title-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.promotion-description-text {
    color: #666;
    margin-bottom: 1rem;
}

.promotion-validity-info {
    color: #999;
    font-size: 0.9rem;
}

.faq-questions-section-wrapper {
    padding: 4rem 2rem;
    background: #fff;
}

.faq-items-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-box-accordion-1,
.faq-item-box-accordion-2,
.faq-item-box-accordion-3,
.faq-item-box-accordion-4,
.faq-item-box-accordion-5 {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-question-heading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-answer-content-text {
    color: #666;
    line-height: 1.8;
}

/* 联系页面 */
.contact-main-content-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-container-two-column-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-title-heading,
.contact-form-title-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-intro-text,
.contact-form-intro-text {
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-items-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item-block-1,
.contact-info-item-block-2,
.contact-info-item-block-3,
.contact-info-item-block-4 {
    display: flex;
    gap: 1rem;
}

.contact-icon-wrapper-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-label-text {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-info-value-text {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-detail-text {
    color: #999;
    font-size: 0.9rem;
}

.contact-social-media-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-social-title-text {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-social-description-text {
    color: #666;
    margin-bottom: 1rem;
}

.contact-social-icons-wrapper {
    display: flex;
    gap: 1rem;
}

.social-icon-item-wechat,
.social-icon-item-weibo,
.social-icon-item-douyin,
.social-icon-item-xiaohongshu {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.contact-form-container-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-label-text {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-input-field-text,
.form-select-field-dropdown,
.form-textarea-field-multiline {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input-field-text:focus,
.form-select-field-dropdown:focus,
.form-textarea-field-multiline:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-textarea-field-multiline {
    resize: vertical;
}

.form-submit-button-primary {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-button-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-notice-text-small {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.contact-map-location-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-map-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-title-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-map-image-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.contact-map-display-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 400px;
}

.contact-map-location-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-map-address-text,
.contact-map-transport-info {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-studio-gallery-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-studio-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.studio-gallery-item-1,
.studio-gallery-item-2,
.studio-gallery-item-3,
.studio-gallery-item-4 {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

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

.studio-gallery-item-1:hover .studio-gallery-image,
.studio-gallery-item-2:hover .studio-gallery-image,
.studio-gallery-item-3:hover .studio-gallery-image,
.studio-gallery-item-4:hover .studio-gallery-image {
    transform: scale(1.1);
}

.contact-booking-process-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.booking-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-card-item-1,
.process-step-card-item-2,
.process-step-card-item-3,
.process-step-card-item-4,
.process-step-card-item-5 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.process-step-number-circle {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step-title-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.process-step-description-text {
    color: #666;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content-overlay-wrapper,
    .service-detail-container-layout,
    .service-detail-container-layout-reverse,
    .studio-intro-container-layout,
    .contact-container-two-column-layout {
        grid-template-columns: 1fr;
    }

    .menu-navigation-list-horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-main-headline-text,
    .page-hero-main-title-heading {
        font-size: 2rem;
    }

    .section-title-heading-center {
        font-size: 1.8rem;
    }

    .hero-cta-button-group-area,
    .cta-button-group-center {
        flex-direction: column;
    }

    .portfolio-masonry-grid-layout,
    .services-grid-layout-display {
        grid-template-columns: 1fr;
    }
}