/* ============================================
   УТИЛИТАРНЫЕ КЛАССЫ
   ============================================ */

/* Полное покрытие absolute элементами */
.hero-video,
.hero-overlay,
.second-screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Базовые стили для кнопок */
.hero-btn,
.second-tg-btn,
.fourth-tg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0px;
    width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #E403C2;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover эффект для кнопок */
.hero-btn:hover,
.second-tg-btn:hover,
.fourth-tg-btn:hover {
    background: #E403C2;
    transform: translateY(-2px);
}

/* Базовые стили для dropdown */
.booking-dropdown,
.second-booking-dropdown,
.tg-dropdown {
    position: absolute;
    top: 60px;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #E403C2;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Общие стили для заголовков экранов */
.second-screen-title,
.third-screen-title,
.fourth-screen-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
}

/* Общие стили для описаний экранов */
.second-screen-description,
.third-screen-description {
    color: rgba(255, 255, 255, 0.9);
}

.second-screen-description p,
.third-screen-description p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Общие стили для видео */
.hero-video,
.second-screen-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ============================================
   ПЕРВЫЙ ЭКРАН - HERO
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Индивидуальные стили для hero элементов */
.hero-video {
    z-index: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}

.hero-btn-tg {
    display: block;
}

.hero-btn-booking-wrapper {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.hero-btn-tg-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.hero-btn-booking {
    background: rgba(255, 255, 255, 0.15);
}

.btn-icon {
    width: 20px;
    height: 20px;
}



/* Индивидуальные позиционирования dropdown */
.booking-dropdown {
    right: 0;
    z-index: 1001;
}

.booking-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tg-dropdown {
    left: 0;
    z-index: 1001;
}

.tg-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(228, 3, 194, 0.3);
}

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

.dropdown-item:hover {
    background: rgba(228, 3, 194, 0.5);
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ВТОРОЙ ЭКРАН
   ============================================ */

.second-screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 30px;
    box-sizing: border-box;
    overflow: visible;
}

.second-screen-bg {
    z-index: 0;
    opacity: 0.5;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    pointer-events: none;
}

.second-screen-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.second-screen-content {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-center;
}

.second-screen-left {
    flex: 1;
    color: #fff;
    z-index: 10;
}

.second-screen-right {
    flex: 1;
}

.second-screen-text {
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.second-screen-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
}

.second-screen-title {
    margin-bottom: 5px;
}

.second-screen-description {
    margin-bottom: 20px;
}

.second-screen-description p {
    font-size: 18px;
    margin-bottom: 20px;
}

.second-screen-description p:last-child {
    margin-bottom: 0;
}

.second-screen-booking-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.second-booking-btn {
    background: rgba(228, 3, 194, 0.8);
}

.second-booking-dropdown {
    left: 0;
    z-index: 100;
}

/* Слайдер видео */
.second-screen-video-slider {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 580px;
}

.video-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Эффект колоды карт */
.video-card[data-index="0"] {
    z-index: 3;
    transform: translateY(0) scale(1);
}

.video-card[data-index="1"] {
    z-index: 2;
    transform: translateX(30px) scale(0.95);
    opacity: 0.7;
}

.video-card[data-index="2"] {
    z-index: 1;
    transform: translateX(50px) scale(0.9);
    opacity: 0.4;
}

.second-screen-video-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.second-screen-video-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

/* Кнопка переключения видео (жидкое стекло) */
.video-next-btn {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-next-btn:hover {
    background: rgba(228, 3, 194, 0.3);
    border-color: rgba(228, 3, 194, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.video-next-btn svg {
    width: 24px;
    height: 24px;
}

/* Стили для маркированных списков */
.second-screen-description ul,
.second-screen-description ol {
    font-size: 18px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    padding-left: 15px;
}

.second-screen-description li {
    margin-bottom: 10px;
}

.second-screen-description li:last-child {
    margin-bottom: 0;
}

/* ============================================
   ТРЕТИЙ ЭКРАН - ИНТЕРЬЕР
   ============================================ */

.third-screen {
    position: relative;
    width: 100%;
    padding: 10px 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.third-screen-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.third-screen-title {
    margin-bottom: 15px;
    text-align: center;
}

.third-screen-description {
    max-width: 800px;
    margin: 0 auto 30px;
}

.third-screen-description p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Карусель фотографий */
.photo-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 10px;
}

.photo-carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.photo-carousel-item {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.photo-carousel-item:hover {
    transform: translateY(-10px);
}

.photo-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Градиентные маски по краям карусели */
.photo-carousel-container::before,
.photo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.photo-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #151039 0%, rgba(21, 16, 57, 0) 100%);
}

.photo-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #151039 0%, rgba(21, 16, 57, 0) 100%);
}

/* Модальное окно для просмотра фотографий */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Общие стили для кнопок модального окна */
.modal-close-btn,
.modal-nav-btn {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover,
.modal-nav-btn:hover {
    background: rgba(228, 3, 194, 0.3);
    border-color: #E403C2;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 10000;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    z-index: 10000;
}

.modal-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.modal-prev-btn {
    left: 30px;
}

.modal-next-btn {
    right: 30px;
}

.modal-content {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   ЭКРАН "ХВАТИТ ЛИСТАТЬ"
   ============================================ */

.stop-screen {
    position: relative;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.stop-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.stop-content h2 {
    font-family: 'Benzin', sans-serif;
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin-bottom: -20px;
    text-transform: uppercase;
}

.stop-content p {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
}

.stop-buttons {
    display: flex;
    gap: 30px;
}

.stop-button {
    font-size: 18px;
    color: white;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.stop-button:hover {
    background-color: #E403C2;
    color: white;
}

/* ============================================
   ЧЕТВЕРТЫЙ ЭКРАН - КОНТАКТЫ
   ============================================ */

.fourth-screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 5px 30px;
    box-sizing: border-box;
}

.fourth-screen-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.fourth-screen-title {
    margin-bottom: 30px;
    text-align: center;
}

.fourth-screen-columns {
    display: flex;
    padding: 25px 10px;
    gap: 60px;
    align-items: flex-start;
}

.fourth-screen-left {
    flex: 0.85;
    display: flex;
    align-items: flex-start;
}

.contact-info {
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 0;
}

.contact-city {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
}

.contact-address {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.hours-time {
    font-size: 18px;
    font-weight: 600;
    color: #E403C2;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

.fourth-booking-btn {
    background: rgba(228, 3, 194, 0.8);
}

.route-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    max-width: 415px;
}

.route-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.fourth-screen-right {
    flex: 1.15;
    min-height: auto;
}

.yandex-map {
    width: 100%;
    height: 430px !important;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   АДАПТИВНЫЕ СТИЛИ
   ============================================ */

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .hero-btn-tg {
        top: 20px;
    }
    
    .hero-btn-booking-wrapper {
        top: 20px;
    }
    
    .hero-logo {
        top: 30px;
        max-width: 300px;
    }
    
    .btn-icon {
        width: 16px;
        height: 16px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    .hero-btn-tg {
        display: none !important;
    }
    
    .hero-btn-booking-wrapper {
        display: none !important;
    }  
    
    .hero-logo {
        max-width: 350px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .second-screen-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .second-screen-text {
        max-width: 100%;
        text-align: center;
    }
    
    .second-screen-video-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .second-screen-title {
        font-size: 42px;
    }
}

/* Адаптивность второго экрана сайта для планшетов */
@media (max-width: 768px) {
    .second-screen {
        padding: 60px 20px;
    }
    
    .second-screen-content {
        gap: 30px;
    }
    
    .second-screen-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .second-screen-description p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .second-screen-description {
        margin-bottom: 40px;
    }
    
    .second-screen-video-container {
        max-width: 400px;
    }
    
    .second-screen-video-overlay {
        bottom: 20px;
        gap: 15px;
    }
    
    .second-screen-video-text {
        font-size: 18px;
    }
    
    /* Адаптивность для списков на планшетах */
    .second-screen-description ul,
    .second-screen-description ol {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .second-screen-description li {
        margin-bottom: 8px;
    }
}

/* Адаптивность второго экрана (для мобильных) */
@media (max-width: 480px) {
    .second-screen {
        padding: 10px 15px;
    }
    
    .second-screen-text {
        padding: 20px;
    }
    
    .second-screen-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .second-screen-subtitle {
        font-size: 16px;
    }
    
    .second-screen-description p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .second-screen-video-container {
        max-width: 100%;
        height: 500px;
    }
    
    .second-screen-video-overlay {
        bottom: 15px;
    }
    
    .second-screen-video-text {
        font-size: 16px;
    }
    
    .second-tg-btn {
        width: 180px;
        padding: 10px 0px;
        font-size: 14px;
    }
    
    /* Кнопка переключения видео для мобильных */
    .video-next-btn {
        right: 3px;
        top: auto;
        bottom: 200px;
        transform: none;
    }
    
    .video-next-btn:hover {
        transform: scale(1.1);
    }
    
    /* Адаптивность для списков на мобильных */
    .second-screen-description ul,
    .second-screen-description ol {
        font-size: 15px;
        line-height: 1.5;
        padding-left: 20px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .third-screen {
        padding: 60px 20px;
    }
    
    .third-screen-title {
        font-size: 42px;
    }
    
    .third-screen-description p {
        font-size: 18px;
    }
    
    .photo-carousel-item {
        width: 280px;
        height: 380px;
    }
}

/* Адаптивность третьего экрана (для планшетов) */
@media (max-width: 768px) {
    .third-screen-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .third-screen-description {
        margin-bottom: 50px;
        max-width: 350px
    }
    
    .third-screen-description p {
        font-size: 17px;
        line-height: 1.5;
    }
    
    .photo-carousel-item {
        width: 250px;
        height: 350px;
    }
    
    .photo-carousel-container::before,
    .photo-carousel-container::after {
        width: 50px;
    }
}

/* Адаптивность третьего экрана (для мобильных) */
@media (max-width: 480px) {
    .third-screen {
        padding: 5px 10px;
    }
    
    .third-screen-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .third-screen-description {
        margin-bottom: 20px;
    }
    
    .third-screen-description p {
        font-size: 16px;
    }
    
    .photo-carousel-item {
        width: 220px;
        height: 320px;
    }
    
    .photo-carousel-container {
        padding: 15px 0;
    }
    
    .photo-carousel-container::before,
    .photo-carousel-container::after {
        width: 30px;
    }
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .modal-prev-btn {
        left: 10px;
    }
    
    .modal-next-btn {
        right: 10px;
    }
    
    .modal-content {
        width: 95%;
        height: 85%;
        padding: 20px;
    }
    
    .modal-counter {
        bottom: 20px;
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .modal-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .modal-nav-btn svg,
    .modal-close-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Адаптивность Контактного блока для планшетов */
@media (max-width: 1024px) {
    .fourth-screen {
        padding: 60px 20px;
    }
    
    .fourth-screen-columns {
        flex-direction: column;
        gap: 40px;
    }
    
    .fourth-screen-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .yandex-map {
        min-height: 400px;
    }
}

/* Адаптивность Четвертого блока для планшетов */
@media (max-width: 768px) {
    .fourth-screen-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .contact-city {
        font-size: 28px;
    }
    
    .contact-address {
        font-size: 16px;
    }
    
    .contact-hours {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .yandex-map {
        min-height: 350px;
    }
}

/* Адаптивность Четвертого блока для мобильных */
@media (max-width: 480px) {
    .fourth-screen {
        padding: 10px 15px;
    }
    
    .fourth-screen-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .fourth-screen-left {
        flex: 1;
        width: 100%;
    }
    
    .fourth-screen-right {
        flex: 1;
        width: 100%;
    }
    
    .fourth-screen-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-city {
        font-size: 24px;
    }
    
    .contact-address {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .contact-buttons .hero-btn.fourth-booking-btn,
    .contact-buttons .hero-btn.fourth-tg-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 0;
        padding: 12px 0;
    }
    
    .route-btn {
        max-width: 100%;
        width: 100%;
    }
    
    .yandex-map {
        height: 350px;
        min-height: 350px;
    }
}

/* Медиазапрос для экранов 360px и меньше */
@media (max-width: 360px) {
    .fourth-screen-columns {
        padding: 15px 5px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .contact-buttons .hero-btn.fourth-booking-btn,
    .contact-buttons .hero-btn.fourth-tg-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 0;
        padding: 12px 0;
    }
    
    .route-btn {
        width: 100%;
        max-width: 100%;
        margin-top: 5px;
        padding: 12px 0;
        box-sizing: border-box;
    }
}

/* Адаптивность Хватит листать для планшетов */
@media (max-width: 768px) {
    .stop-screen {
        padding-bottom: 60px;
    }
    
    .stop-content h2 {
        font-size: 48px;
    }
    
    .stop-content p {
        font-size: 18px;
    }
    
    .stop-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stop-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Адаптивность Хватит листать для мобильных */
@media (max-width: 480px) {
    .stop-screen {
        height: 70vh;
        min-height: 500px;
        padding-bottom: 40px;
        background-position: center center;
    }
    
    .stop-content {
        padding: 0 15px;
    }
    
    .stop-content h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stop-content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .stop-buttons {
        gap: 12px;
    }
    
    .stop-button {
        width: 100%;
        padding: 10px;
        font-size: 15px;
        border-radius: 25px;
    }
}