/* ========================================
   金筑财富 - 内页通用样式
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE5E5 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-gray);
}

.breadcrumb a:hover {
    color: var(--accent-coral);
}

.breadcrumb .current {
    color: var(--accent-coral);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--bg-cream);
}

.content-section.gradient-bg {
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--bg-cream) 100%);
}

/* Section Title */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Case Cards */
.case-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

.case-info {
    padding: 25px;
}

.case-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--light-pink);
    color: var(--accent-coral);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.case-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: var(--text-light);
}

/* Team Section */
.team-card {
    text-align: center;
    background: var(--pure-white);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--light-pink);
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-position {
    font-size: 14px;
    color: var(--accent-coral);
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Process Steps */
.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.process-step.reverse {
    flex-direction: row-reverse;
}

.process-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--pure-white);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.4);
}

.process-content {
    flex: 1;
    background: var(--pure-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.process-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .process-step,
    .process-step.reverse {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--accent-coral), #ff5252);
    padding: 50px;
    border-radius: 25px;
    color: var(--pure-white);
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info-box p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Detail Page Styles */
.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-pink);
}

.detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    gap: 30px;
    color: var(--text-gray);
    font-size: 14px;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-gray);
}

.detail-content img {
    max-width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.detail-content h2,
.detail-content h3 {
    color: var(--text-dark);
    margin: 35px 0 20px;
}

.detail-content p {
    margin-bottom: 20px;
}

.detail-content ul,
.detail-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.detail-content li {
    margin-bottom: 12px;
}

/* Related Content */
.related-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--light-pink);
}

.related-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* News List Page */
.news-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.news-list-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.news-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-list-excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-list-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .news-list-item {
        grid-template-columns: 1fr;
    }

    .news-list-image {
        height: 180px;
    }
}

/* CTA Section - 通用行动号召区块 */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-coral), #ff5252);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--pure-white);
    color: var(--accent-coral);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
}

.btn-outline-white:hover {
    background: var(--pure-white);
    color: var(--accent-coral);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
