/**
 * City Pages Styling
 * Complete styles for city pages with proper sections
 */

/* Section Backgrounds */
.section-white {
    background: #ffffff;
    color: #333;
    padding: 80px 20px;
}

.section-grey {
    background: #f5f5f5;
    color: #333;
    padding: 80px 20px;
}

.section-black {
    background: #000000;
    color: #ffffff;
    padding: 80px 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: inherit;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-black .section-header p {
    color: #ccc;
}

/* Content Typography */
.city-page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #dcc87f;
}

.city-page-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #dcc87f;
}

.city-page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: inherit;
}

.city-page-content ul,
.city-page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.city-page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Credibility Section */
.credibility-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.credibility-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.credibility-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.credibility-item h3 {
    font-size: 1.3rem;
    margin: 15px 0 10px;
    color: #dcc87f;
}

.credibility-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(220, 200, 127, 0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dcc87f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.section-black .stat-label {
    color: #ccc;
}

/* Enquiry Form Section */
.enquiry-form-section {
    background: #000;
    padding: 80px 20px;
}

.enquiry-form-section h2 {
    text-align: center;
    color: #dcc87f;
    margin-bottom: 40px;
}

/* Routes Table */
.routes-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.routes-table th,
.routes-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.routes-table th {
    background: #dcc87f;
    color: #000;
    font-weight: 600;
}

.routes-table tr:hover {
    background: #f9f9f9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-white,
    .section-grey,
    .section-black {
        padding: 50px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .city-page-content h2 {
        font-size: 1.7rem;
    }
    
    .city-page-content h3 {
        font-size: 1.3rem;
    }
    
    .credibility-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .routes-table {
        font-size: 0.9rem;
    }
    
    .routes-table th,
    .routes-table td {
        padding: 10px;
    }
}

