/* ============================================
   AKSARAY BANQUET — Премиальный светлый дизайн
   Стиль: Shyngys Han (Tilda-like)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --gold: #a5886d;
    --gold-hover: #b29e6c;
    --gold-light: #c5a97d;
    --dark: #1a1a1a;
    --dark-bg: #111111;
    --white: #ffffff;
    --light-bg: #f9f7f4;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #999999;
    --border-light: rgba(0,0,0,0.08);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====== RESET ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

/* ====== НАВИГАЦИЯ ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-phone,
.navbar.scrolled .nav-phone a {
    color: var(--text-dark);
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.4s ease;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: color 0.4s ease;
}

.nav-phone a:hover {
    color: var(--gold);
}

.nav-socials {
    display: flex;
    gap: 10px;
}

.nav-socials a {
    color: var(--white);
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.nav-socials a:hover {
    opacity: 1;
    color: var(--gold);
}

.navbar.scrolled .nav-socials a {
    color: var(--text-dark);
}

.btn-book {
    display: inline-block;
    padding: 10px 28px;
    background-color: var(--gold);
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    background-color: var(--gold-hover);
    transform: translateY(-1px);
}

/* Гамбургер */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
}

.hero-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ====== СЕКЦИИ ====== */
.section {
    padding: 100px 5%;
}

.section-light {
    background: var(--white);
}

.section-cream {
    background: var(--light-bg);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.separator::before,
.separator::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 15px;
}

.separator-icon {
    color: var(--gold);
    font-size: 16px;
}

/* ====== SPLIT LAYOUT (50/50) ====== */
.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-text p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* ====== КАРТОЧКИ УСЛУГ ====== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

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

.card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.card-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ====== СЛАЙДЕР-КАРУСЕЛЬ ГАЛЕРЕИ ====== */
.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Стрелки */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Точки */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(165, 136, 109, 0.5);
}

/* ====== КАТАЛОГ БЛЮД ====== */
.catalog-header {
    margin-bottom: 30px;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
}

.catalog-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

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

.catalog-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.catalog-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.catalog-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--light-bg);
}

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

.catalog-card:hover .catalog-card-img img {
    transform: scale(1.06);
}

.catalog-card-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.catalog-card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ====== ФОРМА БРОНИРОВАНИЯ ====== */
.booking-section {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('./аксарай/IMG_9108.JPG') center/cover no-repeat;
    padding: 100px 5%;
    color: var(--white);
    text-align: center;
}

.booking-section .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.booking-section .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    text-align: left;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Слайдер гостей */
.slider-container {
    text-align: left;
}

.slider-container label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.slider-container label span {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.guest-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.guest-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.guest-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--white);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}

.btn-submit {
    padding: 16px 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 136, 109, 0.3);
}

/* ====== СТРАНИЦА МЕНЮ ====== */
.menu-hero {
    position: relative;
    height: 55vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.menu-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.menu-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
}

.menu-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Меню пакет */
.menu-package {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.menu-package-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-package-header h3 {
    font-size: 1.5rem;
}

.menu-price-tag {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}

.menu-price-tag small {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
}

.menu-package-body {
    padding: 40px;
}

.menu-category {
    margin-bottom: 30px;
}

.menu-category h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 15px;
}

.menu-items-list {
    display: grid;
    gap: 8px;
}

.menu-items-list li {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-gray);
    padding-left: 20px;
    position: relative;
}

.menu-items-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.menu-extras {
    background: var(--light-bg);
    padding: 25px 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.menu-extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.menu-extra-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.menu-extra-item b {
    color: var(--text-dark);
}

/* ====== СТРАНИЦА КОНТАКТОВ ====== */
.contacts-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
}

.contacts-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-block i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-block p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Кнопки контактов */
.contact-actions {
    max-width: 600px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: white;
}

.contact-action-btn i:first-child {
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-call { background: linear-gradient(135deg, #222, #444); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.btn-instagram { background: linear-gradient(135deg, #E1306C, #C13584, #833AB4); }

/* Карта */
.map-section {
    width: 100%;
    height: 400px;
    background: var(--light-bg);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.5);
    padding: 50px 5%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ====== FLOATING WIDGETS ====== */
.floating-widgets {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.widget-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    color: white;
}

.whatsapp-widget { background: #25D366; }
.call-widget { background: var(--gold); }

/* ====== АНИМАЦИИ ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== intl-tel-input ====== */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    padding: 2px;
}

.iti__country-list {
    color: #333;
    background-color: #fff;
    border-radius: 4px;
    max-height: 250px;
}

.iti__selected-dial-code {
    color: var(--white);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .split-text {
        padding: 40px;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Навигация */
    .navbar {
        padding: 0 20px;
        height: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-center {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 999;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 3px;
        color: var(--white) !important;
    }

    .nav-right {
        display: none;
    }

    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 14px 35px;
        font-size: 11px;
    }

    /* Секции */
    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Split */
    .split-block {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 300px;
    }

    .split-text {
        padding: 40px 25px;
    }

    .split-text h2 {
        font-size: 1.7rem;
    }

    /* Карточки */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card {
        height: 300px;
    }

    /* Слайдер-галерея */
    .slide img {
        height: 300px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    /* Каталог */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .catalog-title {
        font-size: 2rem;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* Бронирование */
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Футер */
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Контакты */
    .contact-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Меню */
    .menu-package-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-extras {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Виджеты */
    .floating-widgets {
        bottom: 15px;
        right: 15px;
    }

    .widget-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .menu-hero h1 {
        font-size: 2rem;
    }

    .contacts-hero h1 {
        font-size: 2rem;
    }
}
