/* Footer Styles */
.site-footer {
    background-color: #151039;
    color: #fff;
    padding: 20px 20px 110px;
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Первая колонка - Логотип */
.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 16px;
    color: #fff;
    margin: 0px;
    font-weight: 300;
}

/* Вторая колонка - Навигация */
.footer-nav-column {
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #E403C2;
}

/* Третья колонка - Кнопки */
.footer-buttons-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0px;
    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: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 200px;
    justify-content: center;
}

.footer-btn:hover {
    background-color: #E403C2;
    border-color: #E403C2;
    transform: translateY(-2px);
}

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

/* Dropdown для кнопки Забронировать */
.footer-btn-booking-wrapper {
    position: relative;
}

.footer-booking-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

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

.footer-booking-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-booking-dropdown .dropdown-item:hover {
    background-color: #E403C2;
}

.footer-booking-dropdown .dropdown-item .btn-icon {
    width: 18px;
    height: 18px;
}

/* Адаптивность */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-logo-column {
        align-items: center;
    }

    .footer-nav-column {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-buttons-column {
        align-items: center;
    }

    .footer-booking-dropdown {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
    }

    .footer-booking-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 15px 90px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-btn {
        padding: 10px 0px;
        font-size: 14px;
    }

    .footer-nav-link {
        font-size: 15px;
    }
}