

:root {
    --primary-color: #03070b;
    --accent-color: #d4af37;
    --accent-hover: #b8962e;
    --secondary-color: #111827;
    --text-color: #1f2937;
    --light-text: #f9fafb;
    --white: #ffffff;
    --off-white: #f8fafc;
    --glass: rgba(255, 255, 255, 0.9);
    --gold-gradient: linear-gradient(135deg, #d4af37, #f1d592);
    --dark-gradient: linear-gradient(180deg, rgba(3, 7, 11, 0.8) 0%, rgba(3, 7, 11, 1) 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .section-title {
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    min-height: 50px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f1d592);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    margin-top: 20px;
}

/* Header */
#main-header {
    background: var(--glass) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    backdrop-filter: blur(12px) !important;
    color: var(--primary-color) !important;
    height: 90px !important;
    max-height: 90px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

#main-header.scrolled {
    height: 70px !important;
    background: var(--white) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

#main-header.header-hidden {
    transform: translateY(-110%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Mobile Bottom Nav */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2000;
    padding: 8px 10px 25px; /* Added padding for home indicator on iOS */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
    
    #main-header {
        height: 70px !important;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    body {
        padding-bottom: 80px; /* Space for bottom nav */
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.bottom-nav-item.active {
    color: var(--accent-color);
    opacity: 1;
}

.bottom-nav-item i {
    font-size: 1.3rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#main-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 98% !important;
    max-width: 1440px !important;
    height: 80px !important;
    max-height: 80px !important;
    margin: 0 auto !important;
    gap: 20px !important;
    padding: 0 15px !important;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 220px !important;
    margin-right: 30px !important;
    position: relative;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 45px !important;
    width: auto !important;
    max-height: 45px !important;
    transition: var(--transition) !important;
    display: block !important;
    object-fit: contain !important;
}

#main-header.scrolled .logo img {
    height: 45px !important;
}

.logo span {
    color: var(--accent-color);
    font-weight: 800;
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    letter-spacing: -1px;
}

#nav-menu {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    min-width: 0;
    margin: 0 !important;
}

nav ul {
    display: flex !important;
    list-style: none !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

nav ul li {
    margin: 0 12px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem !important;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 0.8px !important;
    display: inline-block;
    padding: 12px 10px !important;
    border-bottom: 2px solid transparent !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 70%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Optimize first slide for LCP */
.hero-slider .slide.active img.hero-img-lcp {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider .slide:nth-child(2) { background-image: url('../assets/hero_rooms.webp'); }
.hero-slider .slide:nth-child(3) { background-image: url('../assets/hero_fitness.webp'); }

/* Welcome Slider */
.welcome-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.welcome-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.welcome-slider .slide.active {
    opacity: 1;
}

.welcome-slider .slide:nth-child(1) { background-image: url('../assets/hero_1.webp'); }
.welcome-slider .slide:nth-child(2) { background-image: url('../assets/hero_2.webp'); }

/* Page Heroes */
.hero-rooms { background-image: url('../assets/hero_rooms.webp') !important; }
.hero-fitness { background-image: url('../assets/hero_fitness.webp') !important; }
.hero-restaurant { background-image: url('../assets/restaurant/page_66296ee9c83df.webp') !important; }
.hero-batum { background-image: url('../assets/batumi_guide.webp') !important; }
.hero-spa { background-image: url('../assets/hero_fitness.webp') !important; }
.hero-contact { background-image: url('../assets/sky_tower_slider.webp') !important; }

.page-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}
nav ul li a.active {
    border-bottom: 2px solid var(--accent-color);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.lang-btn i {
    font-size: 0.9rem;
}

.lang-btn:hover {
    border-color: var(--accent-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--accent-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    width: 140px;
    z-index: 2000;
    overflow: hidden;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    padding: 12px 15px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f5f5f5;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f9f9f9;
    color: var(--accent-color);
}

/* Header CTA Button Refinement */
.header-cta .btn {
    padding: 8px 18px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    white-space: nowrap;
}

.header-cta .btn i {
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-top: 15vh;
    padding-bottom: 80px;
    background: #03070b; /* Solid color while image loads */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -1px;
}

/* Specific scaling for languages with longer words */
html[lang="ru"] .hero-content h1,
html[lang="ka"] .hero-content h1 {
    font-size: clamp(2rem, 7vw, 4rem);
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.hero-btns .btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.hero-btns .btn-outline:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 50px;
    gap: 40px;
}

.hero-promo-box {
    background: rgba(15, 20, 30, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 35px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero-promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #f9d976);
}

.promo-header h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.35;
    letter-spacing: 0.5px;
}

.promo-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.promo-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.promo-features li:last-child {
    margin-bottom: 0;
}

.promo-features li i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .hero-btns {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
        gap: 10px;
    }

    .hero-promo-box {
        margin: 20px auto 0;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .hero-promo-box {
        padding: 25px;
    }
    
    .promo-header h3 {
        font-size: 1.3rem;
    }

    /* Fix for overlapping header on page heroes */
    .page-hero {
        padding-top: 110px !important; /* Added safe space for fixed header */
        min-height: 380px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .page-hero p {
        font-size: 1rem !important;
        padding: 0 10px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Booking Widget Wrapper */
.booking-widget-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    z-index: 20;
}

.widget-promo {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.promo-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 0.5s ease backwards;
}

.promo-tag i {
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Booking Widget */
.booking-widget {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 30px;
    z-index: 20;
}

.widget-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget-item label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.widget-item input, .widget-item select {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-color);
    outline: none;
}

/* Trust Bar */
#trust-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 0;
    border-bottom: 3px solid var(--accent-color);
}

#trust-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid.reverse .grid-item:first-child {
    order: 2;
}

.grid-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.grid-item p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.grid-item img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

/* Room Cards Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    perspective: 1000px;
    will-change: transform, box-shadow;
}

.room-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(1deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.8s;
    pointer-events: none;
}

.room-card:hover::after {
    left: 150%;
}

.room-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.15);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.room-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
    min-height: 3.4rem; /* Standardizes height for 1 and 2 line titles */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-info p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.room-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #666;
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    flex: 1;
    padding-right: 15px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
}

.price-tag span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
}

/* Lists */
.feature-list, .luxury-list {
    margin-top: 20px;
}

.feature, .luxury-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature i, .luxury-list li::before {
    color: var(--accent-color);
}

.luxury-list li::before {
    content: '✦';
}

/* Contact Section */
.contact-box {
    margin-top: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: inline-block;
}

.phone-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.phone-number a:hover {
    color: var(--accent-color);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
}

/* Booking Widget Utilities */
.widget-btn-wrapper {
    display: flex;
    align-items: flex-end;
}

.btn-full-height {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 6px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: -40px;
    margin-bottom: 50px;
}

/* Buttons Refinement */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* SPA Section Adjustments */
.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.bg-dark .section-title::after {
    background-color: var(--accent-color);
}

.grid-item img {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

/* Footer */
footer {
    background-color: #050c16;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-grid h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.footer-payments {
    margin-top: 40px;
    text-align: center;
}

.footer-payments h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.payment-icons i {
    transition: var(--transition);
    cursor: pointer;
}

.payment-icons i:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.btn-full {
    width: 100%;
    border-radius: 0;
    padding: 18px;
    text-align: center;
}

/* Responsive *//* Page Hero */
.page-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    background-position: center;
}

.hero-home { background-image: url('../assets/hero.webp'); }
.hero-batum { background-image: url('../assets/hero.webp'); }
.hero-contact { background-image: url('../assets/hero.webp'); }
.hero-rooms { background-image: url('../assets/hero.webp'); }
.hero-spa { background-image: url('../assets/hero_fitness.webp'); }

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 12, 22, 0.7);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
@media (max-width: 1100px) {
    .booking-widget {
        grid-template-columns: repeat(2, 1fr);
        bottom: -150px;
    }
    
    .widget-btn-wrapper {
        grid-column: span 2;
    }
    
    #hero {
        margin-bottom: 150px;
    }
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .grid.reverse .grid-item:first-child {
        order: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* Responsive Fix for Menu Overlap (Tasma) */
@media (max-width: 1250px) {
    nav ul li {
        margin: 0 3px;
    }
    nav ul li a {
        padding: 8px 6px !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.4px !important;
    }
    .logo {
        flex: 0 0 180px !important;
        margin-right: 15px !important;
    }
    .logo img {
        height: 35px !important;
    }
    .lang-switcher {
        margin-left: 8px;
    }
    .header-cta .btn {
        padding: 8px 10px;
        font-size: 0.68rem;
    }
}

@media (max-width: 1180px) {
    #main-header, #main-header .container {
        height: 75px !important;
    }

    .logo {
        flex: 0 1 auto !important;
        margin-right: 0 !important;
    }

    .logo img {
        height: 35px !important;
        max-width: 160px !important;
    }

    #main-header .container {
        width: 95% !important;
        padding: 0 15px !important;
        justify-content: space-between !important;
    }

    #nav-menu, .header-cta {
        display: none !important;
    }

    nav#nav-menu.show {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 80px 30px;
        z-index: 1000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }

    nav#nav-menu.show ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav#nav-menu.show ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    nav#nav-menu.show ul li a {
        display: block !important;
        padding: 15px !important;
        font-size: 1.2rem !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-toggle {
        display: block !important;
        margin-left: 20px;
        order: 3;
        background: none !important;
        border: none !important;
        font-size: 1.8rem !important;
        color: #333 !important;
        cursor: pointer !important;
        padding: 5px !important;
        line-height: 1 !important;
        z-index: 1100 !important;
    }
    
    .lang-switcher {
        order: 2;
        margin-left: auto;
    }
    
    .hero {
        text-align: center;
        justify-content: center;
        padding-bottom: 120px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        line-height: 1.2;
    }
    
    .booking-widget {
        grid-template-columns: 1fr;
        padding: 25px;
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
    
    .widget-btn-wrapper {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .phone-number {
        font-size: 1.6rem;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #trust-bar .container {
        justify-content: center;
        gap: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra tight fix for small mobile phones (Chrome/Safari) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-content h1 {
        font-size: 1.25rem !important;
        letter-spacing: -0.5px;
    }

    .phone-number {
        font-size: 1.1rem !important;
    }

    .lang-btn-text {
        display: inline-block;
    }
    
    .lang-btn {
        padding: 5px 8px !important;
    }
    
    .logo img {
        max-width: 120px !important;
    }
}
/* Hero Backgrounds */
.hero-rooms { background-image: url('../assets/standard.png'); }

.hero-spa { background-image: url('../assets/spa.png'); }
.hero-contact { background-image: url('../assets/exterior.webp'); }
.hero-batum { background-image: url('../assets/batumi_guide.webp'); }
.hero-restaurant { background-image: url('../assets/Restaurant/page_66296ee99e5e9.webp'); }

/* Utility Classes */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-700 { max-width: 700px; }
.br-10 { border-radius: 10px; }
.br-15 { border-radius: 15px; }
.w-100 { width: 100%; }
.grid-responsive { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.color-whatsapp { color: #25d366 !important; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 12, 22, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5vh auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.4s ease;
    overflow: hidden;
}

#modal-body {
    width: 100%;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--primary-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-header-img {
    width: 100%;
    height: 40vh;
    min-height: 250px;
    max-height: 420px;
    position: relative;
    overflow: hidden;
}

.modal-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 40px;
    height: 60px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.modal-prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.modal-next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.modal-info {
    padding: 20px 30px;
}

.modal-info h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.modal-info p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

/* Modal Enhanced Styles */
.room-tech-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.tech-item {
    font-size: 0.95rem;
    color: var(--dark);
}

.tech-item strong {
    color: var(--gold-dark);
    margin-right: 0.5rem;
}

.modal-desc {
    line-height: 1.4;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
    font-size: 0.95rem;
}

.modal-amenities-section h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.modal-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.amenity-item {
    font-size: 0.9rem;
}

.modal-actions {
    text-align: center;
}

/* Gallery Styles */
.modal-gallery-container {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.modal-gallery-container h4 {
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.amenity-item i {
    color: var(--accent-color);
    width: 20px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

/* Room Slider Styles */
.room-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin: 0 -20px;
}

.room-grid.room-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0; /* Removed horizontal padding for perfect alignment */
    -ms-overflow-style: none;
}

.room-grid.room-slider::-webkit-scrollbar {
    display: none;
}

.room-grid.room-slider .room-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
}

@media (max-width: 992px) {
    .room-grid.room-slider .room-card {
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .room-grid.room-slider .room-card {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.room-card .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #d4af37; /* Fallback for var(--gold) */
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #050c16; /* Fallback for var(--dark) */
    color: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.room-prev { left: 0; }
.slider-btn.room-next { right: 0; }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.amenities-grid li {
    font-size: 1rem;
    color: var(--text-color);
}
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr !important;
    }
}

.amenities-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.amenities-grid-2col {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 10px 25px 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.footer-credits {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.about-text {
    white-space: pre-line;
    margin-top: 20px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
