@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables & Design System --- */
:root {
    --primary: #1e62ec;
    --primary-hover: #154ec5;
    --primary-light: rgba(30, 98, 236, 0.1);
    --gold: #d4af37;
    --gold-hover: #bfa030;
    --dark-bg: #0b0c10;
    --dark-card: #15181f;
    --text-dark: #121824;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;
    --light-bg: #ffffff;
    --section-bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --border-dark: #202530;
    --mint-bg: #e6f9f0;
    --mint-text: #0f7648;
    --peach-bg: #fdf6ee;
    --peach-text: #7c2d12;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(30, 98, 236, 0.4);
}

.btn-outline {
    border: 2px solid var(--border-light);
    color: var(--text-dark);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}

/* --- Header / Navigation --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.sticky {
    position: fixed;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
}
.logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: white;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}
.phone-info i {
    color: var(--gold);
}

.btn-book {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 20px;
    font-size: 14px;
}
.btn-book:hover {
    background-color: white;
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    background-image: url('../images/hero_bedroom.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 12, 16, 0.85) 0%, rgba(11, 12, 16, 0.55) 50%, rgba(11, 12, 16, 0.9) 100%);
    z-index: 2; /* place overlay above video */
}

.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* place video behind overlay */
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* place slides behind overlay */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurnsZoom 6s ease-out forwards;
}

.hero-slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 25;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.25);
    box-shadow: 0 0 10px var(--gold);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content.text-changing {
    opacity: 0;
    transform: translateY(15px);
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85); /* Highly visible text shadow */
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85); /* Highly visible paragraph shadow */
}

/* --- Booking Bar --- */
.booking-bar-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    z-index: 20;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--primary);
    font-size: 16px;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.booking-form input:focus, .booking-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-search {
    width: 100%;
    height: 46px;
    border-radius: var(--radius-sm);
}

/* --- About Story Section --- */
.about-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
}
.about-img-wrapper.tall {
    height: 520px;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Promo Banners Section --- */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.promo-card {
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px;
    color: white;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.promo-card-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.promo-badge {
    background: var(--gold);
    color: var(--text-dark);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.promo-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
}

.promo-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.promo-card .btn-promo {
    padding: 8px 20px;
    font-size: 13px;
    background-color: white;
    color: var(--text-dark);
}
.promo-card .btn-promo:hover {
    background-color: var(--primary);
    color: white;
}

.promo-discount {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff3366;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
    animation: pulse 2s infinite;
}

.promo-discount span:first-child {
    font-size: 20px;
    font-weight: 800;
}
.promo-discount span:last-child {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Rooms Section (Luxury Living Spaces) --- */
.rooms-section {
    background-color: var(--dark-bg);
    color: white;
}

.rooms-section .section-title {
    color: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background-color: var(--dark-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.room-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.room-info {
    padding: 30px;
}

.room-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light-muted);
    margin-bottom: 12px;
}

.room-meta span i {
    color: var(--gold);
    margin-right: 4px;
}

.room-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    list-style: none;
    font-size: 12px;
    color: var(--text-light-muted);
}

.room-features li {
    background: var(--border-dark);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.room-price {
    font-size: 14px;
    color: var(--text-light-muted);
}

.room-price span {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}

.btn-room-book {
    padding: 8px 20px;
    font-size: 13px;
}

/* --- Trust Ribbon --- */
.trust-ribbon {
    background-color: var(--mint-bg);
    color: var(--mint-text);
    padding: 24px 0;
}

.trust-ribbon-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
}

.trust-item i {
    font-size: 24px;
}

/* --- Expect Section (Amenities) --- */
.expect-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.amenity-card {
    background-color: var(--section-bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.amenity-icon-wrapper {
    background-color: white;
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon-wrapper {
    background-color: var(--primary);
    color: white;
}

.amenity-card h4 {
    font-size: 16px;
    font-weight: 700;
}

.amenity-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.expect-img-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.expect-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Testimonial Section --- */
.testimonial-section {
    background-color: var(--peach-bg);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    margin-top: 40px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    color: var(--peach-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}
.testimonial-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-ctrl {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(124, 45, 18, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--peach-text);
    transition: var(--transition);
}
.btn-ctrl:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- Awards Banner --- */
.awards-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.awards-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.75);
}

.awards-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.award-badge {
    background: white;
    color: var(--text-dark);
    padding: 20px;
    border-radius: var(--radius-md);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.award-badge i {
    font-size: 40px;
    color: var(--gold);
}

.award-badge span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.awards-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.awards-content p {
    color: var(--text-light-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

/* --- FAQ Section --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: white;
    transition: var(--transition);
}

.faq-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background-color: var(--section-bg-light);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-header i {
    font-size: 14px;
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
    background-color: white;
    color: var(--primary);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* --- Virtual Tour / Gallery --- */
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.gallery-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.gallery-item {
    min-width: 250px;
    flex: 1;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Newsletter Section --- */
.newsletter-section {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1152px;
    color: white;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 72, 0.9) 0%, rgba(9, 79, 48, 0.95) 100%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-info p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 8px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form .btn-submit {
    background-color: white;
    color: var(--mint-text);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
}
.newsletter-form .btn-submit:hover {
    background-color: var(--primary);
    color: white;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light-muted);
    padding-top: 80px;
    padding-bottom: 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
    transition: var(--transition);
}
.social-link:hover {
    background-color: var(--primary);
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: white;
    transition: var(--transition);
}
.app-btn:hover {
    border-color: var(--primary);
    background: rgba(30, 98, 236, 0.1);
}

.app-btn i {
    font-size: 24px;
}
.app-btn div {
    text-align: left;
}
.app-btn div span {
    display: block;
    font-size: 10px;
    color: var(--text-light-muted);
    text-transform: uppercase;
}
.app-btn div strong {
    font-size: 13px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    font-size: 24px;
}

/* --- Premium Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
    color: white;
}
.preloader-crown {
    font-size: 50px;
    color: var(--gold);
    animation: pulseGold 2s infinite ease-in-out;
    margin-bottom: 20px;
}
.preloader-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.preloader-line {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-full);
}
.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: loadingLine 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseGold {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.15) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); }
}
@keyframes loadingLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* --- Scroll Entrance Reveals --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    will-change: transform, opacity;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    will-change: transform, opacity;
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    will-change: transform, opacity;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    filter: blur(0) !important;
}

/* --- Micro-interactions & Tilt support --- */
.logo i {
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover i {
    transform: rotate(360deg);
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold));
}

.room-card, .about-img-wrapper, .promo-card, .amenity-card {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.3s;
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::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: 0.6s ease;
    z-index: -1;
}
.btn:hover::after {
    left: 100%;
}

.form-group label {
    transition: color 0.3s, transform 0.3s;
}
.form-group:focus-within label {
    color: var(--primary);
    transform: translateY(-2px);
}
.input-icon-wrapper i {
    transition: color 0.3s, transform 0.3s;
}
.input-icon-wrapper:focus-within i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary);
}

.amenity-card .amenity-icon-wrapper {
    transition: background-color 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.amenity-card:hover .amenity-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
}

/* --- Parallax & Animations --- */
.hero {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: background-position;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
    100% { transform: translateY(-50%) scale(1); }
}

/* --- Dubai Areas Grid --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.area-card {
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover img {
    transform: scale(1.08);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0.2) 60%, transparent 100%);
    z-index: 1;
}

.area-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    color: white;
}

.area-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.area-card-content span {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Hotel Collections --- */
.category-section {
    position: relative;
}

/* Luxury Category Section Specifics */
.luxury-collection-section {
    background-color: var(--dark-bg);
    color: white;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.luxury-collection-section .section-title {
    color: white;
}

/* Hotel Cards Layout */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hotel-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hotel-card-luxury {
    background-color: var(--dark-card);
    border-color: var(--border-dark);
    color: white;
}

.hotel-card-luxury:hover {
    border-color: var(--gold);
}

.hotel-card-luxury .room-features li {
    background: var(--border-dark);
    color: var(--text-light-muted);
}

.hotel-card-luxury .room-footer {
    border-top-color: var(--border-dark);
}

.hotel-card-budget .room-price span {
    color: #0f7648; /* Budget pricing in premium green */
}

/* --- Travel Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-info {
    padding: 24px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.blog-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

/* --- Wishlist Heart Icon --- */
.wishlist-heart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(5px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    z-index: 5;
}
.wishlist-heart-btn:hover {
    color: #ff3366;
    transform: scale(1.1);
}
.wishlist-heart-btn.active {
    color: #ff3366;
    background: white;
    border-color: white;
    filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.5));
}

/* --- Compare Checkbox Wrapper --- */
.compare-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.compare-checkbox-wrapper input {
    cursor: pointer;
}

/* --- Modal Overlays & Boxes --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 12, 16, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-box {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    transform: scale(0.9);
    transition: var(--transition);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-box {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}
.modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Tab selectors for Login Modal */
.modal-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 20px;
    gap: 20px;
}
.modal-tab-btn {
    padding: 8px 0;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    font-size: 14px;
}
.modal-tab-btn.active {
    color: var(--primary);
}
.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}
.modal-tab-content {
    display: none;
}
.modal-tab-content.active {
    display: block;
}

/* Form Styles inside Modals */
.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.form-input-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-input-group input, .form-input-group select {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.form-input-group input:focus {
    border-color: var(--primary);
}
.btn-social-login {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    margin-top: 15px;
    font-size: 14px;
}
.btn-social-login:hover {
    background-color: var(--section-bg-light);
}

/* --- Wishlist Drawer --- */
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 380px;
    height: 100vh;
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 9990;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.wishlist-drawer.active {
    right: 0;
}
.wishlist-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.wishlist-drawer-close {
    font-size: 20px;
    cursor: pointer;
}
.wishlist-items-container {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wishlist-drawer-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}
.wishlist-drawer-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.wishlist-item-info {
    flex: 1;
}
.wishlist-item-info h4 {
    font-size: 14px;
    font-weight: 700;
}
.wishlist-item-info span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}
.wishlist-item-remove {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
}
.wishlist-item-remove:hover {
    color: #ff3366;
}

/* --- Hotel Comparison Bar --- */
.compare-bar {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: var(--shadow-lg);
    z-index: 9980;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
    border: 1px solid var(--border-light);
    border-bottom: none;
}
.compare-bar.active {
    bottom: 0;
}
.compare-items-list {
    display: flex;
    gap: 20px;
    align-items: center;
}
.compare-item-bubble {
    background: var(--section-bg-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-light);
}
.compare-item-bubble i {
    cursor: pointer;
    color: var(--text-muted);
}

/* Comparison Table Modal specific sizing */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}
.compare-table th, .compare-table td {
    padding: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
}
.compare-table th {
    background-color: var(--section-bg-light);
    font-weight: 700;
}

/* --- Live Chat Widget --- */
.chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 9970;
    cursor: pointer;
    transition: var(--transition);
}
.chat-toggle:hover {
    transform: scale(1.08) rotate(15deg);
    background-color: var(--primary-hover);
}
.chat-box {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 350px;
    height: 460px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9970;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.chat-box-header {
    background-color: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-agent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}
.chat-agent-info h4 {
    font-size: 14px;
    font-weight: 700;
}
.chat-agent-info span {
    font-size: 11px;
    opacity: 0.8;
}
.chat-box-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
}
.chat-box-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f8fafc;
}
.chat-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-message.agent {
    background-color: white;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: var(--shadow-sm);
}
.chat-message.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}
.chat-box-input-area {
    padding: 12px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 10px;
}
.chat-box-input-area input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    outline: none;
    font-size: 13px;
}
.chat-box-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--dark-bg);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 600;
    border-left: 4px solid var(--gold);
    animation: toastSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Navigation Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    min-width: 185px;
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: var(--transition);
    z-index: 150;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    width: 100%;
}

.nav-dropdown-menu li a {
    color: var(--text-light-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: var(--transition);
    text-align: left;
    text-decoration: none;
    border: none !important;
}

.nav-dropdown-menu li a::after {
    display: none !important; /* disable underline style inside dropdown menu */
}

.nav-dropdown-menu li a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Adjustments for dropdowns in RTL mode */
body[dir="rtl"] .nav-dropdown-menu li a {
    text-align: right;
}

/* --- Global RTL Language Rules --- */
body[dir="rtl"] {
    text-align: right;
}
body[dir="rtl"] .logo {
    direction: ltr; /* keep brand text left-to-right */
}
body[dir="rtl"] .phone-info {
    margin-right: 0 !important;
    margin-left: 15px;
}
body[dir="rtl"] .header-actions select {
    margin-left: 0 !important;
    margin-right: 5px;
}
body[dir="rtl"] .input-icon-wrapper i {
    left: auto;
    right: 14px;
}
body[dir="rtl"] .booking-form input, body[dir="rtl"] .booking-form select {
    padding-left: 14px;
    padding-right: 38px;
}
body[dir="rtl"] .wishlist-heart-btn {
    left: 15px;
    right: auto;
}
body[dir="rtl"] .wishlist-drawer {
    right: auto;
    left: -380px;
}
body[dir="rtl"] .wishlist-drawer.active {
    left: 0;
}
body[dir="rtl"] .chat-toggle {
    right: auto;
    left: 24px;
}
body[dir="rtl"] .chat-box {
    right: auto;
    left: 24px;
}
body[dir="rtl"] .toast-container {
    left: auto;
    right: 24px;
}
body[dir="rtl"] .toast {
    border-left: none;
    border-right: 4px solid var(--gold);
}
body[dir="rtl"] .faq-header {
    text-align: right;
}
body[dir="rtl"] .app-btn div {
    text-align: right;
}

/* --- Hotel Category Selector Styles --- */
.categories-container {
    padding-top: 10px;
    padding-bottom: 30px;
}

.categories-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 5px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    scroll-snap-type: x mandatory;
}

.categories-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.category-tile {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.category-tile.active {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(30, 98, 236, 0.15);
}

.category-tile i {
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition);
}

.category-tile.active i {
    color: var(--primary);
}

.category-tile:hover i {
    transform: scale(1.15) rotate(5deg);
}

.category-tile span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-align: center;
}

.category-tile.active span {
    color: var(--primary);
}

/* Hotel Card Filtering Animation class */
.hotel-card {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s;
}

.hotel-card.filtered-out {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1200px) {
    .nav-menu { gap: 16px; }
    .header-actions { gap: 10px; }
    .nav-link { font-size: 14px; }
    .phone-info { font-size: 13px; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .booking-bar-wrapper { bottom: -60px; width: 95%; }
    .booking-form { grid-template-columns: repeat(2, 1fr); }
    .btn-search { grid-column: span 2; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images-grid { order: -1; }
    
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .expect-grid { grid-template-columns: 1fr; gap: 40px; }
    .expect-img-wrapper { height: 400px; }
    
    .newsletter-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .newsletter-form { max-width: 500px; margin: 0 auto; }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .header { background: rgba(11, 12, 16, 0.95); padding: 15px 0; }
    
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-dark);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Responsive Dropdown Mobile Overrides */
    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: rgba(255,255,255,0.03);
        border: none;
        box-shadow: none;
        padding: 5px 0 0 20px;
        min-width: auto;
        display: none;
        transition: none;
        width: 100%;
        border-left: 2px solid var(--gold);
    }
    .nav-dropdown.active .nav-dropdown-menu {
        display: flex;
    }
    .nav-dropdown-menu li a {
        padding: 8px 15px;
        color: var(--text-light-muted);
        font-size: 14px;
        text-align: left;
    }
    body[dir="rtl"] .nav-dropdown-menu {
        border-left: none;
        border-right: 2px solid var(--gold);
        padding: 5px 20px 0 0;
    }
    body[dir="rtl"] .nav-dropdown-menu li a {
        text-align: right;
    }
    
    .header-actions { display: none; }
    
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    
    .booking-bar-wrapper { position: relative; bottom: 0; left: 0; transform: none; width: 100%; margin-top: -30px; border-radius: var(--radius-md); }
    .booking-form { grid-template-columns: 1fr; }
    .btn-search { grid-column: span 1; }
    
    .about-section { padding-top: 60px; }
    
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card { padding: 30px; height: auto; min-height: 240px; }
    .promo-card-content { max-width: 100%; }
    .promo-discount { display: none; }
    
    .rooms-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Layout Screenshot Custom Aesthetics --- */

/* Intro Welcome Images */
.intro-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.intro-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
}
.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.intro-img:hover img {
    transform: scale(1.05);
}

/* Promo Banners Grid */
.promo-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}
.promo-banner-card {
    border-radius: var(--radius-md);
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.promo-banner-card.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.promo-banner-card.blue {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.promo-badge-circle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

/* expect grid */
.expect-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}
.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.expect-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}
.expect-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.expect-card i {
    font-size: 24px;
    color: var(--gold);
}
.expect-card h4 {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}
.expect-card p {
    font-size: 12px;
    color: var(--text-muted);
}
.expect-right-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-lg);
}
.expect-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Bubble */
.testimonial-cream-box {
    background-color: #fdf5eb;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

/* Awards ribbon */
.awards-section {
    position: relative;
    background: linear-gradient(rgba(11, 12, 16, 0.75), rgba(11, 12, 16, 0.75)), url('/Royal_hotel/images/awards_bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}
.awards-gold-badge {
    background: white;
    color: var(--text-dark);
    padding: 20px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}
.awards-gold-badge img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Virtual Tour Instagram grid */
.virtual-tour-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.virtual-tour-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
}
.virtual-tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.virtual-tour-card:hover img {
    transform: scale(1.06);
}

/* Newsletter block */
.newsletter-mint-ribbon {
    background-color: #d1fae5;
    padding: 40px;
    border-radius: var(--radius-md);
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.newsletter-mint-ribbon h3 {
    font-weight: 800;
    font-size: 22px;
    color: #065f46;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 480px;
}
.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(6, 95, 70, 0.2);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
}
.newsletter-form button {
    background-color: #047857;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background-color: #065f46;
}

/* Features Ribbon */
.features-ribbon {
    background-color: #d1fae5;
    padding: 24px 0;
    border-top: 1px solid rgba(4, 120, 87, 0.1);
    border-bottom: 1px solid rgba(4, 120, 87, 0.1);
}
.features-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.features-ribbon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #065f46;
}
.features-ribbon-item i {
    font-size: 20px;
    color: #047857;
}

/* Dark layout adjustments for room catalog section */
.dark-carousel-section {
    background-color: #0b0c10;
    color: white;
    padding: 80px 0;
}
.dark-carousel-section .section-title {
    color: white;
}
.dark-carousel-section .room-title {
    color: white;
}
.dark-carousel-section .room-info {
    background-color: #111215;
    border-color: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .intro-images-grid { grid-template-columns: 1fr; }
    .promo-banner-grid { grid-template-columns: 1fr; }
    .expect-split-layout { grid-template-columns: 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .virtual-tour-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-mint-ribbon { flex-direction: column; text-align: center; }
    .features-ribbon-grid { grid-template-columns: 1fr; gap: 15px; }
}

/* --- COMPARISON BOTTOM BAR & MODAL SYSTEM --- */
.compare-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.compare-bar.visible {
    transform: translateX(-50%) translateY(0);
}
.compare-list-thumbnails {
    display: flex;
    gap: 8px;
}
.compare-thumb-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
    position: relative;
}
.compare-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Overlay Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-box {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-box {
    transform: scale(1);
}

/* Compare Matrix Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
}
.compare-table th, .compare-table td {
    padding: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    font-size: 13px;
}
.compare-table th {
    background: #f8fafc;
    font-weight: 800;
}

/* Wishlist Button styles */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}
.wishlist-btn:hover {
    transform: scale(1.1);
}
.wishlist-btn i {
    color: #94a3b8;
    transition: color 0.2s ease;
}
.wishlist-btn.active i {
    color: #ef4444 !important;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 12px;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

/* --- LIVE CHAT SYSTEM --- */
.chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.chat-bubble:hover {
    transform: scale(1.1) rotate(10deg);
}
.chat-drawer {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 360px;
    height: 480px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.chat-drawer.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.chat-header {
    background: var(--dark-card);
    color: white;
    padding: 16px;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 13px;
    line-height: 1.4;
}
.chat-message.bot {
    background: white;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: var(--shadow-sm);
}
.chat-message.user {
    background: var(--gold);
    color: var(--text-dark);
    font-weight: 600;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.chat-footer {
    padding: 12px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
}
.chat-footer input {
    flex: 1;
    border: 1px solid var(--border-light);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

/* --- TRAVEL BLOG --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .chat-drawer { width: calc(100% - 48px); right: 24px; left: 24px; }
}
