/* Updated CSS Variables - Warm Brown Theme */
:root {
    --primary-gold: #F5B800;
    --primary-gold-light: #FFD700;
    --primary-gold-dark: #E6A500;
    --accent-orange: #FF8C42;
    --terra-cotta: #D2691E;
    --canyon-shadow: #8B4513;
    --rock-stone: #A0522D;
    --desert-sand: #F4A460;
    --warm-sand: #F5DEB3;
    --desert-sunset: #FF8C69;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --background-light: #FDF6E3;
    --background-warm: #F5DEB3;
    --background-sand: #F4A460;
    --border-light: #E6D5B7;
    --card-background: #FEFCF7;
    --shadow-light: rgba(139, 69, 19, 0.1);
    --shadow-medium: rgba(139, 69, 19, 0.15);
    --shadow-heavy: rgba(139, 69, 19, 0.2);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--background-warm);
    color: var(--text-dark);
    line-height: 1.6;
    direction: rtl;
    font-weight: 400;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-logo-icon {
    font-size: 1.8rem;
}

.navbar-logo-text {
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.navbar-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--primary-gold);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.navbar-contact i {
    color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Header Styles - Redesigned */
.header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.header-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
}

.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.header-badge {
    display: inline-block;
    background: rgba(245, 184, 0, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.header-main-title {
    margin-bottom: 20px;
    line-height: 1;
}

.title-line-1 {
    display: block;
    font-size: 4rem;
    font-weight: 300;
    color: white;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line-2 {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 12px;
    /* text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); */
    text-transform: uppercase;
}

.header-location {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.header-description {
    font-size: 1.3rem;
    color: #f7fafc;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(245, 184, 0, 0.1);
}

.scroll-arrow:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Section - Complete Redesign */
.hero-section {
    padding: 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--warm-sand) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-content {
    background: linear-gradient(135deg, #fbefd4 0%, var(--warm-sand) 100%);
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-inner {
    max-width: 600px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    background: linear-gradient(135deg, var(--terra-cotta) 0%, var(--desert-sunset) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--terra-cotta);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terra-cotta) 0%, var(--desert-sunset) 100%);
    border-radius: 2px;
}

.hero-description {
    margin-bottom: 48px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.secondary-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.text-highlight {
    color: var(--terra-cotta);
    font-weight: 600;
}

/* Stats Container */
.stats-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    justify-content: space-between;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terra-cotta);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.navbar-logo img {
    max-width: 50px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-item {
    transition: .2s all ease !important;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--terra-cotta);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--terra-cotta) 0%, var(--desert-sunset) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, var(--canyon-shadow) 0%, var(--rock-stone) 100%);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23F4A460" stop-opacity="0.1"/><stop offset="100%" stop-color="%23F4A460" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    opacity: 0.5;
}

.promise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--desert-sand);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.promise-text {
    font-size: 1.1rem;
    color: var(--warm-sand);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Hero Image Section */
.hero-image-section {
    background: var(--background-warm);
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.image-gallery-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-wrapper {
    position: relative;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.main-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .2s all ease !important;
}

.main-image-wrapper:hover .main-hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 500;
}

/* Thumbnails */
.thumbnails-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.thumbnail-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .2s all ease !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.thumbnail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.thumbnail-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.1);
    opacity: 0.5;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(160, 82, 45, 0.8) 0%, 
        rgba(210, 105, 30, 0.7) 50%, 
        rgba(139, 69, 19, 0.8) 100%);
}

.header-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--desert-sand);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.5rem;
    color: var(--warm-sand);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section .container-fluid {
    padding: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-text p {
    margin-bottom: 1rem;
}

/* Image Gallery */
.image-gallery {
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-swiper {
    padding: 0 50px;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image-container:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

/* Features Grid */
.features-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--terra-cotta);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin: 0;
}

/* Rooms Section */
.rooms-section {
    margin-top: 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #fbefd4 0%, var(--warm-sand) 100%);
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    font-weight: 400;
}

/* Horizontal Room Cards CSS */

/* Horizontal Room Card Layout */
.room-card-horizontal {
    background: #FEFCF7; /* var(--card-background) */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E6D5B7; /* var(--border-light) */
    margin-bottom: 20px;
}

.room-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    border-color: #D2691E; /* var(--terra-cotta) */
}

.room-horizontal-content {
    display: flex;
    align-items: stretch;
    min-height: 200px;
}

/* Pricing Section - Left Side */
.room-pricing-section {
    flex: 0 0 250px;
    background: var(--warm-sand);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 3px solid #D2691E;
    transition: .2s all ease !important;
}

.room-pricing-section .price-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513; /* var(--canyon-shadow) */
    margin-bottom: 15px;
    text-align: center;
}

.room-pricing-section .price-details {
    margin-bottom: 15px;
}

.room-pricing-section .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.room-pricing-section .price-row span:first-child {
    color: #1a1a1a;
    font-weight: 500;
}

.room-pricing-section .price-row span:last-child {
    color: #8B4513;
    font-weight: 700;
}

.room-contact-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #8B4513;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    padding: 10px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-contact-horizontal:hover {
    background: rgba(139, 69, 19, 0.2);
    transform: scale(1.02);
}

.room-contact-horizontal i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Information Section - Middle (75% width) */
.room-info-section {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    background: #fff4dc;
}

.room-title-horizontal {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.room-title-horizontal:hover {
    color: #D2691E;
    cursor: pointer;
}

.room-location-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 20px;
}

.room-location-horizontal i {
    color: #D2691E;
    flex-shrink: 0;
}

.room-location-horizontal .btn-map {
    background: none;
    border: none;
    color: #D2691E;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.room-location-horizontal .btn-map:hover {
    color: #FF8C69;
}

.room-features-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.feature-item-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    padding: 5px 0;
}

.feature-item-horizontal i {
    color: #D2691E;
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 16px;
}

.more-features-horizontal {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    margin-top: 10px;
    grid-column: 1 / -1;
}

.room-modal .modal-content {
    animation: fadeInModal 0.5s ease-out;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-modal.modal {
    background-color: rgba(0, 0, 0, 0.75) !important;
    transition: opacity 0.3s ease;
    z-index: 1050;
    backdrop-filter: blur(3px);
}

.modal .swiper-button-next,
.modal .swiper-button-prev {
    width: 49px !important;
    height: 49px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-radius: 0 !important;
    color: black !important;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.modal .swiper-button-prev {
    right: 0 !important;
}

.modal-room-swiper {
  height: 100%;
}

.modal-room-swiper .swiper-slide {
  height: 100%;
}

.modal-room-swiper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.modal-body .col-md-5 section {
    border-bottom: 1px solid #e7e7e7;
    padding-top: 10px;
}

.modal .room-title {
    padding: 1rem;
    background: #d4b896;
}

.feature-title {
    max-width: 150px;
    padding: 5px 0;
    background: #d4b896;
    color: white;
    text-align: center;
}

.modal .swiper-button-next {
    left: 0 !important;
}

.modal .swiper-button-next::after,
.modal .swiper-button-prev::after {
    font-size: 19px !important;
    font-weight: bold;
    color: black;
}

.room-modal .modal-content {
    padding: 0;
}

/* Image Section - Right Side */
.room-image-section {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.room-swiper-horizontal {
    width: 100%;
    height: 100%;
}

.room-image-horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-width: 300px;
    max-height: 256px;
}

.room-card-horizontal:hover .room-image-horizontal {
    transform: scale(1.05);
}

.room-nav-horizontal {
    background: rgba(139, 69, 19, 0.8) !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.room-card-horizontal:hover .room-nav-horizontal {
    opacity: 1;
}

.room-nav-horizontal:after {
    font-size: 12px !important;
    font-weight: bold;
}

.image-counter-horizontal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: rtl;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    z-index: 10;
}

.image-counter-bar {
    position: relative;
    flex: 1;
    height: 100%;
    margin-inline-start: 10px;
    background: transparent;
}

.image-counter-indicator {
    position: absolute;
    top: 0;
    width: 5%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: right 0.2s ease;
    right: 0;
    transform: translateX(50%); /* מוסיף פיצוי! */
}

.image-counter-text {
    white-space: nowrap;
    z-index: 2;
    position: absolute;
    text-align: center;
    width: 100%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Swiper Pagination for Horizontal Cards */
.room-swiper-horizontal .swiper-pagination {
    bottom: 10px;
}

.room-swiper-horizontal .swiper-pagination-bullet {
    background: #D2691E;
    opacity: 0.5;
    width: 6px;
    height: 6px;
}

.room-swiper-horizontal .swiper-pagination-bullet-active {
    opacity: 1;
    background: #D2691E;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: #F5DEB3;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #F4A460 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #F4A460;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: #F4A460;
}

.footer-section p {
    color: #F5DEB3;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e6d5b7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #F4A460;
    transform: translateX(-5px);
}

.footer-links a i {
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F5DEB3;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: #F4A460;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(244, 164, 96, 0.1);
    border: 1px solid #F4A460;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4A460;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #F4A460;
    color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
}

.footer-bottom {
    border-top: 1px solid #A0522D;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #d4b896;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #F4A460;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 1.8rem;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

/* Image Modal */
.modal-image-content {
    background: rgba(0, 0, 0, 0.95) !important;
    border: none !important;
    border-radius: 0 !important;
}

.modal-image-header {
    background: rgba(0, 0, 0, 0.5);
    border-bottom: none;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-back-btn {
    display: flex;
    align-items: center;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.modal-back-btn:hover {
    color: var(--primary-gold) !important;
}

.modal-image-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 60vh;
}

.modal-image {
    max-width: 100%;
    max-height: calc(95vh - 200px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.modal-image-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: none;
    text-align: center;
    padding: 1rem;
}

.modal-image-footer h3 {
    margin: 0;
    font-size: 1.25rem;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content,
    .hero-image-section {
        padding: 60px 40px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    .room-pricing-section {
        flex: 0 0 180px;
        padding: 15px;
    }
    
    .room-image-section {
        flex: 0 0 250px;
    }
    
    .room-title-horizontal {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
    }

    .room-horizontal-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .room-pricing-section {
        flex: none;
        order: 3;
        border: 3px solid #D2691E !important ;
        /* background: linear-gradient(90deg, #F4A460 0%, #F5DEB3 100%); */
    }
    
    .room-info-section {
        order: 2;
        padding: 20px;
    }
    
    .room-image-section {
        flex: none;
        order: 1;
        height: 200px;
    }
    
    .room-features-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .hero-content,
    .hero-image-section {
        min-height: auto;
        padding: 60px 30px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }

    .room-pricing-section {
        padding: 15px;
    }
    
    .room-info-section {
        padding: 15px;
    }
    
    .room-title-horizontal {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .room-features-horizontal {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .room-image-section {
        height: 180px;
    }
    
    .room-pricing-section .price-header {
        font-size: 1.1rem;
    }
    
    .room-contact-horizontal {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content,
    .hero-image-section {
        padding: 40px 20px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .room-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .room-separator {
        width: 100%;
        height: 1px;
    }
    
    .room-pricing {
        text-align: right;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .room-card-horizontal {
        margin: 0 10px 20px;
        border-radius: 10px;
    }
    
    .room-pricing-section {
        padding: 12px;
    }
    
    .room-info-section {
        padding: 12px;
    }
    
    .room-title-horizontal {
        font-size: 1.2rem;
    }
    
    .room-location-horizontal {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .feature-item-horizontal {
        font-size: 0.85rem;
    }
    
    .room-image-section {
        height: 150px;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 16px;
    }
    
    .promise-section {
        padding: 24px;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-title {
        font-size: 1.25rem;
    }
    
    .thumbnails-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RTL Specific Adjustments */
[dir="rtl"] .swiper-button-next {
    right: auto;
    left: 10px;
}

[dir="rtl"] .swiper-button-prev {
    left: auto;
    right: 10px;
}

[dir="rtl"] .room-nav.swiper-button-next {
    right: auto;
    left: 3px;
}

[dir="rtl"] .room-nav.swiper-button-prev {
    left: auto;
    right: 3px;
}

/* Services Section */
.services-section {
    background: var(--background-light);
    padding: 80px 0;
}

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.services-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    font-weight: 400;
}

.services-section .features-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.services-section .feature-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    text-align: center;
    height: 100%;
}

.services-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.services-section .feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.services-section .feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.services-section .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.services-section .feature-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--background-gray);
    padding: 80px 0;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 15px 25px;
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    border-color: var(--primary-gold);
}

.contact-item i {
    color: var(--primary-gold);
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.contact-item span {
    direction: ltr;
    unicode-bidi: embed;
}

/* Scroll to top button styles */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 184, 0, 0.4);
    background: var(--primary-gold-dark);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Enhanced hover effects for services and contact */
.services-section .feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-gold-light);
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--primary-gold-light);
}

[dir="rtl"] .room-horizontal-content {
    direction: rtl;
}

[dir="rtl"] .room-pricing-section {
    border-left: none;
    border-right: 3px solid #D2691E;
}

[dir="rtl"] .room-nav-horizontal.swiper-button-next {
    right: auto;
    left: 5px;
}

[dir="rtl"] .room-nav-horizontal.swiper-button-prev {
    left: auto;
    right: 5px;
}

/* Hover Effects */
.room-card-horizontal:hover .room-title-horizontal {
    color: #D2691E;
}

/* .room-card-horizontal:hover .room-pricing-section {
    background: white;
} */

/* .room-card-horizontal:hover .room-pricing-section .price-header,
.room-card-horizontal:hover .room-pricing-section .price-row span {
    color: white;
} */

.room-card-horizontal:hover .room-contact-horizontal {
    background: rgba(255, 255, 255, 0.2);
    color: #333;
}

/* Mobile Responsive for Navbar */
@media (max-width: 992px) {
    .navbar-menu {
        gap: 25px;
    }
    
    .navbar-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-contact {
        display: flex;
        margin-top: 20px;
        justify-content: center;
    }
    
    .title-line-1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .title-line-2 {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .header-description {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        padding: 0 15px;
    }
    
    .title-line-1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .header-badge {
        font-size: 0.8rem;
        padding: 6px 20px;
    }
    
    .header-location {
        font-size: 1rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* AOS Overrides (optional tuning) */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Lazy loading support */
img.lazy {
    filter: blur(8px);
    transition: filter 0.3s ease-out;
}
img.lazy.loaded {
    filter: blur(0);
    transition: .2s all ease !important;
}

/* Performance: preloading important fonts */
@font-face {
    font-display: swap;
}

/* Back to Top Button Style */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
    font-size: 1.2rem;
}
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}
