/* extracted from view/home.php — порядок блоков сохранён */

/* --- block 1 --- */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        overflow-x: hidden;
    }

    .container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .hero-main {
        position: relative;
        height: 90vh;
        min-height: 800px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/airport-transfer-limousine.webp);
        background-size: cover;
        background-position: center;
        color: #fff;
        display: flex;
        align-items: center;
        padding: 91px 0 48px;
    }

    .hero-text {
        position: relative;
        z-index: 2;
        /* max-width: 800px; */
    }

    .hero-text h1 {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-text h2 {
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 2rem;
        color: var(--secondary-color);
    }

    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        max-width: 600px;
    }

    .list-media {
        list-style: none;
        margin-top: 3rem;
        max-width: 100%;
    }

    .list-media li {
        margin-bottom: 1.5rem;
    }

    .list-media .media {
        display: flex;
        /* align-items: center; */
        gap: 1rem;
    }

    .media span {
        width: 24px;
        height: 24px;
        background-color: var(--secondary-color);
        border-radius: 50%;
    }

    .media-body {
        font-size: 1.1rem;
    }

    .hero-footer {
        overflow: hidden;
        position: absolute;
        bottom: var(--spacing-sm);
        left: 0;
        right: 0;
        z-index: 2;
        padding: 1.5rem 0;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
    }

    .hero-footer .logo {
        display: flex;
        white-space: nowrap;
        animation: scroll 40s linear infinite;
    }

    .hero-footer img {
        height: 40px;
        margin-right: 4rem;
        object-fit: contain;
        opacity: 0.7;
        filter: brightness(0) invert(1);
        transition: opacity 0.3s ease;
    }
    .hero-footer .company-brands {
    display: flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-footer .company-brands li {
    display: inline-flex;
    align-items: center;
    margin-right: 4rem;
}

.hero-footer .company-brands img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hero-footer .company-brands img:hover {
    opacity: 1;
}
    .hero-footer img:hover {
        opacity: 1;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .section-dark {
        background-color: var(--dark-bg);
        color: #fff;
    }

    .section-light {
        background-color: var(--light-bg);
    }
    .hero-footer .marquee {
    display: flex;
    width: 200%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.section-subtitle {
    font-family: 'Playfair Display', serif;
    color: #9A8A78;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: left;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/2.5;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: #fff;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(8px);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* --- block 2 --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.service-card:nth-child(1) {
    grid-column: span 8;
}

.service-card:nth-child(2) {
    grid-column: span 4;
}

.service-card:nth-child(3) {
    grid-column: span 4;
}

.service-card:nth-child(4) {
    grid-column: span 8;
}

.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
    grid-column: span 4;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    background: #000;
}
.services-section {
    padding: 20px 0 60px;
    background: #fff;
}

.services-section .section-subtitle {
    font-family: 'Playfair Display', serif;
    color: #9A8A78;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.services-section .section-title {
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

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

.service-card:nth-child(1) {
    grid-column: span 4;
}

.service-card:nth-child(2) {
    grid-column: span 4;
}

.service-card:nth-child(3) {
    grid-column: span 4;
}

.service-card:nth-child(4) {
    grid-column: span 6;
}

.service-card:nth-child(5) {
    grid-column: span 6;
}

.service-card:nth-child(6) {
    grid-column: span 12;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    background: #000;
    max-height: 300px;
    width: 100%;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 2;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.service-link {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    opacity: 0.6;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateX(8px);
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 4rem;
    }
    
    .service-card {
        grid-column: span 6 !important;
    }
}

@media (max-width: 768px) {
    .feature-tag {
        padding: 6px 10px!important; 
        font-size: 12px!important; 
    }
    .container {
        padding: 0 20px;
    }
    .section-title, .reviews-title h2 {
        font-size: 25px!important;
        margin-bottom: 0;
    }
    .services-section .section-subtitle,
    .reviews-subtitle {
        font-size: 17px!important;
        margin-bottom: 6px;
    }
    .service-card {
        grid-column: span 12 !important;
        min-height: 190px;
        height: 190px;
    }
    .hero-main .container {
        padding: 0 var(--spacing-sm)!important;
    }
    .capacity-badge {
        padding: 5px 10px!important;
    }
    .service-overlay {
        padding: 16px 25px;
    }
    .eco-badge {
        background: #e8f5e9c4;
    }
    .eco-badge img {
    height: 18px!important;
    width: 44px !important;
}
    .service-title {
        font-size: 23px;
        margin-bottom: 4px;
    }
    .services-section .section-title {
        margin-bottom: 0!important;
    }
    .services-grid {
        margin-top: 22px!important;
    }
    .reviews-header {
        margin-bottom: 1rem!important;
    }
    .rating-cards {
        gap: 15px!important;
    }
    .rating-card {
        padding: 17px 2rem!important;
    }
    .section-subtitle {
        margin-bottom: 0!important;
    }
    .fleet-tab {
        padding: 6px 12px!important;
    }
    .fleet-tabs {
        margin: 16px -6px 35px!important;
        gap: 14px!important;
    }
    .fleet-tab small {
        font-size: 11px!important;
    }
    .card-image {
        height: 187px!important; 
    }
    .card-header h3 {
        font-size: 18px!important;
    }
    .card-content {
        padding: 14px!important;
    }
    .coverage-section {
        padding: 30px 0!important;
    }
    .coverage-section .region-switcher {
        gap: 7px!important;
        flex-wrap: wrap!important;
    }
    .coverage-section .section-header {
        align-items: flex-start!important;
    }
    .coverage-section .region-switcher {
        gap: 9px;
    }
    .coverage-section .region-tab {
        padding: 10px 20px!important;
    }
    .coverage-section .section-header {
        margin-bottom: 30px!important;
    } 
    .city-card {
        padding: 17px 20px!important;
    }
    .office-icon-inline {
        width: 28px!important;
        height: 28px!important;
    }
    .city-header h3 {
        font-size: 1.1rem!important;
        gap: 0.4rem!important;
    }
    .office-card h3 {
        flex-direction: row!important;
        gap: 0.5rem!important;
        justify-content: flex-start!important;
        text-align: left!important;
        font-size: 0.9rem!important;
    }
    .office-card .view-services {
        font-size: 1rem!important;
    }
    
    [class^="badge-"] {
        padding: 7px 9px!important;
        font-size: 10px!important;
    }
    .city-office {
        padding: 6px!important;
    }
    .booking-section {
        padding: 36px 0 70px!important;
    }
    .booking-options {
        margin-top: 20px!important;
    }
    .booking-card {
        padding: 10px 22px 20px!important;
    }
    .booking-section .card-header {
        margin-bottom: 10px!important;
    }
    .booking-section .card-features, .booking-section .b2b-features {
        gap: 2px!important;
    }
    header.sticky .language .dropdown-toggle, header.whitetheme .language .dropdown-toggle {
        color: #000000;
    }
    header.sticky .language li a, header.sticky .phone p a, header.sticky .navbar-nav li a.nav-link, header.whitetheme .phone p a, header.whitetheme .navbar-nav li a.nav-link, header .phone a.tel {
        color: #000000;
    }
    .nav-item.language .dropdown-toggle::after {
        border: 2px solid #414141;
        border-left: 0;
        border-top: 0;
    }
    .navbar-nav .dropdown-menu.show {
    width: 100%;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    padding: 11px 0px;
    }
    header.whitetheme .navbar-nav li a.nav-link {
        justify-content: center;
    }
    header .dropdown-menu li a {
        width: 92%;
    }
  
   
}
.tab-subtitle {
        margin-top: 0!important;
    }
    .tab-content .tab-title {
        margin: 0 0 -10px!important; 
    }

/* --- block 3 --- */
.reviews-footer {
    margin-top: 4rem;
    text-align: center;
}

.read-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-all-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.read-all-btn svg {
    transition: transform 0.3s ease;
}

.read-all-btn:hover svg {
    transform: translateX(4px);
}

/* --- block 4 --- */
.reviews-section {
    padding: 55px 0;
    background: #ededed;
}
.tripa-icn {
    background: #5da382;
    width: 30px;
    text-align: center;
    height: 29px;
    color: var(--white);
    border-radius: 50%;
    line-height: 17px;
    padding-top: 5px;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.reviews-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    font-family: 'Playfair Display', serif;
    color: #9A8A78;
    font-size: 1.5rem;
    font-style: italic;
    display: block;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.rating-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

.rating-card h3,
.rating-card .rating-card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rating-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.rating-fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
}

.rating-value {
    font-size: 0.9rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4,
.review-author .review-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.review-source img {
    height: 16px;
}

.review-rating {
    margin-left: auto;
    color: #FFD700;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
    height: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .reviews-header {
        flex-direction: column;
        gap: 2rem;
    }

    .rating-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid .review-rating {
        display: none;
    }
    .rating-cards,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .close-btn img {
        width: 16px;
    }
    .reviews-grid {
        gap: 11px; 
    }
    .reviews-footer {
        margin-top: 2rem;
    }
}

/* --- block 5 --- */
.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(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-card.office-card {
    background: rgba(255,255,255,0.03);
}

/* Highlighted office cities with accent border */
.city-card.office-card.highlighted {
    border: 1px solid #9A8A78;
    background: rgba(154, 138, 120, 0.05);
    position: relative;
    overflow: hidden;
}

.city-card.office-card.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9A8A78, #C4B5A5);
}

.city-card.compact-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
}

.city-header {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.city-header h3 {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-icon-inline {
    flex-shrink: 0;
    stroke: #9A8A78;
    opacity: 0.9;
}

.office-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.office-card .view-services {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

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

/* Country label styling */
.country-label {
    font-weight: 400;
    font-size: 0.85em;
    color: rgba(255,255,255,0.5);
}

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

.badge-service {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

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

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

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

.view-services svg {
    transition: transform 0.3s ease;
}

.view-services:hover svg {
    transform: translateX(4px);
}

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

/* --- block 6 --- */
.booking-section {
    padding: 50px 0 100px;
    background: #fff;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.booking-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.booking-card.primary {
    background: #000;
    color: #fff;
}

.booking-section .card-header {
    margin-bottom: 2rem;
}

.booking-section .card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.booking-card.primary .card-header {
    padding: .75rem 0;
}
.booking-section .card-header p {
    color: #ffff!important;
}
.booking-section .section-title {
    margin-bottom: 0;
}
.primary .card-header p {
    color: rgba(255,255,255,0.7);
}

.booking-section .card-features,
.booking-section .b2b-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.primary .feature {
    color: #fff;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #f1f3f5;
}

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

.option-details span {
    font-weight: 500;
}

.option-details small {
    color: #666;
    font-size: 0.85rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-button.secondary {
    background: none;
    color: #000;
    border: 1px solid #000;
    background: white;
}

.action-button:hover {
    gap: 1rem;
}

.primary .action-button {
    background: #fff;
    color: #000;
}
.booking-card.primary .card-header h3 {
    color:white;
}
@media (max-width: 1200px) {
    .booking-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-options {
        grid-template-columns: 1fr;
    }
}
