/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.logo i {
    color: #2563eb;
    font-size: 24px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #111827;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.mobile-nav {
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 48px 0;
    background: #f9fafb;
}

.page-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
}

/* Search Section */
.search-section {
    margin-bottom: 48px;
}

.search-form-large {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
    max-width: 100%;
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    flex: 1 1 180px;
}

.filter-group.price-group {
    flex: 0 1 140px;
    min-width: 140px;
}

.price-filters {
    display: flex;
    gap: 16px;
    flex: 1 1 auto;
}

.filter-group label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
    font-size: 15px;
}

.filter-select, .filter-input {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.2s;
}

.filter-select:focus, .filter-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.08);
}

.search-btn-large {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.search-btn-large:hover {
    background: #1d4ed8;
}

@media (max-width: 900px) {
    .search-filters {
        flex-direction: column;
        gap: 18px;
    }
    .filter-group {
        min-width: 0;
    }
}

/* Search Results */
.search-results {
    margin-bottom: 48px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.results-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.results-count {
    color: #6b7280;
    font-size: 14px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}

.no-results {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}

.no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* Popular Searches */
.popular-searches {
    background: #f9fafb;
    padding: 32px;
    border-radius: 8px;
}

.popular-searches h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-tag {
    background: white;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
}

.search-tag:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 48px;
}

.comparison-table-large {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.comparison-table-large table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-large th {
    background: #f3f4f6;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table-large td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.comparison-table-large tr:last-child td {
    border-bottom: none;
}

.operator-cell {
    min-width: 200px;
}

.operator-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.operator-logo-small {
    width: 40px;
    height: 20px;
    object-fit: contain;
}

.operator-cities {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.price-cell {
    font-weight: 600;
    color: #2563eb;
}

.rating-cell {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-cell i {
    color: #fbbf24;
}

/* Tips Section */
.tips-section {
    background: #f9fafb;
    padding: 48px 0;
    margin-top: 48px;
}

.tips-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tip-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tip-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 32px;
    color: #bfdbfe;
}

.search-form {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.search-inputs {
    display: flex;
    gap: 16px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    color: #374151;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #1d4ed8;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

/* Popular Cities */
.popular-cities {
    padding: 64px 0;
    background: #f9fafb;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.city-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.city-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.city-header i {
    font-size: 24px;
    color: #2563eb;
}

.city-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.city-description {
    color: #6b7280;
    margin-bottom: 16px;
}

.city-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6b7280;
}

.info-item i {
    color: #2563eb;
    width: 16px;
}

.city-card i {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 16px;
}

.city-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.city-card p {
    color: #6b7280;
}

/* Popular Operators */
.popular-operators {
    padding: 64px 0;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.operator-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.operator-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.operator-logo {
    margin-bottom: 16px;
}

.operator-logo img {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

.operator-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.operator-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.operator-rating i {
    color: #fbbf24;
}

.operator-price {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 8px;
}

.operator-cars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.operator-cities {
    margin-bottom: 16px;
}

.operator-cities .badge {
    margin-bottom: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.text-center {
    text-align: center;
}

/* Tariff Comparison */
.tariff-comparison {
    padding: 64px 0;
    background: #f9fafb;
}

.comparison-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #f3f4f6;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    background: #e5e7eb;
    color: #374151;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 4px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 48px 0 24px;
    margin-top: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 14px;
}

.footer-section ul,
.footer-section ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-section ul li:before,
.footer-section ol li:before {
    display: none !important;
    content: none !important;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section .footer-email {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.footer-section .footer-email i {
    color: #2563eb;
    font-size: 18px;
}

.footer-section .footer-email:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .search-inputs {
        flex-direction: column;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .search-actions {
        flex-direction: column;
    }

    .results-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .cities-grid,
    .operators-grid,
    .results-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-table,
    .comparison-table-large {
        overflow-x: auto;
    }

    .comparison-table table,
    .comparison-table-large table {
        min-width: 800px;
    }

    .page-header {
        padding: 32px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .search-form-large {
        padding: 24px;
    }

    .tips-section {
        padding: 32px 0;
    }

    .tips-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .popular-cities,
    .popular-operators,
    .tariff-comparison {
        padding: 40px 0;
    }

    .city-card {
        padding: 16px;
    }

    .city-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .operator-card {
        padding: 16px;
    }

    .operator-cities .badge {
        display: block;
        margin-bottom: 4px;
    }

    .search-tags {
        gap: 8px;
    }

    .search-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .tip-card {
        padding: 16px;
    }

    .comparison-table-large th,
    .comparison-table-large td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .operator-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .operator-logo-large,
    .car-image-large {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-left: 0;
    }

    .search-form-large {
        padding: 12px 4px;
        border-radius: 8px;
    }
    .search-filters {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }
    .filter-group {
        min-width: 0;
        width: 100%;
        flex: 1 1 100%;
    }
    .filter-select, .filter-input {
        font-size: 15px;
        padding: 10px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .search-btn-large {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        margin: 0;
        border-radius: 6px;
    }
}

/* Детальные страницы */

/* City Detail Header */
.city-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0 24px 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.04);
    color: #fff;
}

.city-detail-header h1,
.city-detail-header p,
.city-detail-header .city-stats {
    color: #fff;
}

.city-info {
    padding-left: 32px;
    max-width: 700px;
}

.city-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.city-info p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.city-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.city-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.city-stats .stat i {
    font-size: 20px;
    opacity: 0.8;
}

/* Operator Detail Header */
.operator-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 48px;
}

.operator-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.operator-logo-large {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 24px;
    margin-left: 24px;
    border-radius: 16px;
}

.operator-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
}

.operator-details h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.operator-rating-large {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.operator-rating-large .stars {
    display: flex;
    gap: 2px;
}

.operator-rating-large .stars i {
    color: #fbbf24;
    font-size: 18px;
}

.rating-score {
    font-size: 18px;
    font-weight: 600;
}

.rating-count {
    font-size: 14px;
    opacity: 0.8;
}

.operator-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.operator-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.operator-stats .stat i {
    font-size: 18px;
    opacity: 0.8;
}

.operator-price-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.operator-price-main .price {
    font-size: 24px;
    font-weight: bold;
}

.operator-price-main .price-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Car Detail Header */
.car-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 48px;
}

.car-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.car-image-large {
    width: 300px;
    height: 300px;
    margin-right: 0;
    margin-left: 0;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.car-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.car-details h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.car-rating .stars {
    display: flex;
    gap: 2px;
}

.car-rating .stars i {
    color: #fbbf24;
    font-size: 18px;
}

.car-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.car-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.car-stats .stat i {
    font-size: 18px;
    opacity: 0.8;
}

.car-price-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.car-price-main .price {
    font-size: 24px;
    font-weight: bold;
}

.car-price-main .price-note {
    font-size: 14px;
    opacity: 0.8;
}

/* City Operators Section */
.city-operators {
    margin-bottom: 48px;
}

.city-operators h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* City Tariffs Section */
.city-tariffs {
    margin-bottom: 48px;
}

.city-tariffs h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* City Features Section */
.city-features {
    margin-bottom: 48px;
}

.city-features h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.feature-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Operator Tariffs Section */
.operator-tariffs {
    margin-bottom: 48px;
}

.operator-tariffs h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tariff-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.tariff-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tariff-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.tariff-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-main {
    font-size: 32px;
    font-weight: bold;
    color: #059669;
}

.price-unit {
    font-size: 16px;
    color: #6b7280;
}

.tariff-features {
    list-style: none;
}

.tariff-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #374151;
}

.tariff-features li i {
    color: #059669;
    font-size: 14px;
}

/* Operator Cities Section */
.operator-cities {
    margin-bottom: 48px;
}

.operator-cities h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* .city-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.city-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
} */

.city-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.city-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #fff;
}

.city-stats span i {
    color: #2563eb;
}

/* Operator Fleet Section */
.operator-fleet {
    margin-bottom: 48px;
}

.operator-fleet h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.fleet-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fleet-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #374151;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.car-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}

.car-card:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,0.13);
}

.car-image {
    width: 100%;
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image img {
    max-width: 90%;
    max-height: 160px;
    object-fit: contain;
    border-radius: 8px;
}

.car-info {
    padding: 18px 20px 12px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.car-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #222;
}

.car-params {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.car-cities {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #2563eb;
    margin-top: 8px;
    font-weight: 500;
}

.car-cities i {
    font-size: 16px;
    color: #2563eb;
    margin-right: 2px;
}

/* Operator Requirements Section */
.operator-requirements {
    margin-bottom: 48px;
}

.operator-requirements h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.requirement-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.requirement-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}

.requirement-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.requirement-card p {
    color: #6b7280;
}

/* Operator Reviews Section */
.operator-reviews {
    margin-bottom: 48px;
}

.operator-reviews h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-info .stars {
    display: flex;
    gap: 2px;
}

.reviewer-info .stars i {
    color: #fbbf24;
    font-size: 14px;
}

.review-date {
    font-size: 14px;
    color: #6b7280;
}

.review-card p {
    color: #374151;
    line-height: 1.6;
}

/* Car Specifications Section */
.car-specifications {
    margin-bottom: 48px;
}

.car-specifications h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.specs-category h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #374151;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #6b7280;
}

.spec-value {
    font-weight: 600;
    color: #374151;
}

/* Car Operators Section */
.car-operators {
    margin-bottom: 48px;
}

.car-operators h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* Car Prices Section */
.car-prices {
    margin-bottom: 48px;
}

.car-prices h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* Car Features Section */
.car-features {
    margin-bottom: 48px;
}

.car-features h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* Car Reviews Section */
.car-reviews {
    margin-bottom: 48px;
}

.car-reviews h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

/* Mobile Responsive для детальных страниц */
@media (max-width: 768px) {
    .city-detail-header,
    .operator-detail-header,
    .car-detail-header {
        padding: 40px 0;
    }

    .city-info h1,
    .operator-details h1,
    .car-details h1 {
        font-size: 28px;
    }

    .operator-info,
    .car-info {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .operator-logo-large,
    .car-image-large {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-left: 0;
    }

    .city-stats,
    .operator-stats,
    .car-stats {
        justify-content: center;
    }

    .tariffs-grid,
    .cities-grid,
    .cars-grid,
    .requirements-grid,
    .reviews-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .fleet-categories {
        gap: 32px;
    }

    .review-header {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .city-detail-header,
    .operator-detail-header,
    .car-detail-header {
        padding: 32px 0;
    }

    .city-info h1,
    .operator-details h1,
    .car-details h1 {
        font-size: 24px;
    }

    .city-stats,
    .operator-stats,
    .car-stats {
        flex-direction: column;
        gap: 16px;
    }

    .operator-logo-large,
    .car-image-large {
        width: 80px;
        height: 80px;
    }

    .tariff-card,
    .city-card,
    .car-card,
    .requirement-card,
    .review-card,
    .feature-card {
        padding: 20px;
    }

    .spec-item {
        flex-direction: column;
        gap: 4px;
    }
}

.car-details {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.car-detail-item {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-detail-item strong {
    color: #374151;
    font-weight: 500;
    min-width: 70px;
}

.car-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* Compare Page Styles */
.compare-selector {
    margin-bottom: 48px;
}

.compare-form {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(37,99,235,0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.compare-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.compare-item label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
    font-size: 15px;
}

.compare-select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.2s;
}

.compare-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.08);
}

.compare-vs {
    font-size: 18px;
    font-weight: bold;
    color: #6b7280;
    padding: 0 16px;
}

.compare-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.compare-btn:hover {
    background: #1d4ed8;
}

.compare-results {
    margin-bottom: 48px;
}

.compare-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(37,99,235,0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.compare-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:nth-child(even) {
    background: #f9fafb;
}

.compare-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.quick-comparisons {
    margin-bottom: 48px;
}

.quick-comparisons h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: bold;
    color: #111827;
}

.comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.comparison-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 24px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}

.comparison-card:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

.comparison-card:not(:last-child)::after {
    content: '|';
    margin-left: 16px;
    color: #d1d5db;
    font-weight: normal;
}

.comparison-separator {
    color: #d1d5db;
    font-weight: normal;
    margin: 0 8px;
    font-size: 18px;
}

.comparison-tips {
    margin-bottom: 48px;
}

.comparison-tips h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: bold;
    color: #111827;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tip-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.tip-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.tip-card p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .compare-form {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .compare-item {
        min-width: auto;
        width: 100%;
    }
    
    .compare-vs {
        padding: 0;
        text-align: center;
    }
    
    .compare-table {
        overflow-x: auto;
    }
    
    .compare-table table {
        min-width: 600px;
    }
    
    .comparison-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-card:not(:last-child)::after {
        content: '';
        margin: 0;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Стили для списков */
ul {
    list-style: none;
    padding: 0;
    margin: 15px;
}

ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #374151;
}

ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 50%;
}

ul li:last-child {
    margin-bottom: 0;
}

/* Стили для списков с иконками (как в тарифах) */
ul li i {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
}

/* Стили для вложенных списков */
ul ul {
    margin-top: 8px;
    margin-left: 16px;
}

ul ul li {
    font-size: 14px;
    color: #6b7280;
}

ul ul li:before {
    width: 4px;
    height: 4px;
    background: #9ca3af;
}

/* Стили для нумерованных списков */
ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #374151;
    counter-increment: item;
}

ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

ol li:last-child {
    margin-bottom: 0;
}

/* Стили для блока приложений */
.apps-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-link {
    display: block;
    transition: transform 0.2s;
}

.app-link:hover {
    transform: scale(1.05);
}

.app-button {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для блока промокодов */
.promocodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.promocode-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.promocode-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.promocode-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #374151;
}

.promocode-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.promocode-code {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 1px;
    min-width: 120px;
}

.copy-btn {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.copy-btn:hover {
    background: #1d4ed8;
}

.copy-btn i {
    font-size: 16px;
}

.promocode-status {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
    margin: 0;
}

/* Стили для блока контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.contact-item i {
    font-size: 18px;
    color: #2563eb;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    .apps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .promocodes-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .promocode-code-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .promocode-code {
        min-width: auto;
        width: 100%;
    }
}

/* Убираем кастомные точки у списков внутри карточек тарифов */
.tariff-card ul li:before,
.tariff-card ol li:before {
    display: none !important;
    content: none !important;
}

.city-card a {
    text-decoration: none !important;
    color: inherit;
}

.operator-cities-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
}
.operator-cities-inline a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 6px;
    border-radius: 4px;
    background: transparent;
}
.operator-cities-inline a:hover {
    color: #1d4ed8;
    background: #f3f4f6;
    text-decoration: underline;
}
.operator-cities-inline .city-sep {
    color: #9ca3af;
    margin: 0 2px;
    user-select: none;
}

@media (max-width: 600px) {
    .city-info {
        padding-left: 0;
        padding-right: 0;
    }
    .city-detail-header {
        padding: 24px 0 16px 0;
    }
}

/* Инфографика по зонам */
.operator-infographics h3 {
    margin-top: 24px;
    margin-bottom: 16px;
}
.zone-info-block h4 {
    margin-top: 16px;
    margin-bottom: 8px;
} 