* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: #1e293b;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0f2b3d 0%, #1a4a6f 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1e4a76 0%, #2c6e9e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

/* Search Box with Suggestions */
.search-box-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 14px 0;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-box button {
    background: #0f2b3d;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-box button:hover {
    background: #1a4a6f;
}

/* Suggestions Dropdown */
.suggestions-dropdown {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover, .suggestion-item.selected {
    background: #f0f7ff;
}

.suggestion-item i {
    color: #1e4a76;
    margin-right: 12px;
}

.suggestion-location {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 20px;
}

.suggestion-item mark {
    background: #fde047;
    padding: 0;
    border-radius: 2px;
}

/* Stats */
.stats {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    text-align: center;
}

.stat-card {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e4a76;
}

.stat-label {
    color: #475569;
    font-weight: 500;
}

/* Section */
.section {
    padding: 48px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #0f2b3d;
}

/* City Cards */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.city-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.city-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.city-count {
    color: #64748b;
    font-size: 0.9rem;
}

/* Facility List */
.facility-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.facility-item {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s;
}

.facility-item:hover {
    background: #f8fafc;
}

.facility-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e4a76;
    margin-bottom: 8px;
}

.facility-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 8px;
}

.facility-details i {
    width: 20px;
    margin-right: 6px;
    color: #2c6e9e;
}

.facility-type {
    display: inline-block;
    background: #e6f0fa;
    color: #1e4a76;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.facility-actions {
    margin-top: 12px;
    display: flex;
    gap: 16px;
}

.facility-actions a {
    color: #2c6e9e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.facility-actions a:hover {
    text-decoration: underline;
}

/* Filters */
.filters {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select, .filter-group input {
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    background: white;
}

.results-count {
    margin-left: auto;
    font-weight: 500;
    color: #475569;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.pagination button.active {
    background: #1e4a76;
    color: white;
    border-color: #1e4a76;
}

/* Footer */
.footer {
    background: #0f2b3d;
    color: #94a3b8;
    padding: 40px 0;
    margin-top: 48px;
    text-align: center;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.contact-email {
    margin-top: 8px;
    font-size: 0.85rem;
}

.contact-email i {
    margin-right: 6px;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #1e4a76;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.back-link i {
    margin-right: 6px;
}

.no-results {
    text-align: center;
    padding: 48px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
    }
    .search-box button {
        width: 100%;
    }
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    .results-count {
        margin-left: 0;
    }
    .facility-details {
        flex-direction: column;
        gap: 6px;
    }
}