/* Villa Tsaritsa - Premium Magical CSS */
/* Color Palette */
:root {
    --primary-dark-teal: #2a5f5e;
    --primary-teal-metallic: #3d7a78;
    --primary-purple: #8b5a8c;
    --primary-purple-light: #a678a8;
    --accent-gold: #d4af37;
    --dark-bg: #0a1612;
    --dark-overlay: rgba(10, 22, 18, 0.9);
    --light-text: #f5f5f0;
    --gray-text: #b8b8b0;
    --gradient-primary: linear-gradient(135deg, #2a5f5e 0%, #8b5a8c 100%);
    --gradient-magical: linear-gradient(45deg, #2a5f5e, #3d7a78, #8b5a8c, #a678a8);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.magic-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.wand {
    width: 4px;
    height: 60px;
    background: var(--gradient-primary);
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
    animation: wandWave 2s ease-in-out infinite;
}

@keyframes wandWave {
    0%, 100% { transform: translateX(-50%) rotate(45deg); }
    50% { transform: translateX(-50%) rotate(-45deg); }
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: sparkle 1.5s linear infinite;
}

.sparkles span:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.sparkles span:nth-child(2) { top: 50%; right: 0; animation-delay: 0.5s; }
.sparkles span:nth-child(3) { bottom: 0; left: 50%; animation-delay: 1s; }

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

.loading-text {
    color: var(--primary-purple-light);
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 5px;
    background: rgba(42, 95, 94, 0.2);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 25px;
    border: 1px solid rgba(139, 90, 140, 0.3);
}

.lang-btn {
    padding: 8px 15px;
    background: transparent;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--light-text);
}

.lang-btn:hover:not(.active) {
    color: var(--primary-purple-light);
}

/* Magical Cursor */
.magic-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--primary-purple-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 22, 18, 0);
    backdrop-filter: blur(0);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 22, 18, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper a {
    display: block;
    line-height: 0;
}

.logo {
    width: auto;
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1) contrast(1.1);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-purple-light);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ============================================
   VIDEO BACKGROUND ENHANCEMENTS
   Полупрозрачное видео с мистическими эффектами
============================================ */

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    
    /* Полупрозрачность и эффекты */
    opacity: 0.45;
    filter: brightness(0.75) contrast(1.1) saturate(1.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    /* Мистичный градиент с улучшенными эффектами */
    background: 
        /* Светящие мистические точки */
        radial-gradient(
            circle at 25% 30%,
            rgba(138, 43, 226, 0.12) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 75% 70%,
            rgba(75, 0, 130, 0.15) 0%,
            transparent 40%
        ),
        /* Основной цветной градиент */
        linear-gradient(
            135deg, 
            rgba(42, 95, 94, 0.65) 0%, 
            rgba(139, 90, 140, 0.55) 50%,
            rgba(10, 10, 10, 0.7) 100%
        ),
        /* Затемнение сверху и снизу */
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.5) 0%,
            transparent 25%,
            transparent 75%,
            rgba(10, 10, 10, 0.8) 100%
        );
    
    /* Плавная анимация */
    animation: mysticalPulse 8s ease-in-out infinite;
}

@keyframes mysticalPulse {
    0%, 100% { 
        opacity: 0.9;
    }
    50% { 
        opacity: 1;
    }
}

/* Дополнительный мистичный слой */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(
            circle at 50% 50%,
            rgba(186, 85, 211, 0.08) 0%,
            transparent 50%
        );
    animation: mysticalGlow 6s ease-in-out infinite alternate;
}

@keyframes mysticalGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Оптимизация для мобильных устройств */
/* Standard Tablets & Phones (768px and below) */
@media (max-width: 768px) {
    .bg-video {
        opacity: 0.3; /* Меньше прозрачность на мобильных */
        filter: brightness(0.6) contrast(1.0);
    }
}
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.magical-title {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 400;
    letter-spacing: 0px;
    margin-bottom: 20px;
    color: #ffffff;
    animation: elegantAppear 2s ease-out forwards;
    text-shadow: 
        0 0 50px rgba(255, 255, 255, 0.9),
        0 0 90px rgba(212, 175, 55, 0.7),
        5px 5px 25px rgba(0, 0, 0, 1),
        -2px -2px 18px rgba(0, 0, 0, 0.95),
        0 0 120px rgba(255, 215, 0, 0.5);
    -webkit-text-stroke: 0px;
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.9))
            drop-shadow(6px 6px 25px rgba(0, 0, 0, 1));
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    width: 100%;
}

/* Simplified title structure - no letter animations */

@keyframes elegantAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed letterWrite animation - no longer needed */

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8))
                drop-shadow(5px 5px 20px rgba(0, 0, 0, 1));
        text-shadow: 
            0 0 40px rgba(255, 255, 255, 0.8),
            0 0 80px rgba(212, 175, 55, 0.6),
            4px 4px 20px rgba(0, 0, 0, 1),
            -2px -2px 15px rgba(0, 0, 0, 0.9),
            0 0 100px rgba(255, 215, 0, 0.4);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 1))
                drop-shadow(5px 5px 25px rgba(0, 0, 0, 1));
        text-shadow: 
            0 0 60px rgba(255, 255, 255, 1),
            0 0 120px rgba(212, 175, 55, 0.9),
            4px 4px 25px rgba(0, 0, 0, 1),
            -2px -2px 20px rgba(0, 0, 0, 0.9),
            0 0 140px rgba(255, 215, 0, 0.6);
    }
}

.hero-subtitle {
    display: none; /* Скрыт по запросу */
}

/* Hero Quote Block - Book Style Quote */
.hero-quote {
    max-width: 850px;
    margin: 30px auto 50px auto;
    padding: 0 40px;
    position: relative;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.quote-icon {
    display: none;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--light-text);
    text-align: center;
    text-shadow: 
        2px 2px 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

/* Подпись справа как в книге */
.quote-signature {
    text-align: center;
    margin-top: 20px;
    padding-right: 0;
}

.signature-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--accent-gold);
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9),
                 0 0 20px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0 auto;
    max-width: fit-content;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(10, 22, 18, 0.85);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(139, 90, 140, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(139, 90, 140, 0.7);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(139, 90, 140, 0.5),
                0 0 30px rgba(212, 175, 55, 0.4);
}

.feature-card i {
    font-size: 22px;
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.feature-card span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--light-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Hero CTA Button */
.hero-cta {
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-purple-light);
    border-radius: 13px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-purple-light);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.btn-hero-book {
    display: inline-block;
    padding: 16px 52px;
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    color: #0a1612;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 30px rgba(212,175,55,0.5);
    transition: all 0.3s ease;
}

.btn-hero-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212,175,55,0.7);
    background: linear-gradient(135deg, #f0c040, var(--accent-gold));
}

.scroll-indicator p {
    font-size: 14px;
    color: var(--gray-text);
    letter-spacing: 1px;
}

/* Floating Orbs */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 90, 140, 0.4), transparent);
    filter: blur(2px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -100px;
    animation: floatOrb 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: floatOrb 25s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Section Commons */
section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.magic-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.magic-line::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(10, 22, 18, 0.95), rgba(42, 95, 94, 0.2));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--light-text);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(139, 90, 140, 0.1);
    border: 1px solid rgba(139, 90, 140, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 90, 140, 0.2);
}

.stat-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin: 0;
}

/* Rooms Section */
.rooms-section {
    background: var(--dark-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background: linear-gradient(135deg, rgba(42, 95, 94, 0.1), rgba(139, 90, 140, 0.1));
    border: 1px solid rgba(139, 90, 140, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 90, 140, 0.4);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.btn-explore {
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 90, 140, 0.4);
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.room-price strong {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
}

.room-amenities {
    list-style: none;
}

.room-amenities li {
    padding: 8px 0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-amenities i {
    color: var(--primary-purple-light);
    font-size: 14px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(10, 22, 18, 0.95), rgba(42, 95, 94, 0.1));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(139, 90, 140, 0.1);
    border: 1px solid rgba(139, 90, 140, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 90, 140, 0.2);
    box-shadow: 0 20px 50px rgba(139, 90, 140, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.service-icon i {
    font-size: 35px;
    color: var(--light-text);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(139, 90, 140, 0.3);
    color: var(--gray-text);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 90, 140, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 30px;
    color: var(--light-text);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, rgba(42, 95, 94, 0.1), rgba(139, 90, 140, 0.1));
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    min-width: 0;
}

.booking-content > * {
    min-width: 0;
    overflow: visible;
}

.booking-form-wrapper {
    background: rgba(10, 22, 18, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(139, 90, 140, 0.2);
}

/* Sirvoy widget wrapper — убираем лишние отступы */
.booking-form-wrapper.sirvoy-wrapper {
    padding: 20px;
    min-height: 500px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width,
.form-row-2.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--light-text);
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 20px;
    background: rgba(42, 95, 94, 0.2);
    border: 1px solid rgba(139, 90, 140, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(139, 90, 140, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    grid-column: span 2;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 90, 140, 0.4);
}

.booking-info {
    padding: 20px 10px;
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.booking-info p {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--accent-gold);
}

/* contact-quick — defined in Direct Booking Module styles below */

/* Offers Section */
.offers-section {
    background: var(--dark-bg);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.offer-card {
    background: linear-gradient(135deg, rgba(42, 95, 94, 0.1), rgba(139, 90, 140, 0.1));
    border: 1px solid rgba(139, 90, 140, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 90, 140, 0.4);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    z-index: 2;
}

.offer-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.offer-badge-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
    padding: 20px 18px 12px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 25px 30px 30px;
}

.offer-price {
    font-family: 'Cinzel', serif;
    font-size: 2rem !important;
    color: var(--accent-gold) !important;
    margin-bottom: 10px !important;
    font-weight: 700;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.offer-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-includes {
    list-style: none;
    margin-bottom: 25px;
}

.offer-includes li {
    padding: 8px 0;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-includes i {
    color: var(--accent-gold);
    font-size: 14px;
}

.btn-offer {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 90, 140, 0.4);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(10, 22, 18, 0.95), rgba(42, 95, 94, 0.2));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 90, 140, 0.2);
    border-radius: 10px;
    color: var(--primary-purple-light);
    font-size: 20px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--light-text);
}

.info-item p {
    color: var(--gray-text);
}

.info-item a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-purple-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 90, 140, 0.2);
    border: 1px solid rgba(139, 90, 140, 0.3);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) opacity(0.8);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) opacity(1);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(139, 90, 140, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-column p {
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--primary-purple-light);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(42, 95, 94, 0.2);
    border: 1px solid rgba(139, 90, 140, 0.3);
    border-radius: 50px 0 0 50px;
    color: var(--light-text);
}

.newsletter-form input::placeholder {
    color: var(--gray-text);
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 90, 140, 0.1);
    color: var(--gray-text);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 90, 140, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(139, 90, 140, 0.5);
    border: none;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gradient-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Responsive Design */

/* Large Tablets & Small Laptops (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        padding: 0 40px;
        max-width: 100%;
    }

    .nav-menu {
        gap: 30px;
    }

    .about-content,
    .contact-content {
        gap: 40px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Tablets & iPad (1024px and below) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3rem, 10vw, 7rem);
        gap: clamp(12px, 2.5vw, 25px);
        justify-content: center;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 22, 18, 0.98);
        width: 100%;
        height: 100vh;
        padding: 100px 30px 30px;
        transition: left 0.4s ease;
        backdrop-filter: blur(20px);
        overflow-y: auto;
        z-index: 999;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(139, 90, 140, 0.2);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(139, 90, 140, 0.1);
        padding-left: 30px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content,
    .contact-content,
    .booking-content {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        justify-content: center;
        padding: 0 20px;
    }

    .feature-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .rooms-grid,
    .services-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        gap: 20px;
    }
}

/* Small Tablets & Large Phones (900px and below) */
@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }

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

    .stat-card {
        padding: 25px 15px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .offer-content,
    .room-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 50px;
        max-width: 160px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 5rem);
        letter-spacing: 1px;
        gap: clamp(10px, 2vw, 20px);
        justify-content: center;
        text-shadow: 
            0 0 40px rgba(255, 255, 255, 0.95),
            0 0 70px rgba(212, 175, 55, 0.8),
            4px 4px 20px rgba(0, 0, 0, 1),
            -2px -2px 15px rgba(0, 0, 0, 0.95),
            0 0 100px rgba(255, 215, 0, 0.6);
    }

    .hero-quote {
        padding: 0 20px;
        margin: 30px auto;
        text-align: center;
    }

    .quote-signature {
        text-align: center;
        padding-right: 0;
    }

    .hero-features {
        justify-content: center;
    }

    .quote-text {
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: center;
    }

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

    .booking-form {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .offers-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 20px auto 0;
    }

    .contact-map {
        height: 350px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Large Phones (600px and below) */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 12px 20px;
    }

    .feature-card i {
        font-size: 20px;
    }

    .feature-card span {
        font-size: 0.9rem;
    }

    .room-price strong {
        font-size: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

    .booking-info {
        padding: 30px 20px;
    }

    .contact-quick {
        padding: 25px 20px;
    }

    .gallery-item {
        height: 220px;
    }
}

/* Standard Phones (480px and below) */
@media (max-width: 480px) {
    .logo {
        height: 40px;
        max-width: 140px;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 0.5px;
        gap: clamp(8px, 1.5vw, 15px);
        justify-content: center;
        text-shadow: 
            0 0 35px rgba(255, 255, 255, 1),
            0 0 60px rgba(212, 175, 55, 0.85),
            4px 4px 18px rgba(0, 0, 0, 1),
            -2px -2px 12px rgba(0, 0, 0, 0.95),
            0 0 85px rgba(255, 215, 0, 0.65);
    }

    .hero-quote {
        padding: 0 15px;
        margin: 25px auto;
        text-align: center;
    }

    .quote-signature {
        text-align: center;
        padding-right: 0;
    }
    
    .signature-name {
        font-size: 1.5rem;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .feature-card {
        padding: 12px 20px;
        justify-content: center;
    }

    .feature-card span {
        font-size: 0.85rem;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

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

    .nav-container {
        padding: 0 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 4px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .about-text p,
    .lead-text {
        font-size: 1rem;
    }

    .room-card,
    .offer-card,
    .service-card {
        border-radius: 12px;
    }

    .room-content,
    .offer-content {
        padding: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .booking-form-wrapper,
    .booking-info,
    .contact-quick {
        padding: 25px 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 15px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 0.9rem;
    }

    .newsletter-form input {
        padding: 10px 15px;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 10px 20px;
    }

    .contact-map {
        height: 300px;
    }

    .gallery-item {
        height: 200px;
    }
}

/* Small Phones (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: clamp(1.9rem, 7.5vw, 3rem);
    }

    .quote-text {
        font-size: 0.92rem;
        line-height: 1.65;
        text-align: center;
    }

    .signature-name {
        font-size: 1.4rem;
    }

    .feature-card {
        padding: 10px 18px;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .room-amenities li,
    .offer-includes li,
    .benefits-list li {
        font-size: 0.9rem;
    }

    .filter-btn {
        padding: 7px 15px;
        font-size: 13px;
    }

    .contact-map {
        height: 280px;
    }
}

/* Very Small Phones (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        gap: clamp(6px, 1vw, 10px);
    }

    .hero-content {
        padding: 0 10px;
        margin: 0 auto;
    }

    .quote-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .feature-card {
        padding: 10px 15px;
    }

    .hero-content {
        padding: 0 10px;
    }

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

    .service-card h3,
    .room-content h3,
    .offer-content h3 {
        font-size: 1.2rem;
    }

    .stat-icon {
        font-size: 35px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .contact-map {
        height: 250px;
    }

    .gallery-item {
        height: 180px;
    }

    .booking-form-wrapper,
    .booking-info {
        padding: 20px 15px;
    }
}

/* ============================================
   DIRECT BOOKING MODULE — Вила Царица
   ============================================ */

/* Direct booking banner */
.direct-booking-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    letter-spacing: 0.3px;
}
.direct-booking-banner i { font-size: 1rem; }

/* Form 2-column rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Room availability indicator */
.room-avail {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
    font-weight: 500;
}
.room-avail.ok      { background: rgba(76,175,80,0.12); color: #81c784; border-left: 3px solid #4caf50; }
.room-avail.warning { background: rgba(255,152,0,0.12); color: #ffb74d; border-left: 3px solid #ff9800; }
.room-avail.urgent  { background: rgba(244,67,54,0.12); color: #ef9a9a; border-left: 3px solid #f44336; animation: pulse-avail 1.5s ease-in-out infinite; }

@keyframes pulse-avail {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
}

/* Live price panel */
.price-panel {
    background: linear-gradient(135deg, rgba(42,95,94,0.25), rgba(139,90,140,0.15));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 8px 0 16px;
    font-family: 'Inter', sans-serif;
}
.price-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.price-breakdown { display: flex; flex-direction: column; gap: 6px; }
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-text);
}
.discount-row .discount-label { color: #81c784; font-size: 0.85rem; }
.discount-row .discount-amount { color: #81c784; font-weight: 600; }
.price-divider { height: 1px; background: rgba(212,175,55,0.2); margin: 6px 0; }
.total-row { font-size: 1rem; color: var(--light-text); }
.price-total { font-size: 1.4rem; color: var(--accent-gold); font-weight: 700; }

/* OTA savings comparison */
.ota-comparison {
    margin-top: 12px;
    padding: 12px;
    background: rgba(76,175,80,0.08);
    border-radius: 8px;
    border: 1px solid rgba(76,175,80,0.2);
}
.ota-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--gray-text);
    margin-bottom: 8px;
}
.ota-price { text-decoration: line-through; color: #ef9a9a; }
.savings-badge {
    background: rgba(76,175,80,0.15);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #a5d6a7;
    text-align: center;
}
.savings-badge strong { color: #81c784; font-size: 1.05rem; }

/* Upsell hint */
.upsell-hint {
    margin-top: 10px;
    padding: 8px 14px;
    background: rgba(212,175,55,0.08);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--accent-gold);
    opacity: 0.9;
}

/* Booking action buttons */
.booking-buttons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.booking-buttons .btn-submit { flex: 1; }

.btn-whatsapp-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.btn-whatsapp-book i { font-size: 1.1rem; }

.booking-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--gray-text);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Benefits list — upgraded */
.booking-info .benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 16px 0 24px;
}
.booking-info .benefits-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-gold);
}
.booking-info .benefits-list strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    color: var(--light-text);
    margin-bottom: 2px;
}
.booking-info .benefits-list p {
    font-size: 0.82rem;
    color: var(--gray-text);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Contact quick links */
.contact-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-quick h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.phone-number, .email-contact, .whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--light-text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s ease;
}
.phone-number:hover, .email-contact:hover { background: rgba(255,255,255,0.08); color: var(--accent-gold); }
.whatsapp-contact {
    background: rgba(37,211,102,0.08);
    border-color: rgba(37,211,102,0.25);
    color: #81c784;
}
.whatsapp-contact:hover { background: rgba(37,211,102,0.15); transform: translateX(4px); }
.whatsapp-contact i { font-size: 1.1rem; }

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--gray-text);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.trust-badge i { color: var(--accent-gold); font-size: 0.75rem; }

/* Floating WhatsApp FAB */
.wa-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    padding: 14px 20px 14px 16px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    user-select: none;
}
.wa-fab i { font-size: 1.5rem; }
.wa-fab:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 36px rgba(37,211,102,0.6);
}
.wa-fab-label { letter-spacing: 0.3px; }

@media (max-width: 768px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .booking-buttons { flex-direction: column; }
    .direct-booking-banner { font-size: 0.8rem; padding: 8px 16px; text-align: center; flex-wrap: wrap; }
    .trust-badges { gap: 6px; }
    .wa-fab {
        bottom: 20px;
        right: 16px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
    .wa-fab-label { display: none; }
}