/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f5a623;
    --secondary-color: #ffd89b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --bg-light: #faf8f5;
    --bg-cream: #f9f5f0;
    --gold: #d4af37;
    --blue: #6c8bf6;
    --green: #4caf50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo i {
    font-size: 1.8rem;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin {
    background: linear-gradient(135deg, #f5a623 0%, #f7b733 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/index/组 14.png') center center/cover;
    z-index: 0;
}

/* 已移除背景蒙版效果，使背景图更清晰 */

.hero-lotus-left {
    display: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 100px;
}

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    padding-left: 2rem;
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title .highlight {
    color: var(--primary-color);
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f5a623 0%, #f7b733 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    filter: none;
    object-fit: contain;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 150px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section Headers - Left Aligned */
.services-section .section-header {
    text-align: left;
}

.services-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.services-section .section-header p {
    margin: 0;
    max-width: 100%;
    font-size: 1rem;
    color: #999;
}

/* Testimonials Section Headers - Left Aligned */
.testimonials-section .section-header {
    text-align: left;
}

.testimonials-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.testimonials-section .section-header p {
    margin: 0;
    max-width: 100%;
    font-size: 1rem;
    color: #999;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #faf8f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    text-align: center;
    padding: 3rem 2rem 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-icon-3d {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-card p {
    color: #999;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left;
}

.service-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-arrow:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f7b733 100%);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #faf8f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.price-icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.price-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 移除背景色，直接显示图标 */

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: #999;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
    flex-grow: 1;
}

.features-list li {
    padding: 0.2rem 0;
}

.purchase-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.purchase-link:hover {
    color: #e69410;
}

.pricing-footer {
    text-align: center;
    padding-top: 2rem;
}

.pricing-footer p {
    color: var(--primary-color);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/index/组 20.png') center/cover;
    z-index: 0;
}

/* 已移除CTA区域蒙版，使背景更清晰 */

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-direction: row;
}

.cta-image-circle {
    flex: 0 0 450px;
    position: relative;
}

.cta-image-circle img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 10px solid rgba(255,255,255,0.3);
    opacity: 0;
    visibility: hidden;
}

.cta-text {
    flex: 1;
    color: var(--white);
}

.cta-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-text h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-text > p {
    color: var(--white);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.faq-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.faq-box:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: white;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.feature-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-cream);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/index/jimeng-2025-10-31-5637-风景，旷野，浅棕色系，治愈，大气，阳光.png') center/cover;
    opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.author h5 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.post-date {
    color: #999;
    font-size: 0.85rem;
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-content p {
    color: #999;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #b08d64 0%, #c4a57b 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-about {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-about > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-contact i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    background: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    width: fit-content;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 600px;
}

.refer-btn {
    background: linear-gradient(135deg, #f5a623 0%, #f7b733 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.refer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.refer-btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-signin {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-lotus-left {
        display: none;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .cta-image-circle {
        flex: 1;
        max-width: 100%;
    }
    
    .cta-image-circle img {
        width: 300px;
        height: 300px;
    }
    
    .cta-text h2,
    .cta-text h3 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-icon-3d {
        width: 140px;
        height: 140px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .price .amount {
        font-size: 3rem;
    }
    
    .features-grid,
    .testimonials-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-disclaimer {
        max-width: 100%;
    }
    
    .refer-btn {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.pricing-card,
.feature-card,
.testimonial-card,
.news-card {
    animation: fadeInUp 0.6s ease-out;
}

