/* DaiHuai.html - 苏州代怀 跨境物流服务 */

/* Hero Banner */
.logistics-hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.logistics-hero h2 { font-size: 36px; margin-bottom: 15px; }
.logistics-hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Process Steps */
.process-section { padding: 60px 0; }
.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    position: relative;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #e94560;
}
.process-step:last-child::after { display: none; }
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e94560;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.process-step h4 { font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: #666; }

/* Product Grid (Logistics Services) */
.logistics-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.logistics-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.logistics-card:hover { transform: translateY(-5px); }
.logistics-card .card-img {
    height: 180px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}
.logistics-card .card-body { padding: 20px; }
.logistics-card .card-body h4 { font-size: 18px; color: #1a1a2e; margin-bottom: 10px; }
.logistics-card .card-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 10px; }
.logistics-card .card-body .tag {
    display: inline-block;
    padding: 3px 10px;
    background: #e94560;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
}

/* Coverage Map */
.coverage-section {
    background: #f8f9fa;
    padding: 60px 0;
}
.coverage-grid { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.coverage-item {
    flex: 0 0 calc(20% - 12px);
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.coverage-item .flag { font-size: 36px; margin-bottom: 8px; }
.coverage-item .name { font-size: 14px; color: #1a1a2e; font-weight: 600; }

/* Pricing Table */
.pricing-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.pricing-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
}
.pricing-card.featured {
    border: 2px solid #e94560;
    transform: scale(1.05);
}
.pricing-card .pricing-header {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    padding: 25px;
}
.pricing-card.featured .pricing-header { background: linear-gradient(135deg, #e94560, #f5a623); }
.pricing-card .pricing-header h4 { font-size: 20px; margin-bottom: 5px; }
.pricing-card .pricing-header .price { font-size: 36px; font-weight: 700; }
.pricing-card .pricing-header .price span { font-size: 16px; }
.pricing-card .pricing-body { padding: 25px; }
.pricing-card .pricing-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}
.pricing-card .pricing-body .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background: #e94560;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}
.pricing-card .pricing-body .btn:hover { background: #1a1a2e; }

@media (max-width: 991px) {
    .process-steps { flex-direction: column; align-items: center; }
    .process-step::after { display: none; }
    .logistics-card { flex: 0 0 calc(50% - 10px); }
    .coverage-item { flex: 0 0 calc(33.333% - 10px); }
}
@media (max-width: 767px) {
    .logistics-card { flex: 0 0 100%; }
    .coverage-item { flex: 0 0 calc(50% - 8px); }
    .pricing-card.featured { transform: none; }
}
