/* ========== БАЗА ========== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
html { scroll-behavior: smooth; }
body { background: #f4f4f4; color: #111; -webkit-font-smoothing: antialiased; }
a { color: inherit; }

.bg-section { background-color: #333; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.bg-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.15); z-index: 1; }
.bg-section > * { position: relative; z-index: 2; }

/* ========== НАВІГАЦІЯ (як у Miami) ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5vw;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
    gap: 40px;
}

.logo {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.logo a {
    text-decoration: none;
    color: #111;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    /* прибираємо flex-end — меню більше не прилипає вправо */
}

.nav-link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    padding: 6px 0;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active-page {
    color: #000;
}

.nav-item-dropdown {
    position: static;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: none;
    border-radius: 0;
    padding: 40px 5vw;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
}

.nav-item-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.mega-menu-list a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.15s;
}

.mega-menu-list a:hover {
    color: #000;
}

.mega-menu-cards {
    display: flex;
    gap: 20px;
}

.mega-card {
    width: 240px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.mega-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.mega-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.mega-card p {
    font-size: 0.85rem;
    color: #666;
}

.lang-switch.custom-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
    right: 20px;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 60px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.active-lang {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-lang::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 60px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
}

.lang-dropdown-content.show {
    display: flex;
    flex-direction: column;
}

.lang-dropdown-content button {
    color: #333;
    padding: 10px 14px;
    display: block;
    background: none;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.lang-dropdown-content button:last-child {
    border-bottom: none;
}

.lang-dropdown-content button:hover {
    background-color: #f1f1f1;
}

/* ========== HERO ========== */
.hero { height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; text-align: center; color: #fff; padding: 0 20px 12vh; }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.8rem); font-weight: 700; margin-bottom: 24px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);}
.btn-outline { border: 1px solid #fff; background: transparent; color: #fff; padding: 8px 30px; font-size: .8rem; cursor: pointer; border-radius: 4px; text-decoration: none; font-weight: 600; transition: .3s; }
.btn-outline:hover { background: #fff; color: #000; }

.hero.bg-section::before {
    background: rgba(0, 0, 0, 0.01); 
}

/* ========== RELAX TITLE ========== */
.relax-title-section { background: #f4f4f4; text-align: center; padding: 70px 5vw; }
.relax-title-section h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 600; }

/* ========== ВІДЕО ========== */
.video-section { background: #2f2f2f; padding: 60px 5vw; }
.video-wrap { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.video-media { flex: 0 0 82%; aspect-ratio: 16/8; background: #000; overflow: hidden; border-radius: 4px; }
.video-media video, .video-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-caption { color: #fff; font-size: clamp(1.9rem, 3.8vw, 3.6rem); font-weight: 600; line-height: 1.05; text-transform: uppercase; }

/* ========== BOOKING (жирніший текст) ========== */
.booking-section { background: #fff; text-align: center; padding: 40px 5vw; }
.booking-section h2 {
    font-size: clamp(2.1rem, 3.8vw, 3.1rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 26px;
}
.booking-small {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto 30px;
    color: #333;
    line-height: 1.65;
    font-weight: 500;
}
.btn-black { display: inline-block; background: #000; color: #fff; padding: 14px 32px; border-radius: 6px; font-size: .85rem; font-weight: 700; text-decoration: none; transition: .3s; border: none; cursor: pointer; }
.btn-black:hover { background: #333; }

/* ========== PERSONALIZED ========== */
.personalized { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; background: #f4f4f4; padding: 50px 5vw; gap: 50px; }.personalized img { width: 100%; max-width: 700px; height: auto; aspect-ratio: auto; object-fit: contain; }
.personalized .text { max-width: 440px; }
.personalized h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 700; margin-bottom: 16px; }
.personalized p { font-size: 1rem; color: #444; margin-bottom: 20px; line-height: 1.6; }

/* ========== SERVICES (більший і жирніший заголовок) ========== */
/* ========== SERVICES ========== */
.services-section { 
    padding: 70px 0 60px; /* Забрали бокові відступи, щоб сітка йшла до краю екрана */
    background: #fff; 
    overflow: hidden; 
}
.services-head { 
    display: flex; justify-content: space-between; align-items: baseline; 
    max-width: 1300px; 
    margin: 0 auto 26px; 
    padding: 0 5vw; /* Повернули відступи лише для заголовка */
}
.services-head h2 { font-size: clamp(2.2rem, 3.6vw, 2.9rem); font-weight: 800; }
.view-all { font-size: .9rem; text-decoration: none; color: #333; font-weight: 600; }

/* Обгортка для стрілочок */
.services-slider-wrap { position: relative; width: 100%; }

/* Сітка без смуги прокрутки */
.services-grid { 
    display: flex; gap: 18px; overflow-x: auto; 
    
    /* Точна математика відступу, щоб збігалося з padding-ом заголовка 1 в 1 */
    padding-left: max(5vw, calc((100vw - 1300px) / 2 + 5vw));
    padding-right: max(5vw, calc((100vw - 1300px) / 2 + 5vw));
    
    /* ВКАЗУЄМО ТОЧКУ ПРИЛИПАННЯ: щоб при скролі картки ставали рівно під текст */
    scroll-padding-left: max(5vw, calc((100vw - 1300px) / 2 + 5vw));
    
    padding-bottom: 12px; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    scrollbar-width: none; /* Ховає скрол у Firefox */
}
.services-grid::-webkit-scrollbar { display: none; } /* Ховає скрол у Chrome/Safari/Edge */

/* Картки */
.service-card { flex: 0 0 280px; scroll-snap-align: start; }
.service-card img { 
    width: 100%; height: 180px; object-fit: cover; 
    margin-bottom: 12px; 
    border-radius: 12px; /* Збільшили заокруглення кутів */
}
.service-card h4 { 
    font-size: 1.4rem; 
    font-weight: 600; 
    color: #422904; 
    margin-bottom: 4px;
}
.service-card p { 
    font-size: 1.3rem; 
    font-weight: 600;
    color: #422904;
    margin-top: 10px;
}

/* Стрілочки */
.slider-btn {
    position: absolute; top: 40%; transform: translateY(-50%);
    background: #fff; border: 1px solid #ddd; border-radius: 50%;
    width: 44px; height: 44px; font-size: 1.2rem; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10; color: #333; 
    transition: 0.3s opacity, 0.3s visibility, 0.2s background; 
}
.slider-btn:hover { background: #f4f4f4; box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
.slider-btn.left { left: 2vw; }
.slider-btn.right { right: 2vw; }


.slider-btn.hidden-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
}

@media (max-width: 768px) {
    .slider-btn { display: none; }

    .about-team-banner {
        min-height: 40vh; 
        padding: 40px 20px; 
    }
}

/* ========== 24/7 ========== */
.banner-247 { 
    height: 78vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-align: center; 
}

/* Прибираємо великий напівпрозорий фон і вибудовуємо елементи в колонку */
.banner-247-box { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Відстань між написом і кнопкою */
}

/* Чорний фон тепер лише навколо тексту, а шрифт менш жирний */
.banner-247 h2 { 
    font-size: clamp(2.2rem, 4.8vw, 3.8rem); 
    font-weight: 600; /* Було 800, тепер тонше */
    background: #000; /* Чільний чорний фон */
    padding: 8px 24px; /* Відступи всередині чорного фону */
    border-radius: 8px; /* Легке заокруглення фону тексту */
    margin: 0; 
}

/* Оновлена кнопка: більша, кругліша, тонший шрифт */
.btn-white { 
    display: inline-block; 
    background: #fff; 
    color: #000; 
    padding: 16px 45px; /* Більші відступи роблять кнопку масивною */
    font-size: 0.9rem; /* Трохи більший текст */
    font-weight: 500; /* Тонший шрифт на кнопці */
    text-decoration: none; 
    border-radius: 10px; /* Повністю круглі краї (форма пігулки) */
    transition: 0.2s ease-in-out;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05); /* Ефект легкого збільшення при наведенні */
}

/* ========== FAQ (більший заголовок) ========== */
.faq-section { background: #fff; padding: 50px 5vw 60px; }
.faq-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    max-width: 1000px;
    margin: 0 auto 28px;
}
.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-item { border-top: 1px solid #e3e3e3; }
.faq-item:last-child { border-bottom: 1px solid #e3e3e3; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; text-align: left; padding: 16px 4px; font-size: 1.4rem; cursor: pointer; color: #222; }
.faq-q .arrow { transition: transform .3s; font-size: .75rem; color: #777; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; font-size: .88rem; color: #555; line-height: 1.7; padding: 0 4px; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 18px; }

/* ========== HOTEL ========== */
.hotel-section { min-height: 74vh; display: flex; justify-content: space-between; align-items: flex-end; padding: 60px 6vw; color: #fff; gap: 40px; }
.hotel-left small { display: block; font-size: .72rem; letter-spacing: 1.5px; margin-bottom: 8px; }
.hotel-left h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; margin-bottom: 20px; }
.hotel-link {
    display: inline-block; font-size: .8rem; font-weight: 700; text-decoration: none;
    border: 1px solid #fff; padding: 10px 26px; border-radius: 4px; transition: .3s;
}
.hotel-link:hover { background: #fff; color: #000; }
.hotel-desc { max-width: 420px; font-size: .92rem; line-height: 1.65; }

/* ========== ПЕРЕВАГИ (трохи жирніші заголовки) ========== */
.features-section { background: #f4f4f4; padding: 60px 5vw; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.feature h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.feature p { font-size: .95rem; color: #555; line-height: 1.65; }

/* ========== ВІДГУКИ (більші) ========== */
.reviews-section { background: #fff; padding: 50px 0; display: flex; gap: 24px; align-items: stretch; width: 100%; }
.reviews-summary { flex: 0 0 150px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 6px; padding-left: 5vw; }
.reviews-summary strong { font-size: 1.15rem; }
.stars { color: #f8b400; letter-spacing: 1px; font-size: 1.05rem; }
.reviews-summary small { font-size: .75rem; color: #555; }
.google-logo { font-size: 1.15rem; }
.reviews-viewport { flex: 1; overflow: hidden; padding-right: 5vw; }
.reviews-grid { display: flex; gap: 18px; overflow-x: hidden; scroll-behavior: auto; }
.review-card { flex: 0 0 270px; background: #f4f4f4; border-radius: 8px; padding: 20px; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: #a0522d; color: #fff; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta strong { display: block; font-size: .82rem; }
.review-meta small { font-size: .7rem; color: #777; }
.review-card .stars { font-size: .85rem; margin-bottom: 8px; }
.review-text { font-size: .8rem; color: #333; line-height: 1.55; }
.review-more { font-size: .72rem; color: #888; margin-top: 8px; display: inline-block; }

/* ========== МЕГА WHATSAPP ========== */
.mega-whatsapp { display: flex; justify-content: center; align-items: center; background: #fff; text-decoration: none; color: #000; width: 100%; overflow: hidden; }
.mega-text { background: #efede8; padding: 3vw 3vw; display: flex; align-items: center; }
.mega-text h1 { font-size: clamp(2.2rem, 6.5vw, 8rem); line-height: .92; font-weight: 800; letter-spacing: -.04em; text-align: right; }
.mega-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 3vw; }
.huge-wa-icon { width: clamp(120px, 24vw, 380px); height: auto; fill: #000; }
.mega-logo h1 { font-size: clamp(2rem, 5.5vw, 7rem); font-weight: 800; letter-spacing: -.04em; margin-top: -10px; }

/* ========== RECOVER ========== */
.recover-banner { height: 78vh; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 0 20px; }
.recover-banner h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; margin-bottom: 22px; }
.btn-outline-thin { 
    border: 1px solid #fff; 
    color: #fff; 
    padding: 18px 30px; 
    font-size: 0.9rem; 
    font-weight: 400; 
    letter-spacing: 0.5px; 
    text-decoration: none; 
    transition: 0.3s ease-in-out; 
    border-radius: 15px; 
}

.btn-outline-thin:hover { 
    background: #fff; 
    color: #000; 
}

/* ========== ФУТЕР (більший текст) ========== */
.dark-footer { background: #2b2b2b; color: #fff; padding: 60px 6vw 50px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.newsletter h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.newsletter p {
    font-size: 1rem;
    color: #ccc;
    max-width: 420px;
    line-height: 1.65;
}
.subscribe-form { display: flex; border: 1px solid #666; border-radius: 30px; overflow: hidden; width: 100%; max-width: 520px; }
.subscribe-form input { background: transparent; border: none; color: #fff; padding: 14px 20px; width: 100%; outline: none; font-size: .95rem; }
.subscribe-form button { background: transparent; border: none; color: #fff; padding: 0 18px; cursor: pointer; font-size: 1.15rem; }
.footer-divider { height: 1px; background: #fff; margin: 32px 0 22px; opacity: .8; }
.footer-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 18px;
}
.footer-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 28px;
    font-size: .92rem;
    color: #ccc;
    margin-bottom: 48px;
}
.footer-services-grid a { color: #ccc; text-decoration: none; }
.footer-services-grid a:hover { color: #fff; }
.footer-main-info h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; margin-bottom: 10px; }
.footer-tagline { font-size: 1.1rem; font-weight: 700; margin-bottom: 34px; }
.footer-contacts { display: flex; flex-direction: column; gap: 24px; }
.footer-contacts h4 { font-size: 1.55rem; font-weight: 400; margin-bottom: 12px; }
.office-block h4 { font-size: 1.1rem; font-weight: 700; }
.contact-block .dynamic-phone { font-size: 1.55rem; font-weight: 700; margin-bottom: 8px; }
.contact-block .dynamic-email { font-size: .95rem; }
.office-block p { font-size: .9rem; color: #ccc; }

/* ========== FLOAT WHATSAPP ========== */
.float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: #25d366;
    color: #fff;
    padding: 15px 24px;              
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;                 
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.25s, box-shadow 0.25s;
    animation: wa-pulse 2.2s infinite;
}

.float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 9px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.float-wa svg {
    width: 26px;                   
    height: 26px;
}


@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.09);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
    }
}

/* ========== СТОРІНКА MASSAGE SERVICES ========== */
.page-hero { 
    padding: 90px 5vw 30px; 
    background: #fff; 
}

.page-hero h1 { 
    max-width: 1200px; 
    margin: 0 auto;   
    text-align: left;  
    font-size: clamp(2.2rem, 4.5vw, 3.4rem); 
    font-weight: 700; 
    text-transform: uppercase;
}


.full-services-section { background: #fff; padding: 40px 5vw 70px; }


.full-services-grid { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}


.full-service-card { 
    background: transparent; 
    border-radius: 0; 
    box-shadow: none; 
    display: flex; 
    flex-direction: column; 
}


.card-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    margin-bottom: 12px;
}


.card-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.card-img-wrap:hover img {
    transform: scale(1.05);
}


.full-service-text { 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}

.full-service-text h3 { 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: #422904; 
}

.full-service-price { 
    font-size: 1.3rem; 
    font-weight: 500; 
    color: #422904; 
}


@media (max-width: 1024px) {
    .full-services-grid { grid-template-columns: repeat(3, 1fr); gap: 40px;}
}
@media (max-width: 768px) {
    .full-services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 480px) {
    .full-services-grid { grid-template-columns: 1fr; gap: 40px;}
}

/* ========== СТОРІНКА ABOUT US ========== */
.about-hero { text-align: center; padding: 90px 8vw 50px; background: #fff; }
.about-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 12px; }
.about-hero h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; color: #444; }
.about-hero p { max-width: 720px; margin: 0 auto; font-size: 1rem; line-height: 1.7; color: #444; }

.about-team-banner { min-height: 65vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 20px; }
.about-team-banner h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.about-team-banner p { max-width: 600px; margin: 0 auto 22px; font-size: 1rem; }

.about-grad-section { text-align: center; padding: 40px 8vw; background: #f4f4f4; }
.about-grad-section h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 18px; }
.about-grad-section p { max-width: 700px; margin: 0 auto; font-size: 1rem; line-height: 1.7; color: #444; }

.about-signature, .about-events { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; padding: 80px 8vw; background: #fff; }
.about-events { background: #f4f4f4; }
.about-signature img { width: 100%; max-width: 480px; border-radius: 8px; object-fit: cover; aspect-ratio: 4/3; }
.about-signature .text, .about-events .text { flex: 1; min-width: 280px; }
.about-signature h2, .about-events h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; margin-bottom: 18px; }
.about-signature .text div, .about-events .text div { font-size: .95rem; line-height: 1.8; color: #444; margin-bottom: 20px; }

/* ========== СТОРІНКА CONTACT ========== */
.contact-form-section { max-width: 700px; margin: 0 auto; padding: 20px 5vw 80px; }
.contact-form-section h2 { text-align: center; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-form-row input { flex: 1; min-width: 200px; }
.contact-form input, .contact-form textarea {
    padding: 14px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: .95rem;
    background: #fafafa; font-family: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; }
.contact-form-msg { font-size: .85rem; color: #b00020; }
.contact-form-msg.success { color: #1a7d34; }

.contact-email-section { text-align: center; padding: 70px 5vw; background: #f4f4f4; }
.contact-email-section h2 { font-size: 3.1rem; font-weight: 700; margin-bottom: 10px; }
.dynamic-email-big { font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; }
.contact-email-section p:last-child { color: #555; font-size: .95rem; }

/* ========== АДАПТИВ ========== */
@media (max-width: 900px) {
    .full-services-grid { grid-template-columns: 1fr; }
    .about-signature, .about-events { padding: 60px 6vw; }
}

.mobile-menu-btn, .close-menu-btn, .mobile-overlay { 
    display: none; 
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5vw;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        display: flex;
        background: none;
        border: none;
        color: #111;
        cursor: pointer;
        padding: 4px;
        margin-right: 12px;
    }
    
    .logo {
        margin-right: auto;
        font-size: 1rem;
        margin-left: -20px;
    }

    .lang-switch {
        margin-left: 0;
    }

    .mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        transition: 0.3s ease;
    }

    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 92vw;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 6vw 40px;
        gap: 25px;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        margin: 0;
    }

    .main-nav.open {
        left: 0;
    }

    .close-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        font-weight: 300;
        color: #111;
        cursor: pointer;
    }

    .nav-link, .nav-link.mobile-title {
        font-size: 1.6rem;
        font-weight: 600;
        color: #222;
        padding: 0;
    }

    .nav-item-dropdown {
        width: 100%;
        margin: 5px 0;
    }

    .dropdown-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 15px 0 0 15px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mega-menu-list a {
        font-size: 1rem;
        padding: 7px 0;
        color: #444;
        font-weight: 500;
    }

    .mega-menu-cards {
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 15px;
        scrollbar-width: none;
    }
    
    .mega-menu-cards::-webkit-scrollbar { 
        display: none; 
    }

    .mega-card {
        width: 130px;
        flex-shrink: 0;
    }

    .mega-card img {
        height: 95px;
        border-radius: 6px;
    }
    
    .mega-card h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .video-wrap {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }
    .video-media {
        flex: none;
        width: 100%;
        border-radius: 0;
    }
    .video-caption {
        padding: 0 0vw;
        font-size: clamp(2.2rem, 7vw, 2.5rem);
        font-weight: 750;
        line-height: 1.1;
    }
    .features-grid { grid-template-columns: 1fr; }
    .reviews-section { flex-direction: column; }
    .reviews-summary { padding-left: 0; flex: none; padding-bottom: 20px; }
    .reviews-viewport { padding-right: 0; padding-left: 5vw; }
    .hotel-section { flex-direction: column; align-items: flex-start; justify-content: flex-end; }
    .contact-form-row { flex-direction: column; }
    
    .mega-whatsapp { flex-direction: column-reverse; }
    .mega-text { width: 100%; padding: 12vw 4vw; display: flex; justify-content: flex-end; box-sizing: border-box; }
    .mega-text h1 { text-align: right; font-size: 16vw; line-height: 0.8; width: 100%; font-weight: 700; letter-spacing: -1px; margin: 0; overflow-wrap: break-word; }
    .mega-logo { width: 100%; padding: 15vw 5vw; box-sizing: border-box; }
    .huge-wa-icon { width: 56vw; }
    .mega-logo h1 { font-size: 19vw; margin-top: 15px; font-weight: 700; letter-spacing: -2px; }
}

html, body {
    overflow-x: hidden;
}

/* ========== ОКРЕМА СТОРІНКА ПОСЛУГИ (service.html) ========== */
.single-service-section {
    max-width: 1200px;
    margin: 60px auto 100px;
    padding: 0 5vw;
    display: flex;
    gap: 60px;
    align-items: flex-start; /* Щоб лівий блок міг "прилипати" */
    min-height: 60vh;
}

.service-detail-left {
    flex: 1;
    position: sticky;
    top: 100px; /* Фото зупиняється під шапкою під час скролу */
}

.service-detail-left img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 10px;
}

.service-detail-right h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
}

/* Кнопки ціни */
.price-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-option {
    padding: 18px 24px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 8px;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.price-option:hover {
    border-color: #000;
}

.price-option.active {
    border-color: #000;
    border-width: 2px;
    padding: 17px 23px; 
}

/* Кнопка Book Now */
.btn-block {
    display: block;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-block:hover {
    background: #333;
}

/* Опис послуги */
.service-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Адаптив для телефонів */
@media (max-width: 900px) {
    .single-service-section {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto 60px;
    }
    .service-detail-left {
        position: static; /* На мобілках фото не прилипає */
    }
}


@media (max-width: 768px) {
    .banner-247 h2 {
        font-size: 1.8rem; 
        white-space: nowrap; 
        padding: 8px 16px; 
    }
}

.footer-extra-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 34px;
}
.footer-area, .footer-hours {
    flex: 1;
    min-width: 220px;
}
.footer-area h4, .footer-hours h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.footer-area p, .footer-hours p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    white-space: pre-line;
}
.footer-tagline { 
    margin-bottom: 24px; 
}

@media (max-width: 768px) {
    .recover-banner.bg-section {
        background-position: 65% center; 
    }
}
