@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --gold: #C9A84C;
    --gold-light: #E8D08A;
    --gold-dark: #8B6914;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --dark-2: #181818;
    --dark-3: #222222;
    --text-primary: #F5F0E8;
    --text-secondary: #B8AA96;
    --text-muted: #6B6055;
    --white: #FFFFFF;
    --border: rgba(201, 168, 76, 0.2);
    --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.15);
    --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
    --radius: 8px; /* Softened edges */
    --radius-lg: 16px; /* Softened edges */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 8px;
}

/* ===================== PRELOADER (LUXURY FADE) ===================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.pre-loader-content {
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 100%;
}
#preloader .pre-logo {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.9);
    animation: luxuryEntry 1.2s ease forwards;
}
#preloader .pre-logo span {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 8px;
    margin-top: 10px;
}
.pre-line-wrapper {
    width: 200px;
    height: 1px;
    background: rgba(201, 168, 76, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.pre-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    position: absolute;
    left: 0;
    animation: preLineFluid 2s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes luxuryEntry {
    to { opacity: 1; transform: scale(1); }
}
@keyframes preLineFluid {
    0% { left: -100%; width: 100%; }
    50% { left: 0%; width: 100%; }
    100% { left: 100%; width: 100%; }
}

/* ===================== HEADER ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}
header.scrolled, header.internal-page {
    background: rgba(10, 10, 10, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 60px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    width: 240px; /* Spacer for the absolute logo */
    height: 60px;
}
.logo img {
    height: 110px; /* Even bigger */
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}
header.scrolled .logo img,
header.internal-page.scrolled .logo img {
    height: 48px;
}
.logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    font-variant-ligatures: none;
    transition: 0.3s;
    position: relative;
    padding-bottom: 4px;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}
nav a:hover, nav a.active {
    color: var(--gold);
}
nav a:hover::after, nav a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-flags {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1002;
}
.lang-flags img {
    width: 24px;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}
.lang-flags img:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}

.book-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    font-family: 'Urbanist', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}
.book-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ===================== HERO ===================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-hotel.jpg');
    background-size: cover;
    background-position: center;
    /* transform: scale(1.1); REMOVED scale to fix pixelation */
    transition: transform 8s ease, filter 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}
.hero-bg.loaded {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.4) 0%,
        rgba(10,10,10,0.3) 40%,
        rgba(10,10,10,0.8) 80%,
        rgba(10,10,10,1) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto; /* Added to center horizontally */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content-inner {
    width: 100%;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin: 0 auto 30px;
    letter-spacing: -2px;
    text-align: center; /* Ensure centering */
}
.hero-title em {
    font-style: normal;
    color: var(--gold-light);
    display: block;
    font-size: 0.6em;
    letter-spacing: 4px;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 1s ease 0.7s forwards;
    font-weight: 400;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFade 1s ease 0.9s forwards;
}
.btn-primary {
    padding: 16px 45px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-outline {
    padding: 16px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
@keyframes heroFade {
    to { opacity: 1; transform: translateY(0); }
}

/* Fade Up Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.2s; }
.fade-up-delay-2 { transition-delay: 0.4s; }
.fade-up-delay-3 { transition-delay: 0.6s; }

/* ===================== BOOKING FORM (PREMIUM MODERN) ===================== */
.booking-strip {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
    padding: 0 40px;
}
.internal-page-header {
    padding-top: 160px; /* Space for fixed header */
    text-align: center;
}
.page-header {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    min-height: 450px;
    padding-bottom: 80px;
    position: relative; /* Added for overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}
.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2; /* Bring text above overlay */
}
.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--dark-2);
    border-radius: 100px;
    padding: 8px; /* Compacted from 10 */
    margin-top: -45px; /* Compacted from 50 */
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border);
}
.form-group {
    flex: 1;
    padding: 10px 25px; /* Compacted from 15x30 */
    position: relative;
    border-right: 1px solid var(--border);
    transition: all 0.3s;
}
.form-group:last-child {
    border-right: none;
    flex: 0 0 auto;
    padding: 0 10px;
}
.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 4px;
    font-weight: 700;
}
.form-group input,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 5px 0;
    cursor: pointer;
    font-weight: 600;
}
.form-group select {
    -webkit-appearance: none;
    appearance: none;
}
.form-group:hover {
    background: rgba(201, 168, 76, 0.05);
}

/* Custom Guest Dropdown */
.custom-select-wrapper {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
}
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}
.custom-select-trigger::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s;
}
.custom-select-wrapper.open .custom-select-trigger::after {
    transform: rotate(180deg);
}
.custom-options {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: var(--shadow-dark);
    display: none;
    z-index: 100;
    overflow: hidden;
}
.custom-select-wrapper.open .custom-options {
    display: block;
    animation: selectFadeIn 0.3s ease;
}
.custom-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.custom-option:hover {
    background: var(--gold);
    color: var(--dark);
}
.custom-option.selected {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

@keyframes selectFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Date Input styles */
input[type="date"] {
    position: relative;
    color-scheme: dark;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}
.form-group i.input-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    pointer-events: none;
}
.form-group:hover i.input-icon {
    color: var(--gold);
}

/* Premium Booking Counter */
.booking-counters {
    display: flex;
    gap: 30px;
    width: 100%;
}
.counter-group {
    flex: 1;
}
.counter-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}
.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 5px 12px; /* Compacted from 8x15 */
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.counter-controls:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.counter-btn {
    width: 24px; /* Shrunk from 28 */
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
}
.counter-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.counter-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    min-width: 20px;
    text-align: center;
}
.counter-input {
    display: none;
}

/* Breadcrumbs (Perfect Minimalism) */
.breadcrumb-wrapper {
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease forwards;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered */
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    font-size: 0.7rem;
    color: var(--border);
}
.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.3s;
}
.breadcrumbs a:hover {
    color: var(--gold);
}
.breadcrumbs li.active {
    color: var(--gold);
    font-weight: 600;
}

/* Contact Overhaul */
.contact-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.contact-info-box {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.contact-info-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-dark);
}
.contact-info-box i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}
.contact-info-box h4 {
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}
.contact-info-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
.contact-info-box a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}
.contact-info-box a:hover {
    color: var(--gold);
}

@media (max-width: 992px) {
    .contact-3-grid { grid-template-columns: 1fr; }
    .booking-counters { flex-direction: column; gap: 15px; }
}
.book-submit {
    padding: 18px 45px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-gold);
}
.book-submit:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-full {
    padding: 100px 60px;
}
.section-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}
.section-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.section-title em {
    font-style: normal;
    color: var(--gold-light);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.8;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}
.divider-gold {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 25px 0;
}

/* ===================== ABOUT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 45px;
    padding-top: 45px;
    border-top: 1px solid var(--border);
}
.stat-item .num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}
.stat-item .lbl {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

/* ===================== ROOMS ===================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}
.room-card {
    position: relative;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid var(--border);
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: rgba(201,168,76,0.4);
}
.room-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.room-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}
.room-card:hover .room-img-bg {
    transform: scale(1.08);
}
.room-info {
    padding: 35px;
}
.room-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}
.room-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}
.room-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.room-price .per {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}
.feature-tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.feature-tag i { color: var(--gold); }
.room-book-btn {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.room-book-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ===================== SERVICES ===================== */
.services-bg {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px; padding-right: 60px;
}
.service-card {
    padding: 45px 40px;
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: 0.4s ease;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================== RESTAURANT ===================== */
.restaurant-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.restaurant-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===================== GOOGLE REVIEWS (MARQUEE) ===================== */
.reviews-container {
    background: var(--dark-card);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
}
.marquee-wrapper {
    display: flex;
    width: calc(100% * 2); /* Assuming duplicated content for infinite loop */
    animation: marqueeScroll 40s linear infinite;
    gap: 30px;
    padding: 0 15px;
}
.marquee-wrapper:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.google-review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.review-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.review-name {
    color: #202124;
    font-size: 1rem;
    font-weight: 600;
    display: block;
}
.review-date {
    color: #70757a;
    font-size: 0.8rem;
    display: block;
}
.google-icon {
    width: 20px;
    height: 20px;
}
.google-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.review-body {
    color: #3c4043;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================== FLOATING BUTTONS (PREMIUM LABELS) ===================== */
.floating-side-menu {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.float-btn {
    background: var(--dark-card);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align icon to left */
    text-decoration: none;
    color: var(--white);
    position: relative;
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 100px 100px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding-left: 18px; /* Fixed space for icon */
}
.float-btn:hover {
    width: 220px;
    background: var(--dark-2);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.float-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}
.float-btn:hover i { color: var(--gold); }

.float-btn .btn-text {
    position: absolute;
    left: 55px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease 0.1s;
}
.float-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
}
.float-btn:hover {
    width: 220px;
    background: var(--gold);
}
.float-btn:hover i {
    color: var(--dark);
}
.float-btn:hover .btn-text {
    opacity: 1;
    transform: translateX(0);
    color: var(--dark);
}
.float-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.float-btn.whatsapp:hover i, .float-btn.whatsapp:hover .btn-text { color: white; }
.float-btn.phone:hover { background: var(--gold); }

/* ===================== AI BOT (ENHANCED) ===================== */
.ai-bot-wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}
.ai-bot-text {
    background: var(--white);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-dark);
    position: relative;
    cursor: pointer;
    animation: bounceText 2s infinite ease-in-out;
}
.ai-bot-text::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}
@keyframes bounceText {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}
.ai-icon {
    width: 65px;
    height: 65px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    transition: transform 0.3s;
}
.ai-icon:hover { transform: scale(1.1); }
.ai-chat-box {
    display: none;
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border-radius: var(--radius-lg);
}
.ai-chat-header {
    background: var(--gold);
    color: var(--dark);
    padding: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-close {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: 0.3s;
}
.ai-close:hover { opacity: 1; }
.ai-chat-body {
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ai-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.5;
}
.ai-msg.bot {
    background: rgba(201,168,76,0.15);
    color: #E8D08A;
    border: 1px solid rgba(201,168,76,0.25);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
.ai-msg.user {
    background: var(--gold);
    color: var(--dark);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}
.ai-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}
.ai-action-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: 0.3s;
}
.ai-action-btn:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
    color: var(--gold);
}
.ai-chat-input {
    display: flex;
    border-top: 1px solid var(--border);
    background: var(--dark-card);
}
.ai-chat-input input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text-primary);
}
.ai-chat-input input::placeholder { color: var(--text-muted); }
.ai-chat-input button {
    padding: 0 25px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ===================== BANNER AD ===================== */
.banner-ad {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}
.banner-ad::after {
    content: 'SPA & WELLNESS';
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(10,10,10,0.05);
    line-height: 1;
    pointer-events: none;
}
.banner-ad h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.banner-ad p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.banner-ad .btn-dark {
    display: inline-block;
    background: var(--dark);
    color: var(--gold);
    padding: 14px 35px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}
.banner-ad .btn-dark:hover {
    background: #000;
    transform: translateY(-3px);
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    padding: 80px 60px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}
.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.social-link:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
}
.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 15px;
}
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}
.footer-col a:hover {
    color: var(--text-primary);
}
.footer-col a i {
    color: var(--gold);
    margin-right: 10px;
    width: 15px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================== AI BOT (PREMIUM) ===================== */
.ai-bot-wrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}
.ai-bot-text {
    position: absolute;
    right: 80px;
    bottom: 10px;
    background: var(--white);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-dark);
    cursor: pointer;
    transition: 0.3s;
}
.ai-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: 0.4s;
}
.ai-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: none;
    box-shadow: var(--shadow-dark);
}
.ai-chat-header {
    background: var(--gold);
    color: var(--dark);
    padding: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-status {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
}
.ai-reset-btn {
    background: transparent;
    border: none;
    color: var(--dark);
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    opacity: 0.7;
}
.ai-reset-btn:hover { opacity: 1; transform: rotate(-45deg); }
.ai-chat-body {
    height: 400px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ai-msg {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.ai-msg.bot {
    background: var(--dark-3);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.ai-msg.user {
    background: var(--gold);
    color: var(--dark);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.ai-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.ai-action-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-size: 0.85rem;
    transition: 0.3s;
}
.ai-action-btn:hover {
    background: var(--gold);
    color: var(--dark);
}
.ai-chat-input {
    padding: 15px;
    background: var(--dark-3);
    display: flex;
    gap: 10px;
}
.ai-chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
}
.ai-chat-input button {
    background: var(--gold);
    border: none;
    color: var(--dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== LUXURY ROOM DETAILS ===================== */
.room-gallery-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    height: 600px;
    box-shadow: var(--shadow-dark);
}
.room-gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    z-index: 5;
}
.room-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}
.meta-item {
    display: flex;
    flex-direction: column;
}
.meta-item .lbl {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.meta-item .val {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}
.book-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-gold);
}
.book-card .price-tag {
    margin-bottom: 30px;
}
.book-card .price-tag .amount {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.book-card .price-tag .period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 10px;
}
.book-field {
    margin-bottom: 20px;
}
.book-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}
.book-field select, .book-field input {
    width: 100%;
    padding: 15px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius);
    outline: none;
}

/* ===================== ROOM DETAIL LUXURY LAYOUT ===================== */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 50px;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.room-detail-main {
    background: transparent;
}

.room-gallery-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-dark);
}

.room-gallery-slider img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: 0.5s;
}

.room-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.room-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.meta-item {
    background: var(--dark-2);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.meta-item .lbl {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.meta-item .val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: 0.3s;
}

.amenity-item:hover {
    background: rgba(201,168,76,0.05);
    border-color: var(--gold);
}

.amenity-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.amenity-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Sidebar / Booking Card */
.room-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.book-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
}

.price-tag {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.price-tag .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.price-tag .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.book-field {
    margin-bottom: 20px;
}

.book-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.book-field input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 12px 15px;
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.book-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.book-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 1024px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    .room-sidebar {
        position: static;
    }
}
/* ===================== AI BOT PREMIUM ANIMATIONS ===================== */
.ai-icon-premium {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #C9A84C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.4rem;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.gold-sparkle {
    color: var(--dark);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: sparkleAnim 2s infinite ease-in-out;
}

.ai-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: ringPulse 2s infinite ease-out;
}

.ai-ring-outer {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s infinite ease-out;
}

@keyframes sparkleAnim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== DOCUMENT VIEWER (PREMIUM) ===================== */
.document-container {
    background: var(--dark-card);
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dark);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.document-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.document-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.document-body h2, .document-body h3 {
    color: var(--gold);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.document-body p {
    margin-bottom: 25px;
}

.document-body ul, .document-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.document-body li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.document-body ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

.document-body strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .document-container {
        padding: 30px 20px;
    }
}

/* ===================== HAKKIMIZDA (PREMIUM EDITORIAL) ===================== */
.document-body.about-us-style {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.3px;
}

.document-body.about-us-style p:first-of-type::first-letter {
    float: left;
    font-size: 4.8rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 15px;
    color: var(--gold);
    font-family: 'Urbanist', sans-serif;
    text-transform: uppercase;
}

.document-body.about-us-style blockquote {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding-left: 30px;
    margin: 60px 0;
    line-height: 1.6;
    position: relative;
}

.document-body.about-us-style blockquote::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--gold);
}

.document-container.about-us-container {
    padding: 80px;
    border-width: 2px;
}

@media (max-width: 768px) {
    .document-body.about-us-style {
        font-size: 1.14rem;
    }
    .document-body.about-us-style p:first-of-type::first-letter {
        font-size: 3.5rem;
    }
    .document-container.about-us-container {
        padding: 40px 25px;
    }
}


/* ================================================================
   MOBİL RESPONSIVE - KAPSAMLI
   ================================================================ */

/* ===== DESKTOP NAV / HEADER-RIGHT: Mobilde gizle ===== */
@media (max-width: 768px) {
    .desktop-nav { display: none !important; }
    .header-right { display: none !important; }

    header {
        padding: 12px 20px;
    }
    header.scrolled, header.internal-page {
        padding: 10px 20px;
    }

    /* Logo mobil boyut */
    .logo {
        width: 160px;
        height: 48px;
    }
    .logo img {
        height: 70px;
    }
    header.scrolled .logo img,
    header.internal-page.scrolled .logo img {
        height: 38px;
    }
}

/* ===== HERO / SLIDER: Mobil ===== */
@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 500px;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        letter-spacing: -1px;
    }
    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }
    .hero-content {
        padding: 0 20px;
        padding-bottom: 80px; /* bottom nav için boşluk */
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary, .btn-outline {
        padding: 14px 32px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .swiper-pagination {
        bottom: 90px !important; /* bottom nav üzerinde */
    }
}

/* ===== BOOKING STRIP (ODA BUL): Mobilde gizle ===== */
@media (max-width: 768px) {
    .booking-strip {
        display: none !important;
    }
}

/* ===== SECTIONS: Mobil padding ===== */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }
    .section-full {
        padding: 60px 20px;
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
}

/* ===== ABOUT GRID: Mobil ===== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img {
        height: 300px;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .stat-item .num {
        font-size: 2rem;
    }
}

/* ===== ROOMS GRID: Mobil ===== */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .room-img-wrap {
        height: 220px;
    }
    .room-info {
        padding: 20px;
    }
}

/* ===== SERVICES GRID: Mobil ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }
    .service-card {
        padding: 30px 25px;
    }
}

/* ===== RESTAURANT GRID: Mobil ===== */
@media (max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .restaurant-img {
        height: 280px;
    }
}

/* ===== CONTACT 3 GRID: Mobil ===== */
@media (max-width: 768px) {
    .contact-3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
}

/* ===== BANNER AD: Mobil ===== */
@media (max-width: 768px) {
    .banner-ad {
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
    }
    .banner-ad h3 {
        font-size: 1.3rem;
    }
    .banner-ad p {
        font-size: 0.9rem;
    }
}

/* ===== FOOTER: Mobil ===== */
@media (max-width: 768px) {
    footer {
        padding-bottom: 90px; /* bottom nav için boşluk */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-brand p {
        font-size: 0.9rem;
    }
    .footer-col h4 {
        font-size: 0.85rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-bottom p:last-child {
        text-align: center;
    }
}

/* ===== FLOATING SIDE MENU: Mobilde gizle ===== */
@media (max-width: 768px) {
    .floating-side-menu {
        display: none !important;
    }
}

/* ===== AI BOT WRAPPER: Mobilde gizle ===== */
@media (max-width: 768px) {
    .ai-bot-wrapper {
        display: none !important;
    }
}

/* ================================================================
   MOBİL ALT MENÜ (BOTTOM NAVIGATION)
   ================================================================ */
.mobile-bottom-nav {
    display: none; /* Varsayılan: masaüstünde gizli */
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(10, 10, 10, 0.97);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 168, 76, 0.25);
        height: 68px;
        align-items: stretch;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    }

    .mob-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: #6B6055;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        cursor: pointer;
        font-family: 'Urbanist', sans-serif;
        position: relative;
    }
    .mob-nav-item i {
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    .mob-nav-item span {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    .mob-nav-item:hover,
    .mob-nav-item.active {
        color: var(--gold);
    }
    .mob-nav-item:hover i,
    .mob-nav-item.active i {
        color: var(--gold);
        transform: translateY(-2px);
    }
    .mob-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 2px;
        background: var(--gold);
        border-radius: 0 0 4px 4px;
    }
    .mob-menu-btn {
        color: #6B6055;
    }
    .mob-menu-btn:hover, .mob-menu-btn.open {
        color: var(--gold);
    }
}

/* ================================================================
   MOBİL TAM EKRAN MENÜ (YUKARIDAN AÇILAN)
   ================================================================ */
.mobile-fullscreen-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mobile-fullscreen-menu {
        display: block;
    }
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mobile-menu-panel {
    position: absolute;
    bottom: 68px; /* bottom nav yüksekliği */
    left: 0;
    right: 0;
    background: #0e0e0e;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    pointer-events: none;
    max-height: 80svh;
    overflow-y: auto;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.7);
}

.mobile-fullscreen-menu.open {
    pointer-events: all;
}

.mobile-fullscreen-menu.open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: all;
}

.mobile-fullscreen-menu.open .mobile-menu-panel {
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-menu-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}
.mobile-menu-close:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.mobile-menu-list {
    list-style: none;
    padding: 12px 0;
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu-list li a i {
    color: var(--gold);
    width: 22px;
    font-size: 1rem;
    text-align: center;
}

.mobile-menu-list li a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    padding-left: 32px;
}

.mobile-menu-list li:last-child a {
    border-bottom: none;
}

.mobile-menu-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mob-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.mob-book-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.mob-lang-flags {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.mob-lang-flags img {
    width: 32px;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}
.mob-lang-flags img:hover {
    border-color: var(--gold);
    transform: scale(1.1);
}

/* ===== PAGE HEADER: Mobil ===== */
@media (max-width: 768px) {
    .page-header {
        min-height: 300px;
        padding-bottom: 50px;
    }
    .internal-page-header {
        padding-top: 100px;
    }
}

/* ===== ROOM DETAIL: Mobil ===== */
@media (max-width: 768px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }
    .room-sidebar {
        position: static;
    }
    .room-detail-gallery {
        flex-direction: column;
    }
}

/* ===== BODY PADDING BOTTOM (bottom nav için) ===== */
@media (max-width: 768px) {
    body {
        padding-bottom: 68px;
    }
}

/* ===== PAGE HEADER İÇ SAYFA BAŞLIĞI ===== */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .breadcrumbs {
        font-size: 0.75rem;
    }
}

/* ===== SWIPER / SLIDER ÖZEL ===== */
@media (max-width: 768px) {
    .main-slider {
        height: 100svh;
        min-height: 500px;
    }
    .swiper-slide {
        height: 100svh;
    }
}

/* ===== MARQUEE / REVIEWS ===== */
@media (max-width: 768px) {
    .reviews-container {
        padding: 60px 0;
    }
    .google-review-card {
        width: 300px;
        padding: 20px;
    }
}

/* ===== DOCUMENT PAGE ===== */
@media (max-width: 768px) {
    .document-container {
        padding: 30px 20px;
    }
}

