    .location-hero {
        padding: 80px 0 40px;
        text-align: center;
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1920&q=80') center/cover;
        color: white;
        margin-bottom: 3rem;
    }
    .location-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
    .location-hero p { font-size: 1.2rem; opacity: 0.9; }

    .map-container {
        width: 100%;
        height: 500px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom: 4rem;
    }
    #map { width: 100%; height: 100%; }

    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    .info-card {
        background: var(--bg-light);
        padding: 2.5rem;
        border-radius: 20px;
        border-left: 5px solid var(--primary);
    }
    .info-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--secondary);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .info-item {
        margin-bottom: 1.2rem;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .info-item i {
        color: var(--primary);
        margin-top: 5px;
    }
    .info-item .label {
        font-weight: bold;
        min-width: 80px;
        color: var(--text-dark);
    }
    .info-item .value {
        color: var(--text-muted);
        line-height: 1.6;
    }
    .btn-map {
        display: inline-block;
        margin-top: 1rem;
        padding: 10px 20px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 0.9rem;
        transition: 0.3s;
    }
    .btn-map:hover { background: var(--secondary); color: white; }

    @media (max-width: 768px) {
        .info-grid { grid-template-columns: 1fr; }
        .location-hero h1 { font-size: 2.2rem; }
    }

    .transport-section {
        margin: 4rem 0 6rem;
    }
    .transport-title {
        font-size: 2rem;
        color: var(--secondary);
        margin-bottom: 2.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 1rem;
    }
    .transport-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .transport-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #f1f5f9;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .transport-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    .transport-card.full-width {
        grid-column: span 2;
    }
    .card-header {
        background: linear-gradient(135deg, #9c7b33 0%, #684f18 100%);
        padding: 1.5rem 2rem;
        display: flex;
        align-items: center;
        gap: 15px;
        color: white;
    }
    .card-header .card-icon {
        font-size: 1.8rem;
    }
    .card-header h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin: 0;
        color: #ffffff;
    }
    .card-body {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .sub-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .sub-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--secondary);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .desc {
        color: var(--text-muted, #64748b);
        line-height: 1.75;
        font-size: 1.05rem;
        margin: 0;
    }
    .route-box-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .route-box {
        background: #f8fafc;
        border: 1px solid #edf2f7;
        border-radius: 16px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: background 0.25s ease;
    }
    .route-box:hover {
        background: #f1f5f9;
    }
    .route-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1e293b;
    }
    .route-desc {
        font-size: 0.95rem;
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }
    .pickup-info {
        font-size: 1rem;
        color: #b45309;
        background: #fffbeb;
        border: 1px solid #fef3c7;
        padding: 0.85rem 1.25rem;
        border-radius: 12px;
        margin: 0;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .bus-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
    }

    @media (max-width: 992px) {
        .transport-grid { grid-template-columns: 1fr; }
        .transport-card.full-width { grid-column: span 1; }
        .bus-grid { grid-template-columns: 1fr; }
    }

