﻿/* Network Page Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 16px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #6c757d;
}

.breadcrumb-item a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #003d82;
}

.breadcrumb-item.active {
    color: #212529;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: #6c757d;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-top: 32px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
}

/* Stations Section */
.stations-section {
    padding: 60px 0;
}

.overseas-section {
    background: #f8f9fa;
}

/* Stations Table */
.stations-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 32px;
}

.stations-table {
    width: 100%;
    border-collapse: collapse;
}

.stations-table thead {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
}

.stations-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.stations-table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
}

.stations-table tbody tr:hover {
    background-color: #f8f9fa;
}

.stations-table tbody tr:last-child {
    border-bottom: none;
}

.stations-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
}

.stations-table tbody td:first-child {
    font-weight: 500;
    color: #212529;
}

/* Featured Station Row */
.stations-table tbody tr.featured-station {
    background-color: #f0f7ff;
}

.stations-table tbody tr.featured-station:hover {
    background-color: #e3f2fd;
}

.stations-table tbody tr.featured-station td:first-child {
    color: #0056b3;
}

/* Overseas Table */
.overseas-table thead {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.stations-table tbody tr.overseas {
    background-color: #fff5f5;
}

.stations-table tbody tr.overseas:hover {
    background-color: #ffe3e3;
}

.stations-table tbody tr.preparing {
    background-color: #fffbf0;
    opacity: 0.9;
}

.stations-table tbody tr.preparing:hover {
    background-color: #fff3cd;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    background: #e3f2fd;
    color: #0056b3;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.tag.overseas {
    background: #ffebee;
    color: #c62828;
}

.tag.preparing {
    background: #fff3cd;
    color: #856404;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-featured {
    background: #0056b3;
    color: white;
}

.badge-normal {
    background: #6c757d;
    color: white;
}

.badge-overseas {
    background: #ff6b6b;
    color: white;
}

.badge-preparing {
    background: #ffc107;
    color: #856404;
}

/* Responsive Table */
@media (max-width: 1024px) {
    .stations-table {
        font-size: 14px;
    }
    
    .stations-table thead th,
    .stations-table tbody td {
        padding: 12px 16px;
    }
    
    .tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

@media (max-width: 768px) {
    .stations-table-container {
        overflow-x: auto;
    }
    
    .stations-table {
        min-width: 600px;
        font-size: 13px;
    }
    
    .stations-table thead th,
    .stations-table tbody td {
        padding: 10px 12px;
    }
    
    .service-tags {
        gap: 4px;
    }
    
    .tag {
        font-size: 10px;
        padding: 2px 8px;
    }
}

/* Service Summary Section */
.service-summary-section {
    padding: 60px 0;
    background: white;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.summary-card {
    text-align: center;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.summary-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.summary-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
}

.summary-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #0056b3;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .station-name {
        font-size: 22px;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .station-stats {
        flex-direction: column;
        gap: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
