@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Estedad:wght@100..900&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

:root {
    


    --bg-color: #FAF6EE;
    
    --bg-secondary: #F2E9D8;
    
    --text-color: #1E120A;
    
    --text-muted: #5C3D22;
    
    --nav-bg: rgba(250, 246, 238, 0.82);
    --nav-bg-scrolled: rgba(250, 246, 238, 0.97);
    --card-bg: rgba(255, 252, 245, 0.96);
    --border-color: rgba(92, 61, 34, 0.14);
    
    --accent: #B8922A;
    
    --accent-hover: #9A7820;
    --shadow-color: rgba(30, 18, 10, 0.06);
    --transition-clean: all 0.35s ease;
    --demo-banner-height: 34px;
}

body.dark-mode {
    


    --bg-color: #100B04;
    
    --bg-secondary: #1C1208;
    
    --text-color: #F2E4C4;
    
    --text-muted: #A8895C;
    
    --nav-bg: rgba(16, 11, 4, 0.85);
    --nav-bg-scrolled: rgba(16, 11, 4, 0.98);
    --card-bg: rgba(28, 18, 8, 0.96);
    --border-color: rgba(212, 170, 67, 0.15);
    
    --accent: #D4AA43;
    
    --accent-hover: #E8C055;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --transition-clean: all 0.35s ease;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.mobile-nav-open {
    overflow: hidden;
}


.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--demo-banner-height);
    background-color: var(--bg-secondary);
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.2px;
    z-index: 2001;
    font-weight: 500;
    padding: 0 1rem;
    text-align: center;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.demo-banner .material-symbols-outlined {
    font-size: 15px !important;
    color: var(--accent);
    flex-shrink: 0;
}

.demo-banner span:not(.material-symbols-outlined) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body {
    padding-top: var(--demo-banner-height);
}


@media (max-width: 1024px) {
    .nav-links {
        top: var(--demo-banner-height) !important;
        height: calc(100vh - var(--demo-banner-height)) !important;
    }
}

@media (max-width: 480px) {
    .demo-banner {
        font-size: 10px;
        padding: 0 0.5rem;
    }
}


header {
    position: fixed;
    top: var(--demo-banner-height) !important;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-clean);
}

header.scrolled {
    background-color: var(--nav-bg-scrolled);
    box-shadow: 0 4px 20px var(--shadow-color);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    transition: var(--transition-clean);
}

header.scrolled nav {
    padding: 0.8rem 2.5rem;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

body:not(.dark-mode) .logo img {
    filter: grayscale(1) brightness(0.12);
}

body.dark-mode .logo img {
    filter: grayscale(1) brightness(0) invert(1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
}


.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    opacity: 1;
    color: var(--accent);
}


.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.dropdown-trigger:hover,
.dropdown.active .dropdown-trigger {
    opacity: 1;
}

.flag-icon {
    width: 14px;
    height: 14px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.chevron {
    font-size: 16px !important;
    transition: transform 0.3s ease;
}

.dropdown.active .chevron {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: none;
    
    padding: 0.4rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

html[dir="rtl"] .dropdown-content {
    right: auto;
    left: 0;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    opacity: 0.75;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    opacity: 1;
    background-color: rgba(212, 170, 67, 0.08);
    color: var(--accent);
}


.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.theme-toggle {
    background: transparent;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    opacity: 1;
}

.theme-toggle span {
    position: absolute;
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

body:not(.dark-mode) .icon-sun {
    opacity: 0;
    transform: translateY(8px);
}

body:not(.dark-mode) .icon-moon {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .icon-sun {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .icon-moon {
    opacity: 0;
    transform: translateY(-8px);
}


.btn-login {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.btn-login:hover {
    border-color: var(--text-color);
}

.btn-login img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

body:not(.dark-mode) .btn-login img {
    filter: grayscale(1) brightness(0.2);
}

body.dark-mode .btn-login img {
    filter: grayscale(1) brightness(0) invert(1);
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1200;
}

.hamburger-menu .bar {
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.mobile-only-menu-items {
    display: none;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 30px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-container img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.hero-img-light,
.hero-img-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.dark-mode) .hero-img-dark {
    opacity: 0;
}

body:not(.dark-mode) .hero-img-light {
    opacity: 1;
}

body.dark-mode .hero-img-dark {
    opacity: 1;
}

body.dark-mode .hero-img-light {
    opacity: 0;
}



.about-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-lead {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.6;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}


.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 0.4rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-color);
    opacity: 0.5;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--border-color);
    flex-shrink: 0;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}


.about-grid .about-card:nth-child(5):last-child {
    grid-column: 2 / 3;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
    .about-grid .about-card:nth-child(5):last-child {
        grid-column: span 1;
    }
}

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

    .about-grid .about-card:nth-child(5):last-child {
        grid-column: span 1;
    }
}

.about-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: border-color 0.3s ease;
}

.about-card:hover {
    border-color: var(--text-color);
}

.about-card-icon {
    font-size: 22px !important;
    color: var(--accent);
    opacity: 0.75;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-card p {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.55;
    line-height: 1.7;
}


@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }

    header.scrolled nav {
        padding: 0.7rem 2rem;
    }

    .auth-buttons .theme-toggle,
    .auth-buttons .btn-login,
    .auth-buttons .language-dropdown {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background-color: var(--bg-color);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1100;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        display: block;
        font-size: 0.9rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        text-transform: none;
        letter-spacing: 0.5px;
    }

    .nav-link:hover,
    .nav-link.active {
        padding-left: 4px;
    }

    
    .dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0.2rem;
        padding-left: 0.8rem;
    }

    .dropdown.active .dropdown-content {
        display: flex;
    }

    .auth-buttons {
        gap: 0.8rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .mobile-only-menu-items {
        display: block;
        width: 100%;
        margin-top: auto;
        padding-top: 1rem;
    }

    .mobile-menu-divider {
        height: 1px;
        width: 100%;
        background-color: var(--border-color);
        margin-bottom: 1rem;
    }

    .mobile-menu-actions {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
    }

    .mobile-btn-login {
        flex: 1;
        justify-content: center;
        height: 40px;
    }

    .mobile-theme-toggle {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    
    .hero-img-light,
    .hero-img-dark {
        width: auto !important;
        height: 50% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
    }

    
    html[dir="rtl"] .dropdown-content {
        padding-left: 0;
        padding-right: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh !important;
    }

    nav {
        padding: 0.8rem 1.2rem;
    }

    header.scrolled nav {
        padding: 0.6rem 1.2rem;
    }

    .logo img {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        display: none;
    }

    
    .about-section {
        padding: 4rem 0;
    }

    .about-container {
        padding: 0 1.2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 0;
    }

    .stat-item {
        padding: 1.2rem 1rem;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid var(--border-color);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-divider {
        display: none;
    }

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

    .about-grid:has(.about-card:nth-child(5):last-child) {
        grid-template-columns: 1fr;
    }

    .about-grid:has(.about-card:nth-child(5):last-child) .about-card:nth-child(1),
    .about-grid:has(.about-card:nth-child(5):last-child) .about-card:nth-child(2),
    .about-grid:has(.about-card:nth-child(5):last-child) .about-card:nth-child(3),
    .about-grid:has(.about-card:nth-child(5):last-child) .about-card:nth-child(4),
    .about-grid:has(.about-card:nth-child(5):last-child) .about-card:nth-child(5) {
        grid-column: span 1;
    }
}


.location-section {
    padding: 8rem 0;
    background-color: var(--bg-color);
    transition: background-color 0.4s ease;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.location-sub {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.45;
}

.location-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: stretch;
    min-height: 460px;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 460px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.2);
}


.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-info-item>.material-symbols-outlined {
    font-size: 20px !important;
    color: var(--text-color);
    opacity: 0.35;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.location-info-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    opacity: 0.4;
    margin-bottom: 0.3rem;
}

.location-info-item p,
.location-info-item a {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
    text-decoration: none;
}

.location-info-item a:hover {
    opacity: 1;
}


.location-info-item div a {
    display: block;
}

.location-info-item div a+a {
    margin-top: 0.2rem;
}


.location-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.location-directions-btn,
.location-review-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.location-directions-btn {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.location-review-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.location-directions-btn:hover,
.location-review-btn:hover {
    opacity: 0.75;
}

.location-directions-btn .material-symbols-outlined,
.location-review-btn .material-symbols-outlined {
    font-size: 16px !important;
}


.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
    transition: background-color 0.4s ease;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

body:not(.dark-mode) .footer-logo img {
    filter: grayscale(1) brightness(0.12);
}

body.dark-mode .footer-logo img {
    filter: grayscale(1) brightness(0) invert(1);
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.35;
}


@media (max-width: 900px) {
    .location-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .location-map {
        min-height: 320px;
    }

    .location-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 4rem 0;
    }

    .location-container {
        padding: 0 1.2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1.2rem;
        gap: 0.6rem;
    }
}


.luxury-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 11, 4, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.luxury-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.luxury-modal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 30px 70px var(--shadow-color);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.luxury-modal-overlay.active .luxury-modal {
    transform: translateY(0) scale(1);
}

.luxury-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: opacity 0.2s, background-color 0.2s;
}

.luxury-modal-close:hover {
    opacity: 1;
    background-color: var(--border-color);
}

.luxury-modal-close span {
    font-size: 20px !important;
}

.luxury-modal-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

body:not(.dark-mode) .luxury-modal-logo {
    filter: grayscale(1) brightness(0.12);
}

body.dark-mode .luxury-modal-logo {
    filter: grayscale(1) brightness(0) invert(1);
}

.luxury-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.25;
}

.luxury-modal-desc {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.luxury-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 170, 67, 0.2);
    transition: opacity 0.2s, transform 0.2s;
}

.luxury-modal-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.luxury-modal-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}


.user-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 20, 11, 0.04);
    border: 1px solid var(--border-color);
    padding: 5px 14px 5px 5px;
    border-radius: 40px;
    transition: background-color 0.3s;
}

body.dark-mode .user-profile-chip {
    background: rgba(250, 246, 238, 0.04);
}

.user-profile-chip:hover {
    background: rgba(26, 20, 11, 0.08);
}

body.dark-mode .user-profile-chip:hover {
    background: rgba(250, 246, 238, 0.08);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--accent);
}

.user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.45;
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}

.btn-logout:hover {
    opacity: 1;
    color: var(--accent);
}

.btn-logout span {
    font-size: 18px !important;
}


@media (max-width: 768px) {
    .mobile-user-profile-chip {
        margin: 0.5rem auto;
        justify-content: center;
        width: fit-content;
    }
}


.luxury-form-modal {
    max-width: 520px !important;
    padding: 2.5rem 2.2rem !important;
}

.luxury-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    text-align: center;
}

.luxury-form-subtitle {
    font-size: 0.82rem;
    color: var(--text-color);
    opacity: 0.55;
    margin-bottom: 1.5rem;
    text-align: center;
}

.luxury-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.luxury-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .luxury-form-row {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
}

.luxury-form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    width: 100%;
}

.luxury-form-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
}

.luxury-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(26, 20, 11, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.88rem;
    color: var(--text-color);
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
    font-family: inherit;
}

body.dark-mode .luxury-form-input {
    background: rgba(250, 246, 238, 0.03);
}

.luxury-form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(26, 20, 11, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 170, 67, 0.15);
}

body.dark-mode .luxury-form-input:focus {
    background: rgba(250, 246, 238, 0.05);
}

.luxury-form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(26, 20, 11, 0.07);
}

body.dark-mode .luxury-form-input:disabled {
    background: rgba(250, 246, 238, 0.07);
}

textarea.luxury-form-input {
    resize: vertical;
    min-height: 90px;
}

.luxury-form-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 170, 67, 0.2);
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}

.luxury-form-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.luxury-form-btn:active {
    transform: translateY(0);
}

.luxury-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    text-align: center;
}

.luxury-form-success-icon {
    font-size: 48px !important;
    color: #2e7d32;
    animation: successPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes successPop {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.luxury-form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
}

.luxury-form-success-desc {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    line-height: 1.6;
}


.luxury-modal-notification {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    margin: 0.5rem 0;
    display: none;
    animation: luxuryShake 0.4s ease;
    background-color: rgba(239, 83, 80, 0.08);
    border: 1px solid rgba(239, 83, 80, 0.25);
    color: #d32f2f;
}

body.dark-mode .luxury-modal-notification {
    background-color: rgba(239, 83, 80, 0.12);
    border-color: rgba(239, 83, 80, 0.35);
    color: #ff8a80;
}

@keyframes luxuryShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}


.dashboard-modal {
    max-width: 600px !important;
    padding: 2.2rem 2rem !important;
    max-height: 85vh;
    overflow-y: auto;
}

.dashboard-user-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.dashboard-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.dashboard-user-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.dashboard-user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.85;
}


.dashboard-tabs {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.dashboard-tab {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    position: relative;
    transition: color 0.3s;
}

.dashboard-tab.active {
    color: var(--accent);
}

.dashboard-tab.active::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}


.dashboard-content-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-content-panel.active {
    display: flex;
}

.dashboard-card {
    background: rgba(26, 20, 11, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.15rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

body.dark-mode .dashboard-card {
    background: rgba(250, 246, 238, 0.02);
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

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

.dashboard-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 600;
}

.status-pill {
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill.pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

.status-pill.confirmed {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.status-pill.cancelled {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

.status-pill.replied {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.dashboard-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-card-meta span {
    font-size: 16px !important;
    opacity: 0.75;
}

.dashboard-card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.dashboard-cancel-btn {
    background: none;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #dc2626;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.dashboard-cancel-btn:hover {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: #dc2626;
}

.dashboard-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-empty span {
    font-size: 40px !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





html[dir="rtl"] body {
    font-family: 'Estedad', 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
}

html[dir="rtl"] .logo-text,
html[dir="rtl"] .about-title,
html[dir="rtl"] .rooms-title,
html[dir="rtl"] .services-title,
html[dir="rtl"] .location-title,
html[dir="rtl"] .about-card h3,
html[dir="rtl"] .stat-number {
    font-family: 'Estedad', 'Cairo', 'IBM Plex Sans Arabic', serif;
}

html[dir="rtl"] .dropdown-content {
    right: auto;
    left: 0;
}


html[dir="rtl"] .about-lead,
html[dir="rtl"] .about-card p,
html[dir="rtl"] .location-sub {
    text-align: right;
}

html[dir="rtl"] .about-header,
html[dir="rtl"] .rooms-header,
html[dir="rtl"] .services-header,
html[dir="rtl"] .location-header {
    text-align: center;
}


html[dir="rtl"] .location-info-item {
    text-align: right;
}

html[dir="rtl"] .location-info-item div {
    text-align: right;
}


html[dir="rtl"] .room-card-body {
    text-align: right;
}


html[dir="rtl"] .service-card-body {
    text-align: right;
}


html[dir="rtl"] .footer-container {
    text-align: center;
}

html[dir="rtl"] .footer-logo {
    justify-content: center;
}




@media (max-width: 1024px) {
    html[dir="rtl"] .nav-links {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-end;
        padding: 6rem 2rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    html[dir="rtl"] .nav-links.open {
        left: 0;
    }

    html[dir="rtl"] .nav-link {
        text-align: right;
    }

    html[dir="rtl"] .dropdown-content {
        padding-left: 0;
        padding-right: 0.8rem;
    }
}



html[dir="rtl"] .room-info {
    border-left: none;
    border-right: 1px solid var(--border-color);
}

html[dir="rtl"] .room-badge {
    left: auto;
    right: 0.75rem;
}

html[dir="rtl"] .service-hero-overlay {
    text-align: right;
}

html[dir="rtl"] .dashboard-user-info {
    text-align: right;
}

html[dir="rtl"] .dashboard-card {
    text-align: right;
}

html[dir="rtl"] .dashboard-card-body p[style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
    border-right: 2px solid var(--accent) !important;
    padding-right: 0.5rem !important;
}

html[dir="rtl"] .about-card {
    align-items: flex-start;
}

html[dir="rtl"] .luxury-modal-close {
    right: auto;
    left: 1.25rem;
}

html[dir="rtl"] #userProfileChip+.dropdown-content {
    right: auto !important;
    left: 0 !important;
}




.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


.about-stats.scroll-reveal,
.about-grid.scroll-reveal,
.rooms-grid.scroll-reveal,
.services-grid.scroll-reveal {
    transition-delay: 0.15s;
}


@keyframes headerEntrance {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes headerItemsEntrance {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

header {
    animation: headerEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


nav .logo,
nav .nav-links li,
nav .auth-buttons>* {
    opacity: 0;
    animation: headerItemsEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

nav .logo {
    animation-delay: 0.1s;
}

nav .nav-links li:nth-child(1) {
    animation-delay: 0.15s;
}

nav .nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

nav .nav-links li:nth-child(3) {
    animation-delay: 0.25s;
}

nav .nav-links li:nth-child(4) {
    animation-delay: 0.3s;
}

nav .auth-buttons>*:nth-child(1) {
    animation-delay: 0.35s;
}

nav .auth-buttons>*:nth-child(2) {
    animation-delay: 0.4s;
}

nav .auth-buttons>*:nth-child(3) {
    animation-delay: 0.45s;
}


@keyframes contentEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.room-gallery,
.room-info-container>*,
.service-hero-overlay>*,
.dashboard-container>* {
    opacity: 0;
    animation: contentEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.room-gallery {
    animation-delay: 0.1s;
}

.room-info-container>*:nth-child(1) {
    animation-delay: 0.15s;
}

.room-info-container>*:nth-child(2) {
    animation-delay: 0.2s;
}

.room-info-container>*:nth-child(3) {
    animation-delay: 0.25s;
}

.room-info-container>*:nth-child(4) {
    animation-delay: 0.3s;
}

.dashboard-container>*:nth-child(1) {
    animation-delay: 0.1s;
}

.dashboard-container>*:nth-child(2) {
    animation-delay: 0.15s;
}

.dashboard-container>*:nth-child(3) {
    animation-delay: 0.2s;
}


.room-card,
.service-card,
.about-card,
.dashboard-card {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.room-card:hover,
.service-card:hover,
.about-card:hover,
.dashboard-card:hover {
    border-color: var(--accent);
}


.room-card-img img,
.service-card-img img {
    transition: opacity 0.3s ease;
}


.room-card-btn,
.service-card-link,
.location-directions-btn,
.location-review-btn,
.btn-login,
.room-book-btn,
.service-contact-btn,
.luxury-modal-btn,
.luxury-form-btn,
.dashboard-cancel-btn,
.filter-chip,
.user-profile-chip {
    transition: opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.room-card-btn:hover,
.service-card-link:hover,
.location-directions-btn:hover,
.location-review-btn:hover,
.btn-login:hover,
.room-book-btn:hover,
.service-contact-btn:hover,
.luxury-modal-btn:hover,
.luxury-form-btn:hover,
.dashboard-cancel-btn:hover,
.filter-chip:hover,
.user-profile-chip:hover {
    opacity: 0.85;
}


.nav-link {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent) !important;
}


.theme-toggle {
    transition: opacity 0.3s ease;
}

.theme-toggle:hover {
    opacity: 0.8;
}

.theme-toggle .material-symbols-outlined {
    transition: none;
}


.gallery-thumb {
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.9;
}


.premium-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    background: var(--card-bg);
    border: 1px solid var(--accent);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 500;
}

.premium-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.premium-toast-icon {
    color: var(--accent);
    font-size: 20px;
}

html[dir="rtl"] .premium-toast {
    direction: rtl;
}


html[dir="rtl"] *:not(.material-symbols-outlined),
html[lang="ar"] *:not(.material-symbols-outlined) {
    font-family: 'Estedad', 'Cairo', 'IBM Plex Sans Arabic', sans-serif !important;
}