/* ============================================================
   华宝堂网站增强样式 - 提升转化率和信任度
   ============================================================ */

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #1a3c34 0%, #2d5a4e 100%);
    padding: 25px 0;
    border-bottom: 3px solid #c9a86c;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.trust-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.trust-text span {
    font-size: 12px;
    opacity: 0.85;
}

/* Sample Banner */
.sample-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 30px 0;
    border-top: 2px dashed #c9a86c;
    border-bottom: 2px dashed #c9a86c;
}

.sample-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sample-badge {
    display: inline-block;
    background: #e65100;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sample-text h3 {
    font-size: 22px;
    color: #1a3c34;
    margin-bottom: 8px;
}

.sample-text p {
    color: #666;
    font-size: 15px;
}

.sample-btn {
    display: inline-block;
    background: #c9a86c;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
}

.sample-btn:hover {
    background: #b8965a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 108, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 32px;
    color: #1a3c34;
    margin-bottom: 50px;
    position: relative;
}

.why-choose-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c9a86c;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(201, 168, 108, 0.15);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-color: rgba(201, 168, 108, 0.3);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    color: #1a3c34;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Client Logos */
.client-logos {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.logos-title {
    font-size: 24px;
    color: #1a3c34;
    margin-bottom: 30px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 14px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s;
}

.logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logos-note {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

/* Enhanced Product Cards */
.product-item {
    transition: all 0.3s;
}

.product-item:hover {
    transform: translateY(-8px);
}

.product-details h2,
.product-details h3 {
    font-size: 18px;
    color: #1a3c34;
    margin-bottom: 8px;
}

.product-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 168, 108, 0.15);
    color: #1a3c34;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(201, 168, 108, 0.3);
}

.tag.highlight {
    background: #c9a86c;
    color: white;
    border-color: #c9a86c;
}

/* CTA Buttons */
.inquiry-btn {
    background: #c9a86c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.inquiry-btn:hover {
    background: #b8965a;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
    .sample-content {
        flex-direction: column;
        text-align: center;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

