/* ===== CSS Variables ===== */
:root {
    --primary-color: #c19d68;
    --primary-dark: #a38255;
    --secondary-color: #1a1a2e;
    --text-color: #666666;
    --heading-color: #222222;
    --white: #ffffff;
    --light-bg: #f8f5f0;
    --dark-bg: #1a1a2e;
    --footer-bg: #0D1224;
    --footer-gold: #C8A46B;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* ===== Custom Cursor ===== */
@media (min-width: 992px) {
    .cursor-dot { width: 8px; height: 8px; background: #c19d68; border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transition: transform 0.1s; transform: translate(-50%,-50%); }
    .cursor-outline { width: 35px; height: 35px; border: 2px solid rgba(193,157,104,0.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998; transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s; transform: translate(-50%,-50%); background: transparent !important; }
    .cursor-outline.hover { width: 50px; height: 50px; border-color: #c19d68; background: transparent !important; }
    .cursor-outline.click { width: 55px; height: 55px; border-color: #c19d68; background: transparent !important; transform: translate(-50%,-50%) scale(1.1); }
}
@media (max-width: 991px) { .cursor-dot, .cursor-outline { display: none !important; } }

/* ===== Click Ripple ===== */
.click-ripple {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(193,157,104,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%,-50%) scale(0);
    animation: rippleEffect 0.6s ease-out forwards;
}
@keyframes rippleEffect {
    0% { transform: translate(-50%,-50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

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

html {
    scroll-behavior: smooth;
    background: #1a1a2e;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

img:hover {
    transform: scale(1.05);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row > * {
    padding: 0 15px;
}

.col-lg { flex: 1; min-width: 0; }
.col-lg-3 { width: 25%; }
.col-lg-6 { width: 50%; }
.col-lg-9 { width: 75%; }
.col-lg-auto { width: auto; }
.col-md-6 { width: 50%; }
.align-items-center { align-items: center; }
.d-lg-none { display: none; }

@media (max-width: 991px) {
    .d-lg-none { display: block !important; }
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-5 { margin-bottom: 3rem; }

/* ===== Header ===== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-top {
    background: rgba(13, 18, 36, 0.85); /* Deep Navy Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.header-area.scrolled .header-top {
    background: rgba(13, 18, 36, 0.85); /* Deep Navy Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    max-height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.main-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li > a {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.main-menu ul li > a:hover,
.main-menu ul li.active > a {
    color: var(--primary-color);
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 100;
}

.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 8px 25px;
    color: var(--heading-color);
    font-size: 14px;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.submenu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.header-btn {
    margin-left: 30px;
}

.main-menu .dtbtn {
    display: inline-block;
    background: linear-gradient(135deg, #d4b07a, #C8A46B);
    color: #fff !important;
    padding: 12px 28px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 10px;
    box-shadow: 0 5px 15px rgba(200, 164, 107, 0.4);
}

.main-menu .dtbtn:hover {
    background: linear-gradient(135deg, #e6c594, #d4b07a);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 164, 107, 0.6);
}

/* Mobile Menu */
.mobile-menu-area {
    display: none;
    background: var(--secondary-color);
    padding: 15px 0;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img {
    max-height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 800px;
}

.mobile-nav ul {
    padding: 15px 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav ul li > a {
    display: block;
    padding: 12px 0;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav ul li > a:hover,
.mobile-nav ul li.active > a {
    color: var(--primary-color);
}

.mobile-nav ul li.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
}

.mobile-nav ul li.has-dropdown.active > a::after {
    transform: rotate(180deg);
}

.mobile-nav .submenu {
    display: none;
    background: rgba(255,255,255,0.05);
    padding: 0 15px;
}

.mobile-nav .submenu.active {
    display: block;
}

.mobile-nav .submenu li a {
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-join-btn {
    display: block;
    background: linear-gradient(135deg, #e6c594, #d4b07a);
    color: #ffffff !important;
    text-align: center;
    border-radius: 8px;
    padding: 14px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    margin: 0 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-join-btn:hover {
    background: linear-gradient(135deg, #d4b07a, #e6c594);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(200, 164, 107, 0.4);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #1a1a2e;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 12s ease-out;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(1.15) contrast(1.1) saturate(1.2);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 200px;
}

.hero-stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-stars {
    animation: heroFadeInUp 0.8s 0.2s forwards;
}

.hero-stars .fa {
    font-size: 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-subtitle {
    animation: heroFadeInUp 1s 0.4s forwards;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-slide.active .hero-title {
    animation: heroFadeInUp 0.8s 0.6s forwards;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-btn {
    animation: heroFadeInUp 0.8s 0.8s forwards;
}

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

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

.hero-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.25);
    border: none;
    color: var(--white);
    width: 100px;
    height: 100px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-nav button:hover {
    background: var(--white);
    color: rgba(0,0,0,0.5);
}

.hero-prev { left: 0; }
.hero-next { right: 0; }

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots span.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== Booking Form ===== */
.booking-form-area {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.booking-form {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 30px;
    border-radius: 5px;
}

.booking-input-box {
    margin-bottom: 0;
}

.booking-input-box h4 {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.booking-input-box input,
.booking-input-box select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-color);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.booking-input-box input:focus,
.booking-input-box select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-button {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.booking-button button {
    width: 100%;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-button button:hover {
    background: var(--primary-dark);
}

/* ===== Section Title ===== */
.section-title {
    margin-bottom: 50px;
}

.section-title.text-center .section-image {
    margin-bottom: 15px;
}

.section-title.text-center .section-image img {
    height: 30px;
}

.section-title h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.section-title.left {
    text-align: left;
}

.section-title.left .subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title.left h3 {
    font-size: 32px;
}

/* ===== Rooms Section ===== */
.rooms-section {
    padding: 100px 0;
    background: var(--white);
}

.room-item {
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin: 0 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-radius: 12px;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: floatRoom 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Fix for owl-carousel to make all items equal height and prevent mobile overflow */
.owl-carousel, .owl-stage-outer {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.owl-stage {
    display: flex;
}
.owl-item {
    display: flex;
    box-sizing: border-box !important;
}
.owl-item .room-item,
.owl-item .blog-item,
.owl-item .banquet-item,
.owl-item .facility-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .blog-carousel .blog-item,
    .blog-item {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}

.blog-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(193, 157, 104, 0.2);
    border-color: var(--primary-color);
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--heading-color);
    margin-top: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-content h3 a {
    color: var(--primary-color);
}

@keyframes floatRoom {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.room-item:hover {
    box-shadow: 0 25px 60px rgba(193,157,104,0.25), 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    animation-play-state: paused;
}

.room-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.room-item:hover .room-img img {
    transform: scale(1.1) rotateY(3deg);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.view-details {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(193,157,104,0.4);
    transform: translateY(20px) scale(0.8);
}

.room-item:hover .view-details {
    transform: translateY(0) scale(1);
}

.view-details:hover {
    background: var(--white);
    color: var(--primary-color);
}

.room-pricing {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    text-align: center;
    z-index: 2;
}

.room-pricing .dolar {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.room-pricing .period {
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
}

.room-content {
    padding: 25px 20px 15px;
    flex-grow: 1;
}

.room-subtitle {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.room-title a:hover {
    color: var(--primary-color);
}

.room-desc {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--text-color);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
    border-top: 1px solid #eee;
    white-space: nowrap;
}

.room-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-icon img {
    height: 20px;
}

.room-icon span {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--text-color);
}

.room-rating i {
    color: #ddd;
    font-size: 12px;
}

.room-rating i.active {
    color: var(--primary-color);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-carousel .owl-nav {
    display: none;
}

.about-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.about-carousel .owl-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.about-carousel .owl-dots span.active {
    background: var(--primary-color);
}

.about-content {
    padding-left: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
}

.stat-item p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-color);
}

.theme-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: -1;
}

.theme-btn:hover::before {
    left: 0;
}

.theme-btn:hover {
    color: var(--primary-color);
}

/* ===== Facilities Section ===== */
.facilities-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.facility-item {
    text-align: center;
    padding: 40px 15px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: floatCard 3s ease-in-out infinite;
}

.facility-item:nth-child(1) { animation-delay: 0s; }
.facility-item:nth-child(2) { animation-delay: 0.2s; }
.facility-item:nth-child(3) { animation-delay: 0.4s; }
.facility-item:nth-child(4) { animation-delay: 0.6s; }
.facility-item:nth-child(5) { animation-delay: 0.8s; }
.facility-item:nth-child(6) { animation-delay: 1s; }
.facility-item:nth-child(7) { animation-delay: 1.2s; }
.facility-item:nth-child(8) { animation-delay: 1.4s; }
.facility-item:nth-child(9) { animation-delay: 1.6s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-8px) rotateX(2deg); }
}

.facility-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(193,157,104,0.1), rgba(193,157,104,0.02));
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.facility-item:hover::after {
    width: 500px;
    height: 500px;
}

.facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.facility-item:hover::before {
    left: 100%;
}

.facility-item:hover,
.facility-item.active {
    box-shadow: 0 20px 60px rgba(193,157,104,0.25), 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-12px) rotateX(5deg) rotateY(-3deg) scale(1.03);
    animation-play-state: paused;
}

.facility-icon {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.facility-icon img {
    height: 60px;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.facility-icon i {
    font-size: 45px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-shadow: 0 2px 10px rgba(193,157,104,0.3);
}

.facility-item:hover .facility-icon i {
    transform: scale(1.3) translateY(-5px) rotateY(180deg);
    text-shadow: 0 5px 20px rgba(193,157,104,0.5);
    color: var(--primary-dark);
}

.facility-item:hover .facility-icon img,
.facility-item.active .facility-icon img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.facility-item h4 {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.facility-item:hover h4 {
    color: var(--primary-color);
    transform: translateY(3px);
    letter-spacing: 1px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-row {
    margin-bottom: 60px;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotateY(-5deg) rotateX(3deg);
}

.service-row:hover .service-img {
    transform: rotateY(5deg) rotateX(-3deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(193,157,104,0.3);
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.service-row:hover .service-img::after {
    left: 100%;
}

.service-img img {
    width: 100%;
    border-radius: 16px;
    transition: all 0.5s ease;
}

.service-row:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(193,157,104,0.15), rgba(193,157,104,0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.service-row:hover .service-number {
    transform: translateZ(20px) scale(1.1);
    background: linear-gradient(135deg, rgba(193,157,104,0.25), rgba(193,157,104,0.1));
    -webkit-background-clip: text;
    background-clip: text;
}

.service-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.service-row:hover .service-subtitle {
    letter-spacing: 4px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-row:hover .service-title {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-content p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-row:hover .service-content p {
    transform: translateX(3px);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(193,157,104,0.4);
    transform-style: preserve-3d;
}

.service-btn:hover {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(193,157,104,0.6);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== Manager Section ===== */
.manager-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.manager-quote {
    margin: 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.manager-quote p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16px;
    color: var(--text-color);
}

.manager-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.manager-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.manager-details h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.manager-details p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--primary-color);
}

.video-area {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.video-area img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(193,157,104,0.5);
}

.video-play-btn a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== Rooms Style 2 ===== */
.rooms-style2 {
    padding: 100px 0;
    background: var(--white);
}

.rooms-style2 .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.rooms-style2 .owl-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.rooms-style2 .owl-dots span.active {
    background: var(--primary-color);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonials-section .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials-section .owl-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-section .owl-dot.active span {
    background: var(--primary-color);
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 5px;
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-content > p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.author-info span {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--primary-color);
}

/* ===== Brands Section ===== */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.brands-carousel .owl-nav {
    display: none;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* ===== Premium Luxury Footer ===== */
.premium-footer {
    background: #0D1224;
    color: #ffffff;
    font-family: 'Inter', 'Roboto', sans-serif;
    margin-top: auto;
    border-top: 2px solid #C8A46B;
}

.premium-footer .container {
    padding-top: 25px;
}

.premium-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 5px;
}

.premium-footer .footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #C8A46B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.premium-footer .footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C8A46B;
}

.premium-footer .footer-logo {
    margin-bottom: 15px;
}

.premium-footer .footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.premium-footer .footer-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid #C8A46B;
    object-fit: cover;
}

.premium-footer .footer-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.premium-footer .footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.premium-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.premium-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.premium-footer .footer-contact li i {
    color: #C8A46B;
    font-size: 14px;
    margin-top: 3px;
    width: 14px;
    text-align: center;
}

.premium-footer .footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.premium-footer .footer-contact li a:hover {
    color: #C8A46B;
}

.premium-footer .footer-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-footer .footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 164, 107, 0.1);
    border: 1px solid rgba(200, 164, 107, 0.3);
    color: #C8A46B;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-footer .footer-social li a:hover {
    background: #C8A46B;
    color: #0D1224;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(200, 164, 107, 0.4);
}

.premium-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.premium-footer .footer-links li {
    margin-bottom: 8px;
}

.premium-footer .footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.premium-footer .footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: #C8A46B;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.premium-footer .footer-links li a:hover {
    color: #C8A46B;
    transform: translateX(4px);
}

.premium-footer .footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.premium-footer .footer-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(200, 164, 107, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    background: #141b31;
}

.premium-footer .footer-map-wrap iframe {
    display: block;
    width: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(120%);
    transition: filter 0.4s ease;
}

.premium-footer .footer-map-wrap:hover iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(130%);
}

.premium-footer .newsletter-form {
    display: flex;
    margin-bottom: 12px;
    height: 42px;
}

.premium-footer .newsletter-form input {
    flex: 1;
    padding: 0 16px;
    border: 1px solid rgba(200, 164, 107, 0.3);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

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

.premium-footer .newsletter-form input:focus {
    outline: none;
    border-color: #C8A46B;
    background: rgba(255, 255, 255, 0.08);
}

.premium-footer .newsletter-form button {
    padding: 0 20px;
    background: linear-gradient(135deg, #d4b07a, #C8A46B);
    color: #0D1224;
    border: none;
    border-radius: 0 6px 6px 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-footer .newsletter-form button:hover {
    background: linear-gradient(135deg, #e6c594, #d4b07a);
    box-shadow: 0 4px 15px rgba(200, 164, 107, 0.4);
}

.premium-footer .footer-privacy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.premium-footer .footer-bottom {
    border-top: 1px solid rgba(200, 164, 107, 0.15);
    padding: 12px 0;
}

.premium-footer .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.premium-footer .footer-bottom-left {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.premium-footer .footer-bottom-center {
    display: flex;
    gap: 24px;
}

.premium-footer .footer-bottom-center a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-footer .footer-bottom-center a:hover {
    color: #C8A46B;
}

.premium-footer .footer-bottom-right {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.premium-footer .footer-bottom-right span {
    color: #C8A46B;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .premium-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .premium-footer .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .premium-footer .footer-bottom-center {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== Floating Bubbles Canvas ===== */
.floating-bubbles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

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

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

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== Responsive ===== */
/* ===== Tablet Landscape (1024px - 1200px) ===== */
@media (max-width: 1199px) {
    .container {
        max-width: 992px;
    }

    .main-menu ul {
        gap: 20px;
    }

    .main-menu ul li > a {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .header-btn {
        margin-left: 15px;
    }

    .dtbtn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-nav button {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .booking-form {
        padding: 25px;
    }

    .room-item .room-img img {
        height: 260px;
    }

    .service-number {
        font-size: 70px;
    }

    .manager-quote p {
        font-size: 15px;
    }

    .footer-top {
        padding: 60px 0;
    }
}

/* ===== Tablet Portrait (768px - 1024px) ===== */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .col-lg-3 { width: 50%; }
    .col-lg-6 { width: 100%; }
    .col-lg-9 { width: 100%; }
    .col-md-6 { width: 50%; }

    /* Header */
    .main-menu { display: none; }
    .mobile-menu-area { display: block; }

    .header-top {
        display: none !important;
    }

    .logo img {
        max-height: 40px;
        width: 40px;
    }

    .logo-text {
        font-size: 17px;
    }

    /* Hero */
    .hero-slider {
        min-height: 600px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-nav button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

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

    /* Booking */
    .booking-form-area {
        margin-top: -50px;
    }

    .booking-form {
        padding: 20px;
    }

    .booking-input-box h4 {
        font-size: 12px;
    }

    /* Sections */
    .rooms-section,
    .about-section,
    .facilities-section,
    .services-section,
    .manager-section,
    .rooms-style2,
    .testimonials-section {
        padding: 70px 0;
    }

    .section-title h3 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section-title.left h3 {
        font-size: 28px;
    }

    /* Rooms */
    .room-item .room-img img {
        height: 240px;
    }

    .room-title {
        font-size: 20px;
    }

    .room-pricing .dolar {
        font-size: 20px;
    }

    .room-pricing {
        padding: 8px 15px;
    }

    /* About */
    .about-content {
        padding-left: 0;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 40px;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .facility-item {
        padding: 30px 10px;
    }

    .facility-icon img {
        height: 50px;
    }

    .facility-icon i {
        font-size: 36px;
    }

    .facility-item h4 {
        font-size: 12px;
    }

    /* Services */
    .service-number {
        font-size: 60px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-content p {
        font-size: 14px;
    }

    /* Manager */
    .manager-content {
        padding-right: 20px;
    }

    .manager-quote p {
        font-size: 14px;
    }

    .video-area img {
        height: 300px;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 30px;
    }

    .testimonial-content > p {
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-top {
        padding: 35px 0 25px;
    }

    .footer-map-wrap iframe {
        height: 140px;
    }
}

/* ===== Mobile Landscape (576px - 768px) ===== */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .col-md-6 { width: 100%; }
    .col-lg-auto { width: 100%; }

    /* Header */
    .mobile-menu-area {
        display: block;
        padding: 12px 0;
    }

    .mobile-logo img {
        max-height: 35px;
        width: 35px;
    }

    .mobile-logo .logo-text {
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-slider {
        min-height: 500px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .hero-stars {
        font-size: 20px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .hero-nav button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .hero-dots span {
        width: 10px;
        height: 10px;
    }

    /* Booking */
    .booking-form-area {
        margin-top: -40px;
    }

    .booking-form .row {
        flex-direction: column;
    }

    .booking-form .col-lg,
    .booking-form .col-md-6 {
        width: 100%;
        margin-bottom: 12px;
    }

    .booking-input-box {
        margin-bottom: 0;
    }

    .booking-input-box h4 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .booking-input-box input,
    .booking-input-box select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .booking-button {
        margin-top: 5px;
    }

    .booking-button button {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Sections */
    .rooms-section,
    .about-section,
    .facilities-section,
    .services-section,
    .manager-section,
    .rooms-style2,
    .testimonials-section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-title p {
        font-size: 13px;
    }

    .section-title.left .subtitle {
        font-size: 12px;
    }

    .section-title.left h3 {
        font-size: 24px;
    }

    /* Rooms */
    .room-item .room-img img {
        height: 220px;
    }

    .room-content {
        padding: 20px 15px 10px;
    }

    .room-subtitle {
        font-size: 11px;
    }

    .room-title {
        font-size: 18px;
    }

    .room-desc {
        font-size: 12px;
    }

    .room-footer {
        padding: 12px 15px;
    }

    .room-icon span {
        font-size: 12px;
    }

    .room-rating i {
        font-size: 11px;
    }

    .room-pricing {
        padding: 6px 12px;
    }

    .room-pricing .dolar {
        font-size: 18px;
    }

    .room-pricing .period {
        font-size: 10px;
    }

    /* About */
    .about-stats {
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .theme-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .facility-item {
        padding: 25px 8px;
    }

    .facility-icon img {
        height: 45px;
        margin-bottom: 8px;
    }

    .facility-icon i {
        font-size: 32px;
    }

    .facility-item h4 {
        font-size: 11px;
    }

    /* Services */
    .service-row {
        margin-bottom: 40px;
    }

    .service-row .row {
        flex-direction: column;
    }

    .service-row.reverse .row {
        flex-direction: column-reverse;
    }

    .service-img img {
        border-radius: 5px;
    }

    .service-content {
        padding: 12px 0;
    }

    .service-number {
        font-size: 50px;
    }

    .service-subtitle {
        font-size: 12px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    /* Manager */
    .manager-section .row {
        flex-direction: column;
    }

    .manager-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .manager-quote p {
        font-size: 14px;
    }

    .manager-info img {
        width: 50px;
        height: 50px;
    }

    .manager-details h4 {
        font-size: 18px;
    }

    .manager-details p {
        font-size: 13px;
    }

    .video-area img {
        height: 250px;
    }

    .video-play-btn a {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-content > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info span {
        font-size: 12px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-top {
        padding: 30px 0 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .footer-bottom-center {
        gap: 15px;
    }
}

/* ===== Mobile Portrait (up to 576px) ===== */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }

    /* Header */
    .header-top {
        display: none !important;
    }

    .logo img {
        max-height: 35px;
        width: 35px;
    }

    .logo-text {
        font-size: 15px;
    }

    .mobile-menu-area {
        padding: 10px 0;
    }

    /* Hero */
    .hero-slider {
        min-height: 450px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .hero-stars {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-nav button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* Booking */
    .booking-form-area {
        margin-top: -30px;
    }

    .booking-form {
        padding: 15px;
    }

    .booking-input-box h4 {
        font-size: 10px;
    }

    .booking-input-box input,
    .booking-input-box select {
        padding: 9px 10px;
        font-size: 12px;
    }

    .booking-button button {
        padding: 9px 20px;
        font-size: 13px;
    }

    /* Sections */
    .rooms-section,
    .about-section,
    .facilities-section,
    .services-section,
    .manager-section,
    .rooms-style2,
    .testimonials-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 12px;
    }

    /* Rooms */
    .room-item .room-img img {
        height: 200px;
    }

    .room-content {
        padding: 15px 12px 8px;
    }

    .room-subtitle {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .room-title {
        font-size: 16px;
    }

    .room-desc {
        font-size: 11px;
    }

    .room-footer {
        padding: 10px 12px;
        flex-direction: row;
        justify-content: space-between;
    }

    .room-icon img {
        height: 16px;
    }

    .room-icon span {
        font-size: 11px;
    }

    .room-pricing {
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }

    .room-pricing .dolar {
        font-size: 16px;
    }

    .room-pricing .period {
        font-size: 9px;
    }

    /* About */
    .about-content {
        padding-top: 30px;
    }

    .section-title.left .subtitle {
        font-size: 11px;
    }

    .section-title.left h3 {
        font-size: 22px;
    }

    .section-title.left p {
        font-size: 12px;
    }

    .about-stats {
        gap: 15px;
    }

    .stat-item h2 {
        font-size: 30px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .theme-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .facility-item {
        padding: 20px 8px;
    }

    .facility-icon img {
        height: 40px;
    }

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

    .facility-item h4 {
        font-size: 10px;
    }

    /* Services */
    .service-number {
        font-size: 45px;
    }

    .service-subtitle {
        font-size: 11px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    /* Manager */
    .manager-quote {
        margin: 20px 0;
        padding-left: 15px;
    }

    .manager-quote p {
        font-size: 13px;
    }

    .manager-info {
        gap: 15px;
    }

    .manager-info img {
        width: 45px;
        height: 45px;
    }

    .manager-details h4 {
        font-size: 16px;
    }

    .video-area img {
        height: 200px;
    }

    .video-play-btn a {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 20px 15px;
    }

    .testimonial-rating i {
        font-size: 14px;
    }

    .testimonial-content > p {
        font-size: 12px;
        line-height: 1.6;
    }

    .testimonial-author {
        gap: 10px;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info span {
        font-size: 11px;
    }

    /* Footer */
    .footer-top {
        padding: 24px 0 16px;
    }

    .footer-col-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-map-wrap iframe {
        height: 130px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        padding: 10px 12px;
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .newsletter-form button {
        padding: 10px;
        border-radius: 6px;
    }

    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Small Mobile (up to 400px) ===== */
@media (max-width: 399px) {
    /* Hero */
    .hero-slider {
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .facility-item {
        padding: 15px 5px;
    }

    .facility-icon img {
        height: 35px;
    }

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

    .facility-item h4 {
        font-size: 9px;
    }

    /* Footer */
    .footer-col-title {
        font-size: 14px;
    }

    .footer-desc,
    .footer-contact li,
    .footer-links li a,
    .footer-newsletter p {
        font-size: 12px;
    }
}

/* ===== Extra Small Mobile (up to 360px) ===== */
@media (max-width: 359px) {
    .hero-title {
        font-size: 26px;
        line-height: 1.1;
    }

    .hero-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    .section-title h3 {
        font-size: 20px;
    }

    .room-item .room-img img {
        height: 180px;
    }

    .room-title {
        font-size: 15px;
    }

    .stat-item h2 {
        font-size: 28px;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-center {
        gap: 10px;
    }
}

/* ===== Scroll Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== Animation Classes ===== */
.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

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

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

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

/* ===== 3D Luxury Features & Micro-Animations ===== */

/* 3D Hero canvas container */
#three-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* behind slide content, but above raw container background */
    pointer-events: none;
}

.hero-slide {
    z-index: 2;
}

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

/* Glassmorphism Booking Card */
.booking-form-area {
    position: relative;
    z-index: 10;
}

.booking-form {
    background: rgba(26, 26, 46, 0.75) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(193, 157, 104, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.booking-form:hover {
    border-color: rgba(193, 157, 104, 0.5);
    box-shadow: 0 25px 60px rgba(193, 157, 104, 0.15);
}

.booking-form button[type="submit"] {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(193, 157, 104, 0.3);
    transition: all 0.4s ease;
}

.booking-form button[type="submit"]:hover {
    background: #ffffff;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* 3D Preloader */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #090C1A;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    object-fit: cover;
}

.preloader-ring {
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: rotateRing 1.5s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUpText 1s forwards 0.3s;
}

@keyframes fadeInUpText {
    to { opacity: 1; transform: translateY(0); }
}

/* Interactive 360 Room Viewer & Hotspots */
.room-360-viewer {
    position: relative;
    cursor: grab;
}

.room-360-viewer:active {
    cursor: grabbing;
}

/* Pulsing 3D Hotspot Ring */
.hotspot-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(193, 157, 104, 0.4);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.hotspot-marker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.hotspot-marker::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulseRing 1.8s infinite ease-out;
}

@keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hotspot-marker:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.hotspot-marker:hover::before {
    background: var(--secondary-color);
}

/* Glassmorphism Hotspot Tooltip */
.hotspot-tooltip {
    position: absolute;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(193, 157, 104, 0.3);
    padding: 10px 14px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    width: 160px;
    pointer-events: none;
    z-index: 101;
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: -15px;
}

.hotspot-tooltip h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.hotspot-tooltip p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.hotspot-marker:hover + .hotspot-tooltip {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
}

/* 3D Amenities & Testimonial Tilt styling */
.amenity-3d-card, .testimonial-card-3d {
    perspective: 1000px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.amenity-item, .testi-item {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.amenity-item:hover, .testi-item:hover {
    transform: translateZ(20px) scale(1.03);
    box-shadow: 0 15px 35px rgba(193, 157, 104, 0.15);
    border-color: var(--primary-color);
}

.amenity-item i {
    transform: translateZ(30px);
}

/* ==========================================================================
   Premium Luxury Footer Styles
   ========================================================================== */
.luxury-footer {
    background-color: #0D1224;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.luxury-footer-top {
    padding-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 60px;
    border-radius: 5px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #C8A46B;
    font-weight: 700;
    vertical-align: middle;
}

.footer-desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #C8A46B;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 4px;
}

.footer-contact a, .footer-contact span {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C8A46B;
}

.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background-color: #C8A46B;
    color: #0D1224;
    border-color: #C8A46B;
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #C8A46B;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C8A46B;
    transform: translateX(5px);
}

.footer-map iframe {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.footer-map iframe:hover {
    transform: scale(1.02);
}

.newsletter-desc {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.newsletter-form-luxury {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-form-luxury input {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form-luxury input:focus {
    border-color: #C8A46B;
}

.newsletter-form-luxury input::placeholder {
    color: #888;
}

.btn-gold {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background-color: #C8A46B;
    color: #0D1224;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: #dcb87d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 164, 107, 0.3);
}

.privacy-text {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

.privacy-text i {
    color: #C8A46B;
}

.luxury-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    font-size: 14px;
    color: #888;
}

.luxury-footer-bottom p {
    margin: 0;
}

.bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #C8A46B;
}

.designer {
    color: #C8A46B;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .luxury-footer-bottom .text-left,
    .luxury-footer-bottom .text-center,
    .luxury-footer-bottom .text-right {
        text-align: center !important;
        margin-bottom: 8px;
    }
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Disable hero text animations as requested */
.hero-slide.active .hero-stars, 
.hero-slide.active .hero-subtitle, 
.hero-slide.active .hero-title, 
.hero-slide.active .hero-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: inherit !important;
}

/* Fix visibility for the new static hero text */
.hero-static-content .hero-stars, 
.hero-static-content .hero-subtitle, 
.hero-static-content .hero-title, 
.hero-static-content .hero-btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Ensure the hero-static-content has a high enough z-index and is centered */
.hero-static-content {
    z-index: 20 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 80px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===== Hero Booking Engine ===== */
.hero-booking-engine {
    position: relative;
    z-index: 20;
    margin-top: 0 !important; /* Seamlessly attached to hero section with zero white gap */
    margin-bottom: 40px;
    background: #060B19;
}

.booking-engine-wrapper {
    background: linear-gradient(145deg, #0D1224, #141b31);
    border-radius: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4), 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    position: relative;
    border-top: 4px solid #C8A46B;
    transform: perspective(1000px) translateZ(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.booking-engine-wrapper:hover {
    transform: perspective(1000px) translateZ(20px) translateY(-5px);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.5), 
        0 15px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.05);
}

.booking-engine-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.be-group {
    flex: 1;
    min-width: 150px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}

.be-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.be-group label i {
    color: #C8A46B;
}

.be-group input,
.be-group select {
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    outline: none;
    padding: 0;
    width: 100%;
}

.be-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.be-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.be-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8A46B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

.be-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.be-button-group {
    padding: 0 15px;
}

.be-submit-btn {
    background: linear-gradient(145deg, #e6c594, #c29957);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 
        0 8px 15px rgba(200, 164, 107, 0.5), 
        inset 0 2px 3px rgba(255, 255, 255, 0.4), 
        inset 0 -3px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.be-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 20px rgba(200, 164, 107, 0.6), 
        inset 0 2px 3px rgba(255, 255, 255, 0.5), 
        inset 0 -3px 5px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #f0d0a2, #ceaa6b);
}

.be-submit-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
        0 4px 8px rgba(200, 164, 107, 0.4), 
        inset 0 3px 6px rgba(0, 0, 0, 0.2);
}

.be-group select option { background: #0D1224; color: #fff; }

.premium-footer {
    animation: footerBorderGlow 4s infinite alternate;
}

.premium-footer .footer-logo img {
    animation: footerLogoPulse 3s infinite ease-in-out;
}

.premium-footer .footer-col {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.premium-footer .footer-col:hover {
    transform: translateY(-5px);
}



/* Better Premium Dual Ring Animation */
.premium-footer .footer-logo a {
    position: relative;
    z-index: 1;
}

/* 
.premium-footer .footer-logo a::before,
.premium-footer .footer-logo a::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.premium-footer .footer-logo a::before {
    width: 36px;
    height: 36px;
    border: 2px dashed #C8A46B;
    animation: spinBorderPrimaryGlobal 6s linear infinite;
}

.premium-footer .footer-logo a::after {
    left: -8px;
    width: 40px;
    height: 40px;
    border: 1px dotted rgba(255, 255, 255, 0.5);
    animation: spinBorderSecondaryGlobal 10s linear infinite;
}
*/

.premium-footer .footer-logo img {
    position: relative;
    z-index: 2;
    border: 2px solid #0D1224; /* Add a dark border to separate the image from the spinning aura */
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Global Logo Animations */
@keyframes spinBorderPrimaryGlobal {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); box-shadow: 0 0 5px rgba(200, 164, 107, 0.4); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.05); box-shadow: 0 0 15px rgba(200, 164, 107, 0.8); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); box-shadow: 0 0 5px rgba(200, 164, 107, 0.4); }
}

@keyframes spinBorderSecondaryGlobal {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Header Logo (50x50) */
.logo a {
    position: relative;
    z-index: 1;
}
.logo a::before, .logo a::after {
    display: none;
}
.logo img {
    position: relative;
    z-index: 2;
}

/* Mobile Logo (40x40) */
.mobile-logo a {
    position: relative;
    z-index: 1;
}
.mobile-logo a::before, .mobile-logo a::after {
    display: none;
}
.mobile-logo img {
    position: relative;
    z-index: 2;
}

/* Fix submenu text visibility */
.main-menu ul li .submenu li a {
    color: var(--heading-color) !important;
    text-transform: capitalize !important;
}
.main-menu ul li .submenu li a:hover {
    color: var(--primary-color) !important;
}

/* Facilities Filter Buttons */
.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading, sans-serif);
    text-transform: uppercase;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.filter-btn:hover, .filter-btn.active {
    background: #D4AF37;
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Booking Grid Layout Fix */
.ds-booking-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 992px) { .ds-booking-grid { grid-template-columns: 1fr; gap: 20px; } }


/* Mobile Hero Fixes */
@media (max-width: 768px) {
    .hero-slider { height: 55vh !important; min-height: 400px !important; }
    .hero-slide { background-size: cover !important; background-position: center !important; }
    .hero-title { font-size: 32px !important; }
    .hero-static-content { transform: translate(-50%, -40%) !important; }
}

@media (max-width: 768px) { .hero-booking-engine { margin-top: 30px !important; margin-bottom: 30px !important; } .hero-dots { bottom: 15px !important; } }

/* ==========================================================================
   GLOBAL RESPONSIVE FIXES (ADDED AUTOMATICALLY)
   ========================================================================== */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}

img, video {
    max-width: 100% !important;
    height: auto;
}

/* Ensure all flex and grid containers can break to columns on small screens */
@media (max-width: 991px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    /* Typically desktop grids */
    .rooms-grid, .gallery-grid, .blog-grid, .footer-grid, .features-grid, .amenities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    /* Stack elements vertically on mobile */
    .rooms-grid, .gallery-grid, .blog-grid, .footer-grid, .features-grid, .amenities-grid,
    .booking-engine-wrapper .row, .contact-grid {
        grid-template-columns: 1fr !important;
        display: grid;
        gap: 15px !important;
    }
    
    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-9, .col-md-4, .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    /* Typography Scaling */
    h1, .hero-title { font-size: 2.2rem !important; line-height: 1.2 !important; }
    h2, .section-title h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.2rem !important; }
    p { font-size: 1rem !important; }
    
    /* Spacing optimizations */
    .section-padding, .about-section, .rooms-section, .services-section, .gallery-section, .blog-section {
        padding: 60px 0 !important;
    }
    
    /* Header & Navigation fixes */
    .header-area {
        padding: 10px 0 !important;
    }
    .mobile-menu-area {
        display: block !important;
    }
    
    /* Forms & Buttons touch targets */
    input, select, textarea, button, .theme-btn {
        min-height: 48px !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Ensure padding inside containers is reasonable */
    .about-content, .contact-content, .booking-form-wrap {
        padding: 20px !important;
    }
    
    /* Modals & Popups */
    .modal-content, .popup-content {
        width: 95% !important;
        margin: 10px auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    h1, .hero-title { font-size: 1.8rem !important; }
    h2, .section-title h2 { font-size: 1.5rem !important; }
    
    .hero-slider {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    .footer-bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
}



/* ==========================================================================
   MASTER RESPONSIVE BREAKPOINTS (MOBILE, TABLET, LAPTOP, DESKTOP)
   ========================================================================== */

/* Global Overflow Prevention & Typography Setup */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-title { font-size: clamp(1.8rem, 6vw, 4rem) !important; line-height: 1.2 !important; }
h2, .section-title h2 { font-size: clamp(1.5rem, 5vw, 2.5rem) !important; line-height: 1.3 !important; }

/* --------------------------------------------------------------------------
   1. Mobile (< 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    /* Header */
    .header-area {
        position: sticky !important;
        top: 0;
        z-index: 1000;
        margin: 0 !important;
        border: none !important;
    }
    .header-top { display: none !important; }
    
    .mobile-menu-area { display: block !important; }
    .mobile-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 20px !important;
        background: #0D1224 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border: none !important;
    }
    
    .menu-toggle {
        order: -1 !important;
        margin: 0 !important;
        padding: 10px !important;
    }

    .mobile-logo {
        position: static !important;
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        margin-right: 30px !important; /* Offset for hamburger width */
    }
    .mobile-logo a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .mobile-logo img {
        height: 40px !important;
        width: 40px !important;
    }
    .mobile-logo .logo-text {
        font-size: 1.1rem !important;
        white-space: nowrap !important;
        color: #fff !important;
        display: inline-block !important;
        vertical-align: middle !important;
        line-height: 1 !important;
    }

    /* Hero Section */
    .hero-slider {
        height: 55vh !important;
        min-height: 350px !important;
        position: relative !important;
        background-color: transparent !important;
    }
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        height: 100% !important;
        width: 100% !important;
    }
    .hero-static-content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-prev, .hero-next { display: none !important; }
    .hero-dots {
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        justify-content: center !important;
        width: 100%;
    }

    /* Booking Form */
    .hero-booking-engine {
        margin-top: -30px !important;
        position: relative !important;
        z-index: 20 !important;
        padding: 0 15px !important;
        background: transparent !important;
    }
    .booking-engine-wrapper {
        background: #0D1224 !important;
        border-radius: 12px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }
    .be-group {
        width: calc(50% - 6px) !important;
        flex: 0 0 calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        margin-bottom: 12px !important;
        border: none !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .btn-check {
        width: 100% !important;
        padding: 15px !important;
    }

    /* Grids (1-Column) */
    .row { display: flex !important; flex-direction: column !important; margin: 0 !important; }
    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-9, .col-md-4, .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-bottom: 25px;
    }
    
    /* Footer */
    .footer-widget { text-align: left !important; margin-bottom: 30px !important; }
    .footer-social, .footer-contact li { justify-content: flex-start !important; text-align: left !important; }
}

/* --------------------------------------------------------------------------
   2. Tablet (768px - 1023px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Header (Mobile nav is visible under 992px typically, adjust padding) */
    .header-area {
        position: sticky !important;
        top: 0;
        z-index: 1000;
    }
    .mobile-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 30px !important; /* wider padding for tablet */
        background: #0D1224 !important;
    }
    .menu-toggle { order: -1 !important; }
    .mobile-logo { position: static !important; flex: 1 !important; display: flex !important; justify-content: center !important; }
    .mobile-logo a { display: flex !important; align-items: center !important; gap: 10px !important; }
    
    @media (max-width: 991px) {
        .header-top { display: none !important; }
    }

    /* Hero */
    .hero-slider { height: 60vh !important; min-height: 450px !important; position: relative !important; }
    .hero-slide { background-size: cover !important; background-position: center center !important; height: 100% !important; width: 100% !important; }
    .hero-static-content { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -50%) !important; padding: 0 30px !important; text-align: center; width: 100%; box-sizing: border-box; }

    /* Booking Form (2x2 Grid) */
    .hero-booking-engine {
        margin-top: -40px !important;
        position: relative !important;
        z-index: 20 !important;
        padding: 0 30px !important;
    }
    .booking-engine-wrapper {
        background: #0D1224 !important;
        border-radius: 12px !important;
        padding: 25px !important;
    }
    /* Override bootstrap row for custom 2x2 grid */
    .hero-booking-engine .row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        margin: 0 -10px !important;
    }
    .hero-booking-engine .col-lg-3, .hero-booking-engine .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 10px !important;
        margin-bottom: 20px;
    }
    .be-group { border: none !important; margin-bottom: 0 !important; padding: 0 !important; }
    .btn-check { width: 100% !important; padding: 15px !important; }
}

/* --------------------------------------------------------------------------
   3. Laptop (1024px - 1439px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1439px) {
    /* Desktop nav is normally visible here */
    .header-area {
        position: sticky !important;
        top: 0;
        z-index: 1000;
        background: #fff;
    }
    .mobile-menu-area { display: none !important; }
    
    /* Hero */
    .hero-slider { height: 80vh !important; }
    
    /* Booking Form is horizontally aligned */
    .hero-booking-engine {
        margin-top: -50px !important;
        position: relative !important;
        z-index: 20 !important;
        padding: 0 50px !important;
    }
}

/* --------------------------------------------------------------------------
   4. Desktop (>= 1440px)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
    /* Prevent site from stretching too infinitely on huge 4k screens */
    .container {
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
    .hero-slider { height: 85vh !important; }
    .hero-booking-engine {
        margin-top: -60px !important;
        padding: 0 100px !important;
    }
}

/* ==========================================================================
   GLOBAL SAFETY NET (ACCESSIBILITY, OVERFLOW & MEDIA)
   ========================================================================== */
/* Force absolute overflow constraints globally */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    word-wrap: break-word !important;
}

/* Ensure no media ever overflows its container */
img, video, iframe, canvas, svg {
    max-width: 100% !important;
    height: auto;
}

/* Accessibility: Touch targets on mobile devices */
@media (max-width: 767px) {
    button, 
    input[type="submit"], 
    input[type="button"], 
    .btn, 
    a.btn {
        min-height: 48px !important; /* WCAG touch target size */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    input, select, textarea {
        font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
    }
}

/* ==========================================================================
   FINAL AUDIO FEEDBACK: HEADER FIXES (RIGHT MENU, CENTER LOGO, THIN, NO WHITE LINES)
   ========================================================================== */
@media (max-width: 991px) {
    /* 1. Remove all white lines, margins, borders from body and header */
    body, html {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .header-area {
        position: fixed !important; /* Fixed instead of sticky might help eliminate gaps above */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important; /* Remove any shadow that might look like a line */
        background: #0D1224 !important;
    }

    /* Adjust page content so it doesn't hide under fixed header */
    body {
        padding-top: 60px !important; 
    }

    /* 2. Reduce thickness (height) of the header */
    .mobile-header {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important; /* Push hamburger to the right */
        padding: 5px 15px !important; /* Much thinner padding */
        background: #0D1224 !important;
        width: 100% !important;
        height: 60px !important; /* Fixed thin height */
        box-sizing: border-box !important;
        margin: 0 !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* 3. Hamburger on the right */
    .menu-toggle {
        order: 2 !important; /* Ensure it's on the right */
        margin: 0 !important;
        margin-left: auto !important; /* Push it to the corner */
        padding: 5px !important;
        z-index: 10 !important;
    }

    /* 4. Logo perfectly centered */
    .mobile-logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 5 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        width: auto !important;
    }

    .mobile-logo a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    /* Make logo slightly smaller to fit the thinner header */
    .mobile-logo img {
        height: 35px !important;
        width: 35px !important;
    }

    .mobile-logo .logo-text {
        font-size: 1.1rem !important;
        white-space: nowrap !important;
        color: #fff !important;
        margin: 0 !important;
        line-height: 1 !important;
    }
}

/* ==========================================================================
   BULLETPROOF HAMBURGER ON THE RIGHT
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-header {
        position: relative !important;
        display: block !important; /* Reset flex just in case */
        height: 60px !important;
    }

    .menu-toggle {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        right: 15px !important;
        left: auto !important;
        margin: 0 !important;
        z-index: 20 !important;
        display: block !important;
    }

    .mobile-logo {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        width: auto !important;
        z-index: 5 !important;
    }
}

/* ==========================================================================
   ULTIMATE GRID HEADER FIX (SOLVES ALL OVERLAP & CLICK ISSUES)
   ========================================================================== */
@media (max-width: 991px) {
    /* Create a strict 3-column grid */
    .mobile-header {
        display: grid !important;
        grid-template-columns: 50px 1fr 50px !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 10px !important;
        background: #0D1224 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 9999 !important;
    }
    
    /* Logo perfectly centered in the middle column */
    .mobile-logo {
        grid-column: 2 !important;
        display: flex !important;
        justify-content: center !important;
        position: static !important; /* Remove old absolute positioning */
        transform: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .mobile-logo a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 auto !important;
    }

    /* Restrict the hamburger button to exactly 40x40 pixels in the right column */
    .menu-toggle {
        grid-column: 3 !important;
        justify-self: end !important;
        position: static !important; /* Remove old absolute positioning */
        transform: none !important;
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
        padding: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        background: transparent !important;
        border: none !important;
        z-index: 10000 !important;
    }
    
    /* Ensure the spans inside the hamburger don't stretch it */
    .menu-toggle span {
        width: 24px !important;
        height: 2px !important;
        margin: 0 auto !important;
    }
}

/* ==========================================================================
   MOVE HAMBURGER TO THE LEFT (AS REQUESTED)
   ========================================================================== */
@media (max-width: 991px) {
    /* Move hamburger button to the far left column */
    .menu-toggle {
        grid-column: 1 !important;
        justify-self: start !important;
    }
}

/* ==========================================================================
   FORCE GRID ROW 1 (PREVENT WRAPPING)
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-logo {
        grid-row: 1 !important;
    }
    .menu-toggle {
        grid-row: 1 !important;
        align-self: center !important;
    }
}

/* ==========================================================================
   FIX ZOOMED-IN HERO IMAGE ON MOBILE (AUDIO FEEDBACK)
   ========================================================================== */
@media (max-width: 767px) {
    /* Reduce the hero height to maintain a better landscape aspect ratio on portrait phones */
    .hero-slider {
        height: 65vw !important; /* Scale height based on phone width to keep aspect ratio */
        min-height: 320px !important;
        max-height: 400px !important;
        position: relative !important;
    }

    .hero-slide {
        background-size: cover !important;
        background-position: top center !important; /* Keep the top of the building/logo visible */
        height: 100% !important;
        width: 100% !important;
    }

    /* Scale down the text slightly so it fits beautifully in the smaller banner */
    .hero-static-content {
        padding: 0 15px !important;
    }

    .hero-title {
        font-size: 1.5rem !important; /* Smaller text so it doesn't crowd the image */
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }

    .hero-btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
}

/* FORCE VISIBILITY FOR ALL MOBILE NAV ITEMS */
.mobile-nav ul li { display: block !important; visibility: visible !important; opacity: 1 !important; height: auto !important; }
.mobile-nav ul li a { display: block !important; visibility: visible !important; opacity: 1 !important; }

/* ======================================================
   MOBILE & TABLET HERO BOOKING ENGINE (DESKTOP MATCHING ROW)
   ====================================================== */
@media (max-width: 991px) {
    .hero-booking-engine {
        position: relative !important;
        margin-top: -40px !important;
        z-index: 20 !important;
        padding: 0 12px !important;
        background: transparent !important;
    }

    .booking-engine-wrapper {
        background: linear-gradient(145deg, #0D1224, #141b31) !important;
        border-radius: 15px !important;
        border-top: 4px solid #C8A46B !important;
        padding: 12px 10px !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .booking-engine-wrapper .booking-engine-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        min-width: 650px !important;
    }

    .booking-engine-wrapper .be-divider {
        display: block !important;
        width: 1px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.15) !important;
        flex-shrink: 0 !important;
        margin: 0 5px !important;
    }

    .hero-booking-engine .be-group,
    .booking-engine-wrapper .be-group {
        flex: 1 !important;
        min-width: 120px !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 6px 12px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-booking-engine .be-group label,
    .booking-engine-wrapper .be-group label {
        font-family: 'Inter', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 6px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }

    .hero-booking-engine .be-group label i,
    .booking-engine-wrapper .be-group label i {
        color: #C8A46B !important;
    }

    .hero-booking-engine .be-group input,
    .hero-booking-engine .be-group select,
    .booking-engine-wrapper .be-group input,
    .booking-engine-wrapper .be-group select {
        border: none !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        background: transparent !important;
        outline: none !important;
        padding: 0 !important;
        height: auto !important;
        width: 100% !important;
        box-shadow: none !important;
    }

    .hero-booking-engine .be-button-group,
    .booking-engine-wrapper .be-button-group {
        width: auto !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }

    .hero-booking-engine .be-submit-btn,
    .booking-engine-wrapper .be-submit-btn {
        padding: 12px 24px !important;
        height: auto !important;
        border-radius: 30px !important;
        background: linear-gradient(135deg, #d4af37, #b88426) !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
        white-space: nowrap !important;
        cursor: pointer !important;
    }
}

/* ======================================================
   MOBILE & TABLET FOOTER (DESKTOP MATCHING 3-COL LAYOUT)
   ====================================================== */
@media (max-width: 991px) {
    .premium-footer {
        padding: 25px 0 0 !important;
        background: #090D1A !important;
    }

    .premium-footer .footer-grid,
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1.2fr 0.8fr 1fr !important;
        gap: 12px !important;
        align-items: start !important;
    }

    .footer-col {
        margin-bottom: 0 !important;
        text-align: left !important;
    }

    .footer-logo {
        margin-bottom: 8px !important;
    }

    .footer-logo img {
        height: 26px !important;
        width: 26px !important;
    }

    .footer-logo .logo-text {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    .footer-desc {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .footer-contact {
        padding: 0 !important;
        margin-bottom: 8px !important;
    }

    .footer-contact li {
        font-size: 0.7rem !important;
        margin-bottom: 4px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        text-align: left !important;
    }

    .footer-contact li i {
        font-size: 10px !important;
        color: #C8A46B !important;
    }

    .footer-social {
        display: flex !important;
        gap: 6px !important;
        margin-top: 6px !important;
        justify-content: flex-start !important;
    }

    .footer-social a {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.08) !important;
        color: #fff !important;
    }

    .footer-col-title {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        padding-bottom: 4px !important;
        border-bottom: 2px solid #C8A46B !important;
        display: inline-block !important;
        color: #C8A46B !important;
    }

    .footer-links {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .footer-links li {
        margin-bottom: 3px !important;
    }

    .footer-links a {
        font-size: 0.7rem !important;
        color: rgba(255,255,255,0.7) !important;
        text-decoration: none !important;
    }

    .newsletter-form {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
        margin-bottom: 6px !important;
    }

    .newsletter-form input {
        height: 32px !important;
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        color: #fff !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .newsletter-form button {
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        background: #C8A46B !important;
        color: #000 !important;
        border: none !important;
        text-transform: uppercase !important;
    }

    .footer-privacy {
        font-size: 0.65rem !important;
        margin-top: 4px !important;
        color: rgba(255,255,255,0.5) !important;
    }

    .footer-bottom {
        padding: 10px 0 !important;
        margin-top: 15px !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
        font-size: 0.65rem !important;
    }

    .footer-bottom-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .footer-bottom-left, .footer-bottom-right {
        font-size: 0.65rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
}

/* ======================================================
   MOBILE HERO BOOKING ENGINE (100% FULL WIDTH EDGE-TO-EDGE)
   ====================================================== */
@media (max-width: 991px) {
    .hero-booking-engine {
        position: relative !important;
        margin-top: 0 !important;
        margin-bottom: 25px !important;
        z-index: 20 !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #060B19 !important;
    }

    .hero-booking-engine .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .booking-engine-wrapper {
        background: #060B19 !important;
        border-radius: 0 !important;
        padding: 18px 14px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .booking-engine-wrapper .booking-engine-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 14px 10px !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .booking-engine-wrapper .be-divider {
        display: none !important;
    }

    .hero-booking-engine .be-group,
    .booking-engine-wrapper .be-group {
        width: calc(50% - 5px) !important;
        flex: 0 0 calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-booking-engine .be-group label,
    .booking-engine-wrapper .be-group label {
        font-family: 'Inter', sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #d4af37 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 6px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }

    .hero-booking-engine .be-group label i,
    .booking-engine-wrapper .be-group label i {
        color: #d4af37 !important;
        font-size: 13px !important;
    }

    .hero-booking-engine .be-group input,
    .hero-booking-engine .be-group select,
    .booking-engine-wrapper .be-group input,
    .booking-engine-wrapper .be-group select {
        width: 100% !important;
        height: 42px !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
        padding: 0 10px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #333333 !important;
        box-shadow: none !important;
        outline: none !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }

    .hero-booking-engine .be-group select,
    .booking-engine-wrapper .be-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555555'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 10px center !important;
        background-size: 16px !important;
        padding-right: 25px !important;
    }

    .hero-booking-engine .be-button-group,
    .booking-engine-wrapper .be-button-group {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 4px !important;
        padding: 0 !important;
    }

    .hero-booking-engine .be-submit-btn,
    .booking-engine-wrapper .be-submit-btn {
        width: 100% !important;
        height: 46px !important;
        border-radius: 6px !important;
        background: linear-gradient(135deg, #d49f37, #b88226) !important;
        color: #1a1a1a !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 800 !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(212, 159, 55, 0.3) !important;
        white-space: nowrap !important;
        cursor: pointer !important;
    }
}

/* ======================================================
   30% REDUCED COMPACT MOBILE FOOTER
   ====================================================== */
@media (max-width: 991px) {
    .premium-footer {
        padding: 16px 10px 0 !important;
        background: #090D1A !important;
        overflow-x: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .premium-footer .container,
    .footer-area .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2-Row Grid: Row 1 = Hotel Info (100%), Row 2 = Useful Links (50%) | Stay Updated (50%) */
    .premium-footer .footer-grid,
    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 14px 10px !important;
        align-items: start !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Row 1: Brand & Contact Info Full Width */
    .footer-grid > .footer-col:nth-child(1) {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        padding-bottom: 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 0 !important;
    }

    /* Row 2 Left: Useful Links */
    .footer-grid > .footer-col:nth-child(2) {
        grid-column: 1 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Row 2 Right: Stay Updated Newsletter */
    .footer-grid > .footer-col:nth-child(3) {
        grid-column: 2 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    .footer-col {
        min-width: 0 !important;
        text-align: left !important;
    }

    /* Logo & Brand Name */
    .footer-logo a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
        margin-bottom: 6px !important;
    }

    .footer-logo img {
        height: 24px !important;
        width: 24px !important;
        border-radius: 50% !important;
    }

    .footer-logo .logo-text {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        white-space: nowrap !important;
        margin: 0 !important;
        font-family: var(--font-heading) !important;
    }

    .footer-desc {
        font-size: 0.65rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .footer-contact {
        padding: 0 !important;
        margin-bottom: 8px !important;
        list-style: none !important;
    }

    .footer-contact li {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 6px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        word-break: break-word !important;
        line-height: 1.2 !important;
    }

    .footer-contact li a,
    .footer-contact li span {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.65rem !important;
        word-break: break-word !important;
    }

    .footer-contact li i {
        font-size: 10px !important;
        color: #C8A46B !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .footer-social {
        display: flex !important;
        gap: 6px !important;
        margin-top: 6px !important;
        justify-content: flex-start !important;
        list-style: none !important;
        padding: 0 !important;
    }

    .footer-social a {
        width: 22px !important;
        height: 22px !important;
        font-size: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.08) !important;
        color: #fff !important;
    }

    .footer-col-title {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        margin-top: 0 !important;
        margin-bottom: 6px !important;
        padding-bottom: 3px !important;
        border-bottom: 2px solid #C8A46B !important;
        display: inline-block !important;
        color: #C8A46B !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
    }

    .footer-links {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .footer-links li {
        margin-bottom: 4px !important;
    }

    .footer-links a {
        font-size: 0.65rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-decoration: none !important;
    }

    .newsletter-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        margin-bottom: 6px !important;
        width: 100% !important;
    }

    .newsletter-form input {
        height: 28px !important;
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        color: #fff !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .newsletter-form button {
        height: 28px !important;
        padding: 0 10px !important;
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        background: linear-gradient(135deg, #d4af37, #b88426) !important;
        color: #000 !important;
        border: none !important;
        text-transform: uppercase !important;
        width: 100% !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
    }

    .footer-privacy {
        font-size: 0.6rem !important;
        margin-top: 4px !important;
        color: rgba(255, 255, 255, 0.5) !important;
        line-height: 1.2 !important;
    }

    /* SAFE BOTTOM CLEARANCE FOR FLOATING BUTTONS */
    .footer-bottom {
        padding-top: 12px !important;
        padding-bottom: 85px !important;
        margin-top: 12px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .footer-bottom-inner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px !important;
    }

    .footer-bottom-left, 
    .footer-bottom-right {
        font-size: 0.6rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
    }
}

/* ======================================================
   STRICT LEFT ALIGNMENT FOR FOOTER CONTACT & BRAND INFO
   ====================================================== */
@media (max-width: 991px) {
    .premium-footer .footer-col,
    .footer-col {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-logo,
    .footer-logo a {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .footer-contact {
        padding: 0 !important;
        margin: 0 0 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
    }

    .footer-contact li {
        justify-content: flex-start !important;
        text-align: left !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .footer-contact li i {
        margin-right: 4px !important;
        flex-shrink: 0 !important;
    }

    .footer-contact li a,
    .footer-contact li span {
        text-align: left !important;
        display: inline-block !important;
    }

    .footer-social {
        justify-content: flex-start !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        width: 100% !important;
    }
}

/* ======================================================
   MOBILE SIDE DRAWER OVERLAY MENU (HIGHEST PRIORITY)
   ====================================================== */
.mobile-nav-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    z-index: 999998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.mobile-nav-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 991px) {
    .mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #090D1A !important;
        z-index: 999999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 20px 18px !important;
        box-sizing: border-box !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 8px 0 25px rgba(0, 0, 0, 0.6) !important;
        overflow-y: auto !important;
        border-right: 1px solid rgba(212, 175, 55, 0.2) !important;
    }

    .mobile-nav.active {
        transform: translateX(0) !important;
    }

    /* Drawer Header */
    .mobile-drawer-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 15px !important;
    }

    .mobile-drawer-logo {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .mobile-drawer-logo img {
        height: 30px !important;
        width: 30px !important;
        border-radius: 50% !important;
    }

    .mobile-drawer-logo span {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        font-family: var(--font-heading) !important;
        white-space: nowrap !important;
    }

    .mobile-drawer-close {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        font-size: 22px !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        line-height: 1 !important;
        transition: background 0.2s !important;
    }

    .mobile-drawer-close:hover {
        background: rgba(212, 175, 55, 0.3) !important;
        color: #C8A46B !important;
    }

    /* Drawer Navigation Links */
    .mobile-drawer-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        flex-grow: 1 !important;
    }

    .mobile-drawer-links li {
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .mobile-drawer-links li a {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 10px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        border-radius: 6px !important;
    }

    .mobile-drawer-links li a i {
        font-size: 14px !important;
        color: #C8A46B !important;
        width: 18px !important;
        text-align: center !important;
    }

    .mobile-drawer-links li a:hover,
    .mobile-drawer-links li a:active {
        background: rgba(212, 175, 55, 0.12) !important;
        color: #C8A46B !important;
        padding-left: 14px !important;
    }

    /* Drawer Footer Golden Button */
    .mobile-drawer-footer {
        padding-top: 18px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-top: 15px !important;
    }

    .mobile-drawer-cta-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        height: 44px !important;
        background: linear-gradient(135deg, #d4af37, #b88426) !important;
        color: #000000 !important;
        font-weight: 700 !important;
        font-size: 0.85rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
    }

    .mobile-drawer-cta-btn:active {
        transform: scale(0.98) !important;
    }
}

/* ======================================================
   HIDE LEFT TOGGLE BUTTON WHEN DRAWER IS OPEN & STYLE TOP BOOKING NOW
   ====================================================== */
#mobileMenuToggle.active {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

.mobile-drawer-links li a.mobile-drawer-booking-link {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(184, 132, 38, 0.25)) !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    color: #C8A46B !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15) !important;
}

.mobile-drawer-links li a.mobile-drawer-booking-link i {
    color: #C8A46B !important;
}

/* BULLETPROOF CLOSE BUTTON TOUCH TARGET & Z-INDEX */
.mobile-drawer-close {
    position: relative !important;
    z-index: 10000000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
    touch-action: manipulation !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 24px !important;
}

.mobile-drawer-close:active {
    background: rgba(212, 175, 55, 0.4) !important;
    color: #C8A46B !important;
}

/* ==============================================================
   COMPREHENSIVE RESPONSIVE AUDIT FIXES (ADDED JUL 2026)
   Fixes grid, paddings, scaling, forms across all device sizes.
   ============================================================== */

@media (max-width: 1199px) {
    .rooms-grid, .pricing-grid, .gallery-grid, .blog-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .rooms-grid, .pricing-grid, .gallery-grid, .blog-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    /* Header layout */
    .header-top .col-lg-3, .header-top .col-lg-9 { width: 100% !important; }
    .header-top .logo { margin-bottom: 10px; justify-content: center; }
    
    /* Contact sections */
    .manager-section .row, .contact-section .row { flex-direction: column; }
    .manager-section .col-lg-6, .contact-section .col-lg-6 { width: 100% !important; padding: 15px !important; }
    
    /* About section */
    .about-area .row { flex-direction: column; }
    .about-img { margin-bottom: 30px; }
    
    /* Room Details */
    .room-detail-layout { flex-direction: column !important; }
    .room-detail-sidebar { width: 100% !important; padding-left: 0 !important; margin-top: 30px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 767px) {
    /* Grids to 1 column */
    .rooms-grid, .pricing-grid, .gallery-grid, .blog-grid {
        grid-template-columns: 1fr !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Forms & Inputs Touch Friendliness */
    input, select, textarea, .theme-btn {
        width: 100% !important;
        padding: 15px 18px !important; /* Larger touch targets */
        font-size: 16px !important; /* Prevents iOS auto-zoom */
    }
    
    /* Two-column forms */
    .form-row, .form-two-col, .stay-options-row, [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Padding Reductions */
    section { padding: 50px 0 !important; }
    .breadcrumb-area { height: 250px !important; }
    .breadcrumb-content h2 { font-size: 32px !important; }
    
    /* Gallery Modal */
    .modal-content { height: 95vh !important; }
    .modal-body { flex-direction: column !important; }
    
    /* Testimonials Compact for 1 screen fit */
    .testimonials-section { padding: 30px 0 !important; }
    .testimonials-section .section-title { margin-bottom: 20px !important; }
    .testimonials-section .section-title h3 { font-size: 24px !important; margin-top: 5px !important; }
    .testimonial-content { padding: 20px 15px !important; }
    .testimonial-content > p, .testimonial-right p { 
        margin-bottom: 15px !important; 
        font-size: 14px !important; 
        line-height: 1.5 !important; 
    }
    .split-avatar, .testimonial-author img {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 5px !important;
    }
    .testimonials-section .owl-dots { 
        margin-top: 15px !important; 
        display: block !important;
        text-align: center !important;
    }
    
    /* Fix Owl Dots Stacking Vertically */
    button.owl-dot {
        display: inline-block !important;
        width: auto !important;
        border: none !important;
        background: none !important;
        padding: 0 !important;
        margin: 0 5px !important;
    }
    
    /* Stats Grid Compact */
    .stats-grid {
        gap: 30px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Universal Footer Bottom Bar across All Screen Sizes */
.footer-bottom-inner { 
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important; 
    width: 100% !important;
    gap: 8px !important;
    padding: 10px 0 !important;
}
.footer-bottom-row { 
    display: flex !important;
    flex-direction: row !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: 10px !important; 
}
.footer-bottom-left { 
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
}
.footer-bottom-right { 
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    margin-left: auto !important;
    text-align: right !important;
}
.payment-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 4px !important;
}

@media (max-width: 767px) {
    .container { padding-left: 15px !important; padding-right: 15px !important; }
    .section-title h2 { font-size: 28px !important; }
    .hero-title { font-size: 32px !important; }
    
    .footer-bottom-row { 
        justify-content: space-between !important;
        gap: 8px !important;
    }
    .footer-bottom-left span,
    .footer-bottom-left b,
    .footer-bottom-right a,
    .footer-bottom-right span { 
        font-size: 11px !important;
    }
    .payment-icons {
        display: flex !important;
        gap: 8px !important;
    }
    
    /* Hero engine overlapping */
    .ds-booking-grid { grid-template-columns: 1fr !important; }
}

/* Active Menu Link Styling (Global) */
.main-menu ul li.active-link > a,
.mobile-drawer-links li.active-link > a,
.main-menu ul li > a.active-link,
.mobile-drawer-links li > a.active-link,
.mobile-drawer-links li.active-link > a > i {
    color: var(--primary-color) !important;
}

/* Universal Filter Buttons Styling for Mobile (Services, Facilities, Gallery, Rooms) */
@media (max-width: 767px) {
    .gallery-filter, 
    .rooms-filter, 
    #facilities-filter-bar,
    .filter-bar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 25px !important;
    }
    
    .gallery-filter button, 
    .rooms-filter button, 
    #facilities-filter-bar .filter-btn,
    .filter-btn {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 6px 14px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        margin: 2px !important;
        text-align: center !important;
        border-radius: 20px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        white-space: nowrap !important;
    }
}

/* Smart Sticky Header */
.header-area.nav-hidden {
    transform: translateY(-100%) !important;
}

/* Fix phone input cursor overlap */
input[id$="_mobile"], input[id$="Mobile"], input[name="mobile"], input[name="phone"] {
    padding-left: 65px !important;
}

/* ===== MOBILE FOOTER BOTTOM CLEANUP FIX ===== */
@media (max-width: 768px) {
    .premium-footer .footer-bottom, .footer-bottom {
        padding: 15px 15px 90px 15px !important;
    }
    .footer-bottom-inner {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .footer-bottom-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .footer-bottom-left {
        text-align: left !important;
        font-size: 11px !important;
    }
    .footer-bottom-right {
        text-align: right !important;
        margin-left: auto !important;
        gap: 8px !important;
        font-size: 11px !important;
    }
    .payment-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
    }
    
    /* Reposition Floating Action Buttons so they don't block footer text */
    #whatsappBtn, .whatsapp-float {
        bottom: 20px !important;
        left: 20px !important;
        z-index: 99999 !important;
    }
    #backToTop, .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
    }
}

/* ======================================================
   HERO BUBBLE EFFECT
   ====================================================== */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 9s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 15s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 80px; height: 80px; left: 50%; animation-duration: 18s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 35px; height: 35px; left: 55%; animation-duration: 10s; animation-delay: 5s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 65%; animation-duration: 13s; animation-delay: 3s; }
.bubble:nth-child(7) { width: 90px; height: 90px; left: 75%; animation-duration: 20s; animation-delay: 7s; }
.bubble:nth-child(8) { width: 25px; height: 25px; left: 80%; animation-duration: 8s; animation-delay: 1.5s; }
.bubble:nth-child(9) { width: 15px; height: 15px; left: 70%; animation-duration: 7s; animation-delay: 4.5s; }
.bubble:nth-child(10) { width: 60px; height: 60px; left: 85%; animation-duration: 14s; animation-delay: 6s; }

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        bottom: 110%;
        transform: translateX(-50px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== COMPACT CAPTCHA (LUXURY) ===== */
.hgi-honeypot-field {
    display: none !important;
}

.hgi-captcha-wrapper {
    background: #fdfdfd;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hgi-captcha-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 5px;
}

.hgi-captcha-title {
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hgi-captcha-title i {
    color: var(--primary-color, #d4af37);
    font-size: 14px;
}

.hgi-captcha-badge {
    color: #94a3b8;
    font-size: 11px;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.hgi-captcha-grid {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hgi-captcha-svg-box {
    background: #1e293b;
    border-radius: 8px;
    flex: 0 0 150px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.hgi-captcha-svg-box:hover {
    border-color: var(--primary-color, #d4af37);
}

.hgi-captcha-svg-box svg {
    max-width: 100%;
    height: 100%;
    display: block;
}

.hgi-captcha-refresh-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 16px;
    transition: all 0.2s;
}

.hgi-captcha-refresh-btn:hover {
    background: #e2e8f0;
    color: var(--secondary-color, #1a1a2e);
    border-color: #cbd5e1;
}

.hgi-captcha-input-wrap {
    flex: 1;
    min-width: 140px;
}

.hgi-captcha-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    outline: none;
    transition: all 0.2s;
    background: #ffffff;
    color: #1e293b;
    text-transform: uppercase;
}

.hgi-captcha-input::placeholder {
    color: #94a3b8;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

.hgi-captcha-input:focus {
    border-color: var(--primary-color, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.hgi-captcha-input.has-error {
    border: 2px solid #ef4444;
    background: #fff8f8;
}

.hgi-captcha-error {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
    margin-top: -2px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .hgi-captcha-grid {
        flex-direction: column;
    }
    .hgi-captcha-svg-box,
    .hgi-captcha-input-wrap,
    .hgi-captcha-refresh-btn {
        flex: none;
        width: 100%;
    }
}

