/* Hero Section Styles */
.hero-section {
    width: 100%;
    padding: 12px;
}

.hero-content {
    width: 100%;
    height: 100%;
    border-radius: 33px;
    position: relative;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    max-width: calc(100vw - 200px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-banners {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    min-height: 660px;
}

.hero-banners img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-large {
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.hero-banners-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-banner-small {
    background-color: #ffffff;
    border-radius: 30px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 185px;
}

.hero-banner-small:last-child {
    background-color: #f6f6f6;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-badge {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-icon {
    width: 18px;
    height: 19px;
}

.yandex-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.star {
    color: #ffd700;
    font-size: 12px;
}

.rating-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.27px;
    text-transform: uppercase;
}

.rating-description {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.hero-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.contact-email,
.contact-phone {
    color: #ffffff;

    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.25px;
    text-decoration: none;
}

.contact-email:hover,
.contact-phone:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .hero-main {
        padding-top: 140px;
        max-width: calc(100vw - 50px);
        padding-bottom: 15px;
    }

    .hero-banner-small {
        min-height: unset;
    }

    .hero-banner-large {
        min-height: unset;
    }

    .hero-banners {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: unset;
    }

    .hero-bottom {
        display: none;
    }
}