/* ===== 独立 CSS（各板块专属） ===== */

/* ----- 轮播图 ----- */
.carousel {
    margin-top: 0;
    position: relative;
    height: 600px;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    background: #efe1d1;
}

.carousel-inner {
    position: relative;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 10;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) sepia(0.15) saturate(1.1);
}

.slide-caption {
    position: absolute;
    top: 45%;
    left: 10%;
    transform: translateY(-45%);
    max-width: 650px;
    color: #fff3e2;
    text-shadow: 0 4px 25px rgba(100, 60, 20, 0.4);
    z-index: 20;
}

.slide-caption .tag {
    display: inline-block;
    background: rgba(215, 170, 110, 0.3);
    backdrop-filter: blur(4px);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 225, 190, 0.5);
    animation: slideInDown 0.8s 0.1s both;
}

.slide-caption h2 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: slideInUp 0.9s 0.2s both;
}

.slide-caption p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: slideInUp 0.9s 0.3s both;
}

@keyframes slideInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 30;
}

.indicator {
    width: 55px;
    height: 5px;
    background: rgba(245, 225, 200, 0.5);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    background: #dbb88c;
    width: 90px;
    box-shadow: 0 0 10px #e8cbaa;
}

/* ----- 投资策略卡片 ----- */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.strategy-card {
    background: #ffffffd9;
    backdrop-filter: blur(4px);
    padding: 2rem 1.2rem;
    border-radius: 32px;
    box-shadow: 0 15px 35px -12px rgba(150, 110, 70, 0.12);
    transition: all 0.25s ease;
    border: 1px solid #f0e1d2;
    text-align: center;
}

.strategy-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 40px -15px #c8aa8a;
    border-color: #dbb88c;
    background: white;
}

.strategy-card i {
    font-size: 2.7rem;
    background: linear-gradient(145deg, #caa77b, #b38954);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.2rem;
}

.strategy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5a4634;
    margin-bottom: 0.5rem;
}

.strategy-card p {
    color: #7f6e5d;
    font-size: 0.9rem;
}

/* ----- 投资服务 ----- */
.service-block {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fffaf4;
    padding: 3rem;
    border-radius: 60px;
    box-shadow: inset 0 0 0 1px #eedbcb, 0 15px 30px -10px #dccbb8;
}

.service-item {
    flex: 1 1 200px;
    transition: 0.2s;
}

.service-item i {
    font-size: 2.4rem;
    color: #b58d63;
    margin-bottom: 1rem;
}

/* ----- 关于我们（含国际服务标签）----- */
.about-wrap {
    background: #f6ede4;
    border-radius: 48px;
    padding: 3rem;
}

.service-regions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.region-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fffbf5;
    padding: 0.5rem 1.8rem;
    border-radius: 60px;
    border: 1px solid #edd7c4;
    color: #7b614b;
    font-weight: 500;
}

.region-tag i {
    color: #b58d63;
    font-size: 1.1rem;
}

/* ----- 我们的优势 ----- */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-item {
    background: #fffcf7;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #ecdacb;
    transition: all 0.2s;
    display: flex;
    gap: 1.2rem;
}

.advantage-item i {
    font-size: 2.2rem;
    color: #b58d63;
}

.advantage-item:hover {
    background: #ffffff;
    border-color: #dbb88c;
}

/* ----- 服务流程 ----- */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: rgba(245, 235, 225, 0.6);
    padding: 2.5rem 2rem;
    border-radius: 90px;
}

.step {
    flex: 1 1 140px;
    text-align: center;
}

.step-circle {
    width: 90px;
    height: 90px;
    background: #fff1e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid #ebd5c0;
    animation: softGlow 2.2s infinite alternate;
    transition: 0.3s;
}

@keyframes softGlow {
    0% { box-shadow: 0 0 0 0 #e7cbb0; border-color: #dbbd9f; }
    100% { box-shadow: 0 0 0 16px rgba(219, 184, 140, 0.15); border-color: #c9a472; background: #fffaf2; }
}

.step:nth-child(2) .step-circle { animation-delay: 0.3s; }
.step:nth-child(3) .step-circle { animation-delay: 0.6s; }
.step:nth-child(4) .step-circle { animation-delay: 0.9s; }

.step-circle i {
    font-size: 2.2rem;
    color: #a97d55;
}

.step h4 {
    font-weight: 600;
    color: #5b4534;
}

/* ----- 行业动态 ----- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 25px -8px rgba(140, 100, 70, 0.1);
    transition: 0.2s;
}

.news-card:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 35px -12px #bb9f84;
}

.news-card img {
    height: 200px;
}

.news-content {
    padding: 1.5rem;
}

.news-content h4 a {
    text-decoration: none;
    color: #4f3f30;
    font-weight: 600;
}

.news-content h4 a:hover {
    color: #b78f64;
}

/* ----- 独立部分响应式 ----- */
@media (max-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}