/* de-home-4.css — вынесено из inline <style> компонента view/de/home.php */
.coverage-section {
    padding: 55px 0;
    background: #0F1114;
    color: #fff;
}

.coverage-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.coverage-section .section-title {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
}

.coverage-section .region-switcher {
    display: flex;
    gap: 1rem;
}

.coverage-section .region-tab {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.coverage-section .region-tab.active {
    background: rgba(255,255,255,0.05);
    border-color: #9A8A78;
}

.city-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 2rem;
}
.city-card.compact-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
}

.compact-card .city-header {
    margin-bottom: 0;
}

.city-office .double-address {
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

.city-office .double-address li {
    color: inherit;
    margin-bottom: 8px;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
}

.city-office .double-address li:last-child {
    margin-bottom: 0;
}

.city-office .double-address li:not(:last-child)::after {
    content: '';
    display: block;
    width: 426px;
    height: 1px;
    background-color: #9A8A78;
    margin: 6px 0;
}

@media (max-width:767px) {
    .city-office .double-address li:not(:last-child)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #9A8A78;
    margin: 6px 0;
}
}

.city-office .double-address li:first-child {
    font-weight: 500;
}

.city-office .double-address li:last-child {
    opacity: 0.8;
    font-weight: 400;
}

.compact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.compact-card .city-badges {
    gap: 0.5rem;
}

.compact-card .badge-airport,
.compact-card .badge-service {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
}

.city-card.office-card {
    background: rgba(255,255,255,0.03);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.office-card {
    grid-column: span 6;
}

.compact-card {
    grid-column: span 3;
}

@media (max-width: 1400px) {  
    .compact-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .office-card,
    .compact-card {
        grid-column: span 12;
    }
}
.city-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 23px 2rem;
}

.city-header {
    margin-bottom: 1.5rem;
}

.city-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.badge-office {
    background: #9A8A78;
    color: #fff;
}

.badge-airport,
.badge-service {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

[class^="badge-"] {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
}

.city-office {
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    margin-bottom: 7px;
}

.office-address {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.office-manager {
    color: #9A8A78;
    font-size: 0.9rem;
}

.city-destinations p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destination-tags span {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
}

.view-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #9A8A78;
    text-decoration: none;
    transition: all 0.3s ease;
    float: right;
}

.view-services:hover {
    color: #fff;
    gap: 1rem;
}

@media (max-width: 1200px) {
    .section-header {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
}
