/* ===== 温州助孕 - 金色现代风格 ===== */
/* 配色：金色(#D4A017) + 深棕(#3E2723) */

/* Banner with gold accent */
.page-banner-gold {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #6D4C41 100%);
    color: #FFF;
    padding: 60px 0;
    text-align: center;
    position: relative;
}
.page-banner-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4A017, #FFD700, #D4A017);
}
.page-banner-gold h1 {
    color: #FFD700;
    font-size: 34px;
    margin-bottom: 15px;
}
.page-banner-gold p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Consulting Process */
.consult-process {
    padding: 60px 0;
}
.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}
.process-step {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 150px;
    position: relative;
}
.process-step::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 40px;
    font-size: 24px;
    color: #D4A017;
}
.process-step:last-child::after {
    display: none;
}
.process-step .step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4A017, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    font-weight: 700;
    color: #3E2723;
}
.process-step h4 {
    font-size: 15px;
    color: #3E2723;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: #8D99AE;
}

/* Service Cards Gold */
.consult-cards {
    padding: 60px 0;
    background: #FDF8EC;
}
.consult-card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #D4A017;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.consult-card:hover {
    box-shadow: 0 8px 25px rgba(212,160,23,0.15);
    transform: translateY(-3px);
}
.consult-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.consult-card .card-header i {
    font-size: 28px;
    color: #D4A017;
    margin-right: 15px;
}
.consult-card .card-header h4 {
    font-size: 18px;
    color: #3E2723;
    margin: 0;
}
.consult-card .card-body {
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
}
.consult-card .card-body ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}
.consult-card .card-body ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}
.consult-card .card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4A017;
    font-weight: 700;
}

/* Case Studies */
.case-section {
    padding: 60px 0;
}
.case-section h2 {
    text-align: center;
    font-size: 26px;
    color: #3E2723;
    margin-bottom: 40px;
}
.case-card {
    background: #FFF;
    border: 1px solid #E4E7ED;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.case-card:hover {
    border-color: #D4A017;
    box-shadow: 0 5px 15px rgba(212,160,23,0.1);
}
.case-card .case-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #FDF8EC;
    border-radius: 12px;
    font-size: 12px;
    color: #D4A017;
    font-weight: 600;
    margin-bottom: 10px;
}
.case-card h4 {
    font-size: 16px;
    color: #3E2723;
    margin-bottom: 8px;
}
.case-card p {
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    padding: 60px 0;
    text-align: center;
    color: #FFF;
}
.cta-section h2 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 15px;
}
.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 25px;
}
.cta-section .cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #D4A017, #FFD700);
    color: #3E2723;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}
.cta-section .cta-btn:hover {
    transform: scale(1.05);
    color: #3E2723;
}

/* Override header colors */
#header { background-color: #3E2723 !important; }
#navigation { background-color: #2E1D16 !important; }
.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: #D4A017 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .process-step::after { display: none; }
}
