/* de-home-0.css — вынесено из inline <style> компонента view/de/home.php */
* {
        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; */
        padding-left:55px!important;
        padding-right:15px!important;
    }

    .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;
        /* цвет не задаём: --secondary-color здесь #6b5d4a и тонет в затемнённом
           фото. Работает общее .hero-text h2 { color: white } */
    }

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

    .list-media {
        list-style: none;
        margin-top: 3rem;
    }

    .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; width: auto;
        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;
}

.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);
}
