/* booking-1.css — вынесено из inline <style> компонента view/booking.php */
:root {
    --primary-color: #0F1114;
    --secondary-color: #9A8A78;
    --accent-color: #b6ad9b;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #F8F9FA;
    --dark-bg: #1A1A1A;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

section {
    padding: 80px 0;
    position: relative;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-regions-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.regions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    /* max-width: 1000px; */
    margin-left: auto;
    margin-right: auto;
}

.region-block {
    flex: 1;
    min-width: 280px;
}

.region-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.city {
    background-color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.city:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
    color: white;
}

.booking-tips-section {
    padding: 40px 0;
}

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

.tip-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ffffff;
}

.tip-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-support-section {
    background-color: #0f1114!important;
    color: #ffffff;
    padding: 80px 0;
}

.support-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.support-text {
    flex: 1;
    min-width: 300px;
}

.support-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.support-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--accent-color);
}

.support-image {
    display:none;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.support-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fleet-preview-section {
    padding: 100px 0;
}

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

.view-all-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.fleet-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-details {
    padding: 25px;
}

.fleet-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-icon {
    font-size: 1.2rem;
}

.fleet-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .support-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .support-content {
        flex-direction: column;
    }
    
    .support-image {
        order: -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .fleet-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .fleet-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .region-column {
        min-width: 100%;
    }
    
    .tip-icon {
        width: 50px;
        height: 50px;
    }
    
    .tip-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .fleet-details {
        padding: 20px;
    }
}
