/* ============================================
   MAYAR TOURS - MODERN REDESIGN FROM SCRATCH
   Original Colors: #c37b06 (Orange) & #050202 (Dark)
   ============================================ */

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

:root {
    /* Modern Color Palette */
    --primary-blue: #412d01;
    --primary-blue-dark: #2a1c00;
    --accent-gold: #dbbf43;
    --accent-gold-light: #eadb7a;
    --primary-blue-rgb: 65, 45, 1;
    --accent-gold-rgb: 219, 191, 67;
    --accent-gold-light-rgb: 234, 219, 122;
    --accent-teal: #dbbf43;
    --accent-teal-rgb: 219, 191, 67;
    --accent-indigo: #412d01;
    --accent-indigo-rgb: 65, 45, 1;
    --accent-rose: #412d01;
    --accent-rose-rgb: 65, 45, 1;
    --accent-sky: #dbbf43;
    --accent-sky-rgb: 219, 191, 67;
    --dark-navy: #1b1200;
    --light-sky: #fbf9ef;
    --white: #ffffff;
    --gray-50: #f5f0e6;
    --gray-100: #efe7da;
    --gray-200: #eeeeee;
    --gray-800: #424242;
    --gray-900: #212121;
    --text-primary: #241e18;
    --text-secondary: rgba(36, 30, 24, 0.72);
    
    /* Legacy colors for compatibility */
    --primary-brown: #412d01;
    --primary-orange: #dbbf43;
    --dark-brown: #1b1200;
    --light-beige: #fbf9ef;
    --golden-yellow: #dbbf43;
    --warm-orange: #eadb7a;
    --dark-text: #241e18;
    --light-grey: #efe7da;
    --off-white: #fbf9ef;
    --light-gray: #efe7da;
    --medium-gray: #999999;
    --text-dark: #241e18;
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BASE STYLES
   ============================================ */

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--off-white);
    overflow-x: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-in;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    position: relative;
    text-align: left;
    margin: 0;
    padding: 0;
    padding-top: 0 !important;
    font-weight: 400;
    letter-spacing: 0.01em;
}

html[dir="rtl"] body {
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: right;
    font-weight: 400;
    letter-spacing: 0.01em;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--primary-blue-rgb), 0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-gold-rgb), 0.06) 0%, transparent 55%),
        radial-gradient(circle at 70% 20%, rgba(var(--accent-teal-rgb), 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   LOADING SCREEN - SOPHISTICATED
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0f0c09 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
        opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
        opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 20px rgba(var(--accent-gold-rgb), 0.35));
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
    border-top-color: var(--accent-gold);
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-delay: 0.2s;
    border-top-color: var(--accent-gold);
    animation-duration: 1s;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-delay: 0.4s;
    border-top-color: rgba(var(--accent-gold-rgb), 0.55);
    animation-duration: 0.8s;
}

.loading-text {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    letter-spacing: 2px;
    animation: textFade 2s ease-in-out infinite;
    margin-top: 1rem;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

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

@keyframes textFade {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

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

/* Airplane Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(245, 240, 230, 0.92) 0%, rgba(245, 240, 230, 0.98) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    body::before {
        background-attachment: scroll;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ============================================
   HEADER - MODERN DESIGN
   ============================================ */

.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(36, 30, 24, 0.08);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(var(--accent-teal-rgb), 0) 0%,
        rgba(var(--accent-gold-rgb), 0.75) 18%,
        rgba(var(--accent-indigo-rgb), 0.75) 82%,
        rgba(var(--accent-indigo-rgb), 0) 100%
    );
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
        min-height: 56px;
    }
    
    .language-selector {
        padding: 10px 16px;
        min-height: 44px;
        min-width: 110px;
        border-radius: 14px;
    }
    
    .language-selector i.fa-globe {
        font-size: 16px;
    }
    
    .language-selector select {
        font-size: 14px;
        padding: 5px 28px 5px 5px;
        min-width: 90px;
    }
    
    .header-nav .language-selector {
        width: calc(100% - 30px);
        padding: 14px 18px;
        min-height: 48px;
    }
    
    html[dir="rtl"] .header-nav .language-selector {
        width: calc(100% - 30px) !important;
        padding: 14px 18px !important;
        min-height: 48px !important;
    }
}

.header:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
        gap: 10px;
    }
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    flex: 1;
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    touch-action: manipulation;
    border-radius: 8px;
    text-align: left;
}

.nav-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.home-nav-link {
    background: transparent;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.home-nav-link:hover {
    background: rgba(var(--accent-gold-rgb), 0.12);
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--accent-gold-rgb), 0.22);
}

.home-nav-link::after {
    display: none;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold), var(--accent-indigo));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.12);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.10);
}

.nav-link.active::after {
    width: 60%;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    position: relative;
    padding: 14px 22px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 2px solid rgba(36, 30, 24, 0.12);
    box-shadow: 0 8px 32px rgba(36, 30, 24, 0.10), 
                0 4px 16px rgba(36, 30, 24, 0.06),
                0 2px 8px rgba(0, 0, 0, 0.05),
                inset 0 2px 4px rgba(255, 255, 255, 0.9),
                inset 0 -2px 4px rgba(36, 30, 24, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    z-index: 100;
    min-height: 52px;
    min-width: 140px;
    touch-action: manipulation;
    flex-shrink: 0;
}

.language-selector:hover {
    background: linear-gradient(145deg, rgba(var(--accent-gold-rgb), 0.14) 0%, rgba(var(--accent-gold-rgb), 0.10) 50%, rgba(var(--accent-gold-rgb), 0.14) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(36, 30, 24, 0.18), 
                0 8px 24px rgba(36, 30, 24, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 1),
                inset 0 -2px 4px rgba(36, 30, 24, 0.05),
                0 0 30px rgba(var(--accent-gold-rgb), 0.12);
    border-radius: 24px;
}

.language-selector:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(36, 30, 24, 0.14);
}

.language-selector i.fa-globe {
    color: var(--text-primary);
    font-size: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 3px 6px rgba(36, 30, 24, 0.18));
}

.language-selector select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 40px 8px 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 101;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.language-selector select:hover {
    color: var(--accent-gold);
}

.language-selector select option {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    color: var(--text-primary);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.language-selector select option:hover {
    background: linear-gradient(145deg, rgba(var(--accent-gold-rgb), 0.14) 0%, rgba(var(--accent-gold-rgb), 0.10) 100%);
    color: var(--text-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.12);
}

.language-selector select option:checked,
.language-selector select option:focus {
    background: linear-gradient(145deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(36, 30, 24, 0.22),
                0 2px 8px rgba(36, 30, 24, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.language-selector i.fa-chevron-down {
    font-size: 14px;
    pointer-events: none;
    position: absolute;
    right: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-primary);
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(36, 30, 24, 0.14));
}

.language-selector:hover i.fa-chevron-down {
    transform: translateY(3px);
    color: var(--accent-gold);
    opacity: 1;
}

.language-selector:hover i.fa-globe {
    transform: rotate(360deg) scale(1.15);
    color: var(--accent-gold);
    filter: drop-shadow(0 3px 6px rgba(var(--accent-gold-rgb), 0.3));
}

.language-selector:focus-within {
    background: linear-gradient(145deg, rgba(var(--accent-gold-rgb), 0.16) 0%, rgba(var(--accent-gold-rgb), 0.12) 50%, rgba(var(--accent-gold-rgb), 0.16) 100%);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(var(--accent-gold-rgb), 0.18),
                0 16px 48px rgba(36, 30, 24, 0.22),
                0 8px 24px rgba(36, 30, 24, 0.14),
                0 0 40px rgba(var(--accent-gold-rgb), 0.14);
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Menu Toggle - Modern Style */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(36, 30, 24, 0.08);
    border: 2px solid rgba(36, 30, 24, 0.22);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    touch-action: manipulation;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 5px;
    transform: scaleX(-1);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(var(--accent-gold-rgb), 0.14);
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.22);
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    touch-action: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

 html.menu-open,
 html.menu-open body {
     overflow: hidden;
 }

 #snowOverlay {
     position: fixed;
     inset: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 998;
     opacity: 0.55;
 }

 .scroll-top {
     position: fixed;
     right: 18px;
     bottom: 18px;
     width: 46px;
     height: 46px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.22);
     background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.90) 0%, rgba(var(--accent-gold-rgb), 0.90) 100%);
     color: var(--white);
     box-shadow: 0 16px 45px rgba(0, 0, 0, 0.26);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transform: translateY(10px);
     pointer-events: none;
     transition: opacity 0.25s ease, transform 0.25s ease;
     z-index: 997;
 }

 html[dir="rtl"] .scroll-top {
     right: auto;
     left: 18px;
 }

 .scroll-top.is-visible {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
 }

 html.menu-open .scroll-top {
     opacity: 0;
     transform: translateY(10px);
     pointer-events: none;
 }

 @media (prefers-reduced-motion: reduce) {
     #snowOverlay {
         display: none;
     }
 }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    background: 
        linear-gradient(120deg,
            rgba(15, 12, 9, 0.80) 0%,
            rgba(var(--primary-blue-rgb), 0.22) 35%,
            rgba(var(--accent-gold-rgb), 0.20) 60%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 60px;
    margin-top: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 50px 0 30px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 18% 38%, rgba(var(--accent-teal-rgb), 0.22) 0%, transparent 55%),
        radial-gradient(circle at 60% 22%, rgba(var(--accent-indigo-rgb), 0.18) 0%, transparent 55%),
        radial-gradient(circle at 75% 62%, rgba(var(--accent-gold-rgb), 0.20) 0%, transparent 52%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 80% at 50% 35%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--spacing-lg);
    padding: calc(var(--spacing-xl) * 0.9) var(--spacing-md);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    z-index: 2;
    order: 1;
}

.hero-logo-large {
    display: none;
    order: 1;
    margin-bottom: var(--spacing-lg);
    z-index: 2;
}

.hero-logo-large-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 14px 50px rgba(0, 0, 0, 0.55));
    animation: logoFloat 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 6px rgba(var(--accent-gold-rgb), 0.22),
        0 0 0 12px rgba(var(--accent-teal-rgb), 0.10);
}

.hero-logo-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
    animation: logoFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

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

.hero-text {
    color: var(--white);
    max-width: 900px;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 2;
    gap: var(--spacing-md);
}

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

.hero-image-card-small {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal);
    opacity: 0.9;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-image-card-small {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero-image-card-small {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }
}

.hero-image-card-small:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(var(--accent-sky-rgb), 0.18);
}

.hero-image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-name {
    display: inline-block;
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(var(--accent-teal-rgb), 0.22),
        0 0 45px rgba(var(--accent-gold-rgb), 0.22);
    line-height: 1.1;
    margin-bottom: 0;
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(var(--accent-sky-rgb), 1) 18%,
        rgba(var(--accent-teal-rgb), 1) 38%,
        var(--accent-gold) 58%,
        rgba(var(--accent-rose-rgb), 1) 78%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out, shimmer 4s linear infinite;
    text-align: center;
    width: 100%;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-tagline {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.5),
        0 0 18px rgba(var(--accent-teal-rgb), 0.18);
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.03em;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1.1rem, 2.3vw, 1.35rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.01em;
    margin-top: var(--spacing-md);
}

html[dir="rtl"] .hero-description {
    text-align: center;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.explore-btn {
    background: linear-gradient(145deg, var(--primary-blue) 0%, var(--primary-blue-dark) 50%, var(--primary-blue) 100%);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 20px;
    font-size: 1.05rem;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(36, 30, 24, 0.22),
                0 4px 12px rgba(36, 30, 24, 0.14),
                inset 0 2px 4px rgba(255, 255, 255, 0.25),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.explore-btn:hover {
    background: linear-gradient(145deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(var(--accent-gold-rgb), 0.45),
                0 8px 20px rgba(var(--accent-teal-rgb), 0.22),
                0 4px 12px rgba(var(--accent-indigo-rgb), 0.18),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                inset 0 -2px 4px rgba(0, 0, 0, 0.15),
                0 0 30px rgba(var(--accent-gold-rgb), 0.30);
    border-radius: 24px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    min-height: 400px;
}

@media (max-width: 768px) {
    .testimonials-slider {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
.testimonials-slider {
    min-height: 300px;
    }
}

.testimonial-card {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: var(--spacing-xl) var(--spacing-lg);
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 12px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: var(--spacing-md);
        line-height: 1.7;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
}

.testimonial-card.active {
    display: block;
    animation: testimonialSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-color: var(--primary-blue);
    box-shadow: 0 16px 48px rgba(36, 30, 24, 0.12);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(36, 30, 24, 0.18);
}

.author-name {
    font-size: 1.2rem;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.18);
}

.testimonial-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--accent-gold-rgb), 0.4);
}

.testimonial-indicators {
    display: flex;
    gap: var(--spacing-xs);
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-indicator.active {
    background: var(--primary-orange);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(31, 25, 19, 0.90) 0%, rgba(0, 0, 0, 0.70) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0;
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(36, 30, 24, 0.10);
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 20px;
    }
    
    .map-container {
        border-radius: 20px 20px 0 0;
        height: 350px;
    }
    
    .contact-info {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        border-radius: 16px;
    }
    
    .map-container {
        border-radius: 16px 16px 0 0;
    }
    
    .contact-info {
        border-radius: 0 0 16px 16px;
    }
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 30, 24, 0.06) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
    }
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
    filter: brightness(1.05) contrast(1.1);
}

.contact-info {
    padding: var(--spacing-xxl);
    color: var(--text-dark);
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

@media (max-width: 768px) {
    .contact-info {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: var(--spacing-lg);
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-item {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        padding: 10px 12px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .directions-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

.contact-info h3 {
    font-size: 2rem;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-xl);
    font-weight: 800;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[dir="rtl"] .contact-info h3 {
    text-align: right;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    direction: ltr;
    text-align: left;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(36, 30, 24, 0.12);
}

.contact-item:hover {
    background: rgba(var(--accent-gold-rgb), 0.10);
    border-color: rgba(var(--accent-gold-rgb), 0.28);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.10);
}

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

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-gold-rgb), 0.12);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(var(--accent-gold-rgb), 0.18);
    transform: scale(1.1);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.contact-item.rating {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.10) 0%, rgba(var(--accent-gold-light-rgb), 0.10) 100%);
    border-color: rgba(var(--accent-gold-rgb), 0.30);
}

.contact-item.rating:hover {
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.15) 0%, rgba(var(--accent-gold-light-rgb), 0.15) 100%);
    border-color: rgba(var(--accent-gold-rgb), 0.40);
}

.contact-item.rating i {
    color: var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.20);
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(36, 30, 24, 0.25), 0 0 30px rgba(var(--accent-gold-rgb), 0.16);
    width: 100%;
    max-width: 100%;
}

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

.directions-btn:hover::before {
    left: 100%;
}

.directions-btn:hover {
    background: linear-gradient(145deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(var(--accent-gold-rgb), 0.50), 0 0 40px rgba(var(--accent-gold-rgb), 0.30);
}

.directions-btn i {
    transition: transform 0.3s ease;
}

.directions-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue-dark) 100%);
    padding: 80px 0 30px;
    color: var(--white);
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
}
}

@media (max-width: 480px) {
.footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: var(--spacing-md);
        padding: 0 15px;
    }
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* Modern Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.social-link.facebook {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.footer-phone i,
.footer-email i {
    color: var(--primary-orange);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--primary-orange);
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.footer-location i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.footer-location-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-normal);
    line-height: 1.6;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.footer-location-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-logo-section {
    display: none;
}

.footer-logo-image {
    max-width: 150px;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.footer-brand-name {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

/* Modal - Modern Design */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 2, 2, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    overflow-y: auto;
    padding: var(--spacing-lg);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 1200px;
    width: 100%;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .modal {
        padding: 0;
        align-items: flex-end;
        justify-content: center;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        animation: modalSlideInMobile 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes modalSlideInMobile {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    touch-action: manipulation;
    background: rgba(36, 30, 24, 0.08);
    border: 2px solid rgba(36, 30, 24, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 4px 16px rgba(var(--accent-gold-rgb), 0.35);
}

@media (max-width: 768px) {
    .modal-close {
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
        background: rgba(36, 30, 24, 0.10);
    }
}

@media (max-width: 480px) {
    .modal-close {
        right: 12px;
        top: 12px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .modal-body {
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
}

.modal-image-gallery {
    position: relative;
}

@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .main-image-container {
        height: 250px;
        border-radius: 10px;
        margin-bottom: var(--spacing-sm);
    }
}

.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .main-image-container {
        height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .main-image-container {
        height: 250px;
        border-radius: 8px;
        margin-bottom: var(--spacing-sm);
    }
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: var(--spacing-xs) 0;
}

@media (max-width: 480px) {
    .thumbnail-gallery {
        gap: 8px;
    }
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 6px;
    }
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 0;
    text-align: left;
}

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

@media (max-width: 768px) {
.modal-info h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modal-info h2 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .modal-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.modal-info h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-align: left;
}

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

.modal-description {
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

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

.modal-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: left;
}

html[dir="rtl"] .modal-description p {
    text-align: right;
}

@media (max-width: 480px) {
    .modal-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 480px) {
    .modal-details {
        gap: 8px;
        margin-bottom: var(--spacing-md);
    }
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    padding: var(--spacing-sm);
    background: rgba(36, 30, 24, 0.06);
    border-radius: 8px;
    margin-bottom: var(--spacing-xs);
    direction: ltr;
    text-align: left;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

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

.detail-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

@media (max-width: 480px) {
    .detail-item {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .detail-item i {
        font-size: 1.1rem;
    }
}

.modal-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {
    .modal-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .modal-actions {
        margin-top: var(--spacing-md);
    }
}

.modal-btn {
    flex: 1;
    padding: var(--spacing-md);
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-normal);
}

.map-btn {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.18);
}

.map-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-gold-rgb), 0.4);
}

.close-btn {
    background: var(--gray-800);
    color: var(--white);
}

.close-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 30, 24, 0.18);
}

/* ============================================
   RESPONSIVE DESIGN - IDENTICAL ON ALL DEVICES
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-image-card:nth-child(3) {
        grid-column: auto;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation - Modern Home Screen Style */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: stretch;
        padding: 60px 0 20px;
        transition: left 0.3s ease-out;
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-nav .language-selector {
        width: 100%;
        padding: 15px 25px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        justify-content: center;
        transition: background 0.3s, color 0.3s;
        margin: 0;
        background: transparent;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: var(--spacing-md);
        display: flex;
        align-items: center;
        color: var(--text-primary);
        font-size: 15px;
        font-weight: 500;
        min-width: auto;
    }

    .header-nav .language-selector:hover {
        background: linear-gradient(145deg, rgba(var(--accent-gold-rgb), 0.14) 0%, rgba(var(--accent-gold-rgb), 0.10) 50%, rgba(var(--accent-gold-rgb), 0.14) 100%);
        color: var(--text-primary);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 40px rgba(36, 30, 24, 0.18), 
                    0 6px 20px rgba(36, 30, 24, 0.12),
                    inset 0 2px 4px rgba(255, 255, 255, 1);
        border-radius: 24px;
    }

    .header-nav .language-selector select {
        flex: 0 1 auto;
        padding: 8px 36px 8px 8px;
        margin: 0;
        background: transparent;
        border: none;
        color: var(--text-primary);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.3px;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        outline: none;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-nav .language-selector:hover select {
        color: var(--accent-gold);
    }

    .header-nav .language-selector i.fa-globe {
        margin-left: 0;
        margin-right: 12px;
        color: var(--primary-blue);
        font-size: 20px;
        filter: drop-shadow(0 2px 4px rgba(36, 30, 24, 0.14));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header-nav .language-selector:hover i.fa-globe {
        color: var(--accent-gold);
        transform: rotate(360deg) scale(1.2);
        filter: drop-shadow(0 3px 6px rgba(var(--accent-gold-rgb), 0.4));
    }

    .header-nav .language-selector i.fa-chevron-down {
        margin-left: 10px;
        margin-right: 0;
    }

    .header-nav.active {
        left: 0;
    }

    .header-nav .nav-link {
        width: 100%;
        padding: 15px 25px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        transition: background 0.3s, color 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: var(--text-primary);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        white-space: nowrap;
        overflow: visible;
    }
    
    .header-nav .nav-link span {
        flex: 0 1 auto;
        min-width: 0;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .header-nav .nav-link i {
        font-size: 18px;
        width: 24px;
        text-align: center;
    }
    
    .header-nav .home-nav-link {
        background: transparent;
        color: var(--text-primary) !important;
        font-weight: 500;
        margin-bottom: var(--spacing-sm);
        border-radius: 12px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 10px;
        justify-content: center;
        box-shadow: none;
        white-space: normal;
    }
    
    .header-nav .home-nav-link span {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        flex: 0 1 auto;
    }
    
    .header-nav .home-nav-link:hover {
        background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--accent-gold-rgb), 0.4);
    }
    
    .header-nav .home-nav-link i {
        font-size: 20px;
    }

    .header-nav .nav-link::after {
        display: none;
    }

    .header-nav .nav-link:hover,
    .header-nav .nav-link:active,
    .header-nav .nav-link:focus {
        background: rgba(var(--accent-gold-rgb), 0.12);
        color: var(--accent-gold);
        transform: none;
        outline: none;
    }


    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-logo-image {
        width: 140px;
        height: 140px;
    }

    .hero-content {
        gap: var(--spacing-lg);
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .brand-name {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-tagline {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--spacing-sm);
    }

    
    .header-content {
        justify-content: space-between;
        position: relative;
    }

    .hero-images-small {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }

    .hero-image-card-small {
        width: 90px;
        height: 90px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    

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

    .services-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .services-grid::-webkit-scrollbar {
        height: 6px;
    }

    .services-grid::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 10px;
    }

    .service-card {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 30px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 0.9rem;
    }
    }

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .logo-image {
        height: 60px;
        max-width: 150px;
    }
    
    /* Ensure all sections fit on mobile */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .service-card {
        min-width: 220px;
        max-width: 220px;
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }

    .modal-content {
        margin: 10px;
        width: calc(100% - 20px);
    }

    .modal-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .brand-name {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tagline {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.8;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
    
    .hero-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 15px;
    }

    .hero-logo-image {
        width: 120px;
        height: 120px;
    }

    .category-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        padding-bottom: var(--spacing-sm);
    }

    .destination-content {
        padding: var(--spacing-md);
    }

    .destination-content h3 {
        font-size: 1.1rem;
    }

    .destination-content p {
        font-size: 0.9rem;
    }

    .explore-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .testimonial-controls {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: var(--spacing-md);
        font-size: 0.85rem;
    }
}

/* ============================================
   RTL SUPPORT - COMPREHENSIVE REBUILD
   ============================================ */

/* Base RTL Direction */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Body RTL - Remove ALL padding and margin to prevent white space */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Fix for body[dir="rtl"] - Remove any padding-top that might be causing blank space */
body[dir="rtl"] {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.rtl {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Home Section RTL - Match LTR exactly */
html[dir="rtl"] #home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

html[dir="rtl"] #home.hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
    padding-bottom: 60px !important;
}

@media (max-width: 768px) {
    html[dir="rtl"] #home.hero {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] #home.hero {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
    }
}

html[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
    margin: 0;
    padding: 0;
}

/* Header RTL - Match LTR exactly - FIXED POSITIONING */
html[dir="rtl"] .header {
    margin: 0 !important;
    padding: 16px 0 !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    html[dir="rtl"] .header {
        padding: 12px 0 !important;
        min-height: 60px !important;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .header {
        padding: 10px 0 !important;
        min-height: 56px !important;
    }
}

html[dir="rtl"] .header-content {
    direction: rtl;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 var(--spacing-md) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    html[dir="rtl"] .header-content {
        padding: 0 var(--spacing-sm) !important;
        gap: var(--spacing-sm) !important;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .header-content {
        padding: 0 15px !important;
        gap: 10px !important;
    }
}

html[dir="ltr"] .header {
    margin: 0;
    padding: 16px 0;
}

/* Desktop Navigation RTL - Keep normal flow (only on desktop) */
@media (min-width: 769px) {
    html[dir="rtl"] .header-nav {
        direction: rtl !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: var(--spacing-sm) !important;
        flex-wrap: wrap !important;
        flex: 1 !important;
        position: relative !important;
    }
    
    html[dir="rtl"] .header-nav .nav-link:not(.home-nav-link) {
        text-align: right;
    }
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .language-selector {
    direction: rtl;
}

html[dir="rtl"] .language-selector select {
    direction: rtl;
    text-align: right;
    padding: 5px 5px 5px 30px;
}

html[dir="rtl"] .language-selector i.fa-chevron-down {
    left: 15px;
        right: auto;
}

html[dir="rtl"] .language-selector i.fa-globe {
    order: 2;
}

/* Mobile Menu RTL - Only apply on mobile screens */
@media (max-width: 768px) {
    html[dir="rtl"] .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: -100% !important;
        width: 75% !important;
        max-width: 320px !important;
        height: 100vh !important;
        border-right: none !important;
        border-left: 2px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: -4px 0 40px rgba(36, 30, 24, 0.35), -8px 0 60px rgba(0, 0, 0, 0.18) !important;
        background: linear-gradient(180deg, rgba(31, 25, 19, 0.98) 0%, rgba(31, 25, 19, 0.95) 50%, rgba(15, 12, 9, 0.98) 100%) !important;
        backdrop-filter: blur(25px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 60px 0 20px !important;
        transition: right 0.3s ease-out !important;
        z-index: 1001 !important;
        overflow-y: auto !important;
        gap: 0 !important;
    }
    
    html[dir="rtl"] .header-nav.active {
        right: 0 !important;
        left: auto !important;
    }
    
    html[dir="rtl"] .header-nav .nav-link {
        text-align: center !important;
        padding: 18px 25px !important;
        flex-direction: row !important;
        justify-content: center !important;
        color: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .language-selector {
    direction: rtl;
}

html[dir="rtl"] .language-selector select {
    direction: rtl;
    text-align: right;
    padding: 5px 5px 5px 30px;
}

html[dir="rtl"] .language-selector i.fa-chevron-down {
    left: 15px;
        right: auto;
}

html[dir="rtl"] .language-selector i.fa-globe {
    order: 2;
}

/* Mobile language selector RTL styles */
@media (max-width: 768px) {
    html[dir="rtl"] .header-nav .language-selector select {
        text-align: center !important;
        direction: rtl !important;
        color: rgba(255, 255, 255, 0.98) !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        transition: all 0.3s ease;
    }
    
    html[dir="rtl"] .header-nav .language-selector:hover select {
        color: var(--white) !important;
    }
    
    html[dir="rtl"] .header-nav .language-selector i.fa-globe {
        color: rgba(255, 255, 255, 0.98) !important;
        font-size: 20px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        margin-right: 0 !important;
        margin-left: 12px !important;
        order: 2 !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
    }
    
    html[dir="rtl"] .header-nav .language-selector:hover i.fa-globe {
        color: var(--accent-gold) !important;
        transform: rotate(360deg) scale(1.2) !important;
        filter: drop-shadow(0 3px 6px rgba(var(--accent-gold-rgb), 0.5)) !important;
    }
    
    html[dir="rtl"] .header-nav .language-selector i.fa-chevron-down {
        margin-left: 0 !important;
        margin-right: 10px !important;
        left: auto !important;
        right: 15px !important;
    }
}

/* Mobile menu toggle RTL - only on mobile */
@media (max-width: 768px) {
    html[dir="rtl"] .mobile-menu-toggle {
        transform: scaleX(1);
    }
}

/* Hero Section RTL - Match LTR exactly */
html[dir="rtl"] .hero {
    padding: 80px 0 60px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 85vh;
    position: relative;
    width: 100%;
}

html[dir="rtl"] .hero-container {
    margin: 0 auto !important;
    padding: 0 var(--spacing-md) !important;
    width: 100%;
    max-width: 1400px;
}

html[dir="rtl"] .hero-content {
    direction: rtl;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero-container {
        padding: 0 var(--spacing-sm) !important;
    }
    
    html[dir="rtl"] .hero-content {
        gap: var(--spacing-md);
        padding: var(--spacing-lg) 0 !important;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero-container {
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero {
        min-height: auto !important;
        padding: 60px 0 40px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    html[dir="rtl"] .hero-logo-large {
        margin-top: 0 !important;
        margin-bottom: var(--spacing-lg) !important;
        padding: 0 !important;
    }
    
    html[dir="rtl"] .hero-text {
        order: 2;
        gap: var(--spacing-sm);
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero {
        min-height: auto !important;
        padding: 50px 0 30px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

html[dir="rtl"] .hero-text {
    text-align: center; /* Keep center for consistent dimensions */
    max-width: 900px; /* Same as LTR */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

html[dir="rtl"] .hero-description {
    text-align: center; /* Keep center for consistent dimensions */
    max-width: 750px; /* Same as LTR */
    margin: 0 !important;
    padding: 0 !important;
}

html[dir="rtl"] .hero-images-small {
    direction: rtl;
    justify-content: center; /* Keep centered */
}

/* Services RTL - Match LTR exactly */
html[dir="rtl"] .services {
    margin: 0 !important;
    padding: var(--spacing-xxl) 0 !important;
}

html[dir="rtl"] .services-grid {
    direction: rtl;
    gap: var(--spacing-lg);
    width: 100%;
}

html[dir="rtl"] .service-card {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 55px 40px;
    border-radius: 36px;
    min-width: 280px;
    max-width: 350px;
    margin: 0;
}

/* Services RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .services {
        padding: var(--spacing-xl) 0 !important;
    }
    
    html[dir="rtl"] .service-card {
        min-width: 250px;
        max-width: 250px;
        padding: 30px 25px;
    }
    
    html[dir="rtl"] .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    html[dir="rtl"] .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    html[dir="rtl"] .service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .services {
        padding: var(--spacing-lg) 0 !important;
    }
    
    html[dir="rtl"] .service-card {
        min-width: 240px;
        max-width: 240px;
        padding: 25px 20px;
    }
    
    html[dir="rtl"] .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    html[dir="rtl"] .service-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    html[dir="rtl"] .service-description {
        font-size: 0.85rem;
    }
}

/* Destinations RTL - Match LTR exactly */
html[dir="rtl"] .destinations {
    margin: 0 !important;
    padding: var(--spacing-xxl) 0 !important;
}

html[dir="rtl"] .destinations-grid {
    direction: rtl;
    gap: var(--spacing-lg);
    width: 100%;
}

html[dir="rtl"] .destination-card {
    min-width: 320px;
    max-width: 380px;
    border-radius: 36px;
    margin: 0;
}

/* Destinations RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .destinations {
        padding: var(--spacing-xl) 0 !important;
    }
    
    html[dir="rtl"] .destinations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    html[dir="rtl"] .destination-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    html[dir="rtl"] .destination-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .destinations {
        padding: var(--spacing-lg) 0 !important;
    }
    
    html[dir="rtl"] .destination-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    html[dir="rtl"] .destination-image {
        height: 200px;
    }
    
    html[dir="rtl"] .destination-content {
        padding: var(--spacing-md);
    }
    
    html[dir="rtl"] .destination-content h3 {
        font-size: 1.1rem;
    }
    
    html[dir="rtl"] .explore-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

html[dir="rtl"] .destination-image {
    width: 100%;
    height: 250px;
}

html[dir="rtl"] .destination-content {
    text-align: right;
    padding: var(--spacing-lg); /* Same padding as LTR */
}

@media (max-width: 768px) {
    html[dir="rtl"] .destination-content {
        padding: var(--spacing-md); /* Same padding as LTR */
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .destination-content {
        padding: var(--spacing-sm); /* Same padding as LTR */
    }
}

html[dir="rtl"] .destination-content h3 {
    text-align: right;
    font-size: 1.5rem;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

html[dir="rtl"] .explore-btn {
    direction: rtl;
}

html[dir="rtl"] .explore-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .explore-btn i {
    transform: scaleX(-1);
}

/* Testimonials RTL - Match LTR exactly */
html[dir="rtl"] .testimonials {
    margin: 0 !important;
    padding: var(--spacing-xxl) 0 !important;
}

html[dir="rtl"] .testimonial-text {
    border-left: none;
    border-right: 4px solid var(--primary-blue);
    text-align: right;
    padding: var(--spacing-lg);
    margin: 0;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

html[dir="rtl"] .testimonial-author {
    direction: rtl;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html[dir="rtl"] .author-info {
    text-align: right;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonials RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .testimonials {
        padding: var(--spacing-xl) 0 !important;
    }
    
    html[dir="rtl"] .testimonial-text {
        padding: var(--spacing-md);
        font-size: 1rem;
    }
    
    html[dir="rtl"] .testimonial-controls {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    html[dir="rtl"] .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .testimonials {
        padding: var(--spacing-lg) 0 !important;
    }
    
    html[dir="rtl"] .testimonial-text {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }
}

/* Contact RTL - Match LTR exactly */
html[dir="rtl"] .contact {
    margin: 0 !important;
    padding: var(--spacing-xxl) 0 !important;
}

html[dir="rtl"] .contact-content {
    direction: rtl;
    gap: 0;
    width: 100%;
}

html[dir="rtl"] .contact-info {
    text-align: right;
    width: 100%;
    margin: 0;
    padding: var(--spacing-xxl);
}

html[dir="rtl"] .contact-item {
    direction: rtl;
    text-align: right;
    padding: 12px 16px;
    margin-bottom: var(--spacing-lg);
    width: 100%;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Contact RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .contact {
        padding: var(--spacing-xl) 0 !important;
    }
    
    html[dir="rtl"] .contact-content {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    
    html[dir="rtl"] .map-container {
        height: 350px;
        border-radius: 20px 20px 0 0;
    }
    
    html[dir="rtl"] .contact-info {
        padding: var(--spacing-xl);
        border-radius: 0 0 20px 20px;
    }
    
    html[dir="rtl"] .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-lg);
    }
    
    html[dir="rtl"] .contact-item {
        padding: 12px 16px;
        margin-bottom: var(--spacing-md);
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .contact {
        padding: var(--spacing-lg) 0 !important;
    }
    
    html[dir="rtl"] .contact-content {
        border-radius: 16px;
    }
    
    html[dir="rtl"] .map-container {
        height: 300px;
        border-radius: 16px 16px 0 0;
    }
    
    html[dir="rtl"] .contact-info {
        padding: var(--spacing-lg);
        border-radius: 0 0 16px 16px;
    }
    
    html[dir="rtl"] .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-md);
    }
    
    html[dir="rtl"] .contact-item {
        padding: 10px 12px;
        margin-bottom: var(--spacing-sm);
        font-size: 0.95rem;
    }
    
    html[dir="rtl"] .directions-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

html[dir="rtl"] .contact-item i {
    order: 2;
    margin-left: var(--spacing-sm);
    margin-right: 0;
    width: 24px; /* Same width as LTR */
    height: 24px; /* Same height */
}

html[dir="rtl"] .directions-btn {
    direction: rtl;
}

html[dir="rtl"] .directions-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .directions-btn i {
    transform: scaleX(-1);
}

/* Footer RTL - Match LTR exactly */
html[dir="rtl"] .footer {
    margin: 0 !important;
    padding: var(--spacing-xxl) 0 var(--spacing-md) 0 !important;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
    gap: var(--spacing-xl);
    width: 100%;
}

html[dir="rtl"] .footer-section {
    text-align: right;
    padding: var(--spacing-lg);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

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

html[dir="rtl"] .footer-phone,
html[dir="rtl"] .footer-email {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

html[dir="rtl"] .footer-phone i,
html[dir="rtl"] .footer-email i {
    order: 2;
}

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

html[dir="rtl"] .footer-location i {
    order: 2;
}

html[dir="rtl"] .social-links {
    direction: rtl;
}

/* Footer RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md) 0 !important;
    }
    
    html[dir="rtl"] .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    html[dir="rtl"] .footer-section {
        padding: var(--spacing-md);
    }
    
    html[dir="rtl"] .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm) 0 !important;
    }
    
    html[dir="rtl"] .footer-section {
        padding: var(--spacing-sm);
    }
    
    html[dir="rtl"] .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    html[dir="rtl"] .footer-section p,
    html[dir="rtl"] .footer-section a {
        font-size: 0.95rem;
    }
}

/* Modal RTL */
html[dir="rtl"] .modal-content {
    direction: rtl;
    max-width: 900px; /* Same max-width as LTR */
    width: 90%; /* Same width */
    margin: auto; /* Same margin */
}

html[dir="rtl"] .modal-body {
    direction: rtl;
    padding: var(--spacing-xl); /* Same padding as LTR */
    gap: var(--spacing-lg); /* Same gap */
}

html[dir="rtl"] .modal-info {
    text-align: right;
    width: 100%; /* Same width */
}

html[dir="rtl"] .modal-info h2 {
    text-align: right;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

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

html[dir="rtl"] .modal-description p {
    text-align: right;
}

html[dir="rtl"] .modal-details {
    direction: rtl;
}

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

html[dir="rtl"] .detail-item i {
    order: 2;
    margin-left: var(--spacing-sm);
    margin-right: 0;
}

html[dir="rtl"] .modal-actions {
    direction: rtl;
}

html[dir="rtl"] .modal-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .modal-close:hover {
    transform: scale(1.05) rotate(-90deg);
}

html[dir="rtl"] .thumbnail-gallery {
    direction: rtl;
}

/* Modal RTL Mobile - Harmonized dimensions */
@media (max-width: 768px) {
    html[dir="rtl"] .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
    }
    
    html[dir="rtl"] .modal-body {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    html[dir="rtl"] .modal-info h2 {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .modal-content {
        width: 98%;
        max-width: 98%;
        margin: 10px auto;
        border-radius: 16px;
    }
    
    html[dir="rtl"] .modal-body {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    html[dir="rtl"] .modal-info h2 {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-bottom: var(--spacing-sm);
    }
    
    html[dir="rtl"] .modal-description p {
        font-size: 0.95rem;
    }
    
    html[dir="rtl"] .detail-item {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    html[dir="rtl"] .modal-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Container RTL - Ensure same dimensions */
html[dir="rtl"] .container {
    max-width: 1400px; /* Same max-width as LTR */
    margin: 0 auto; /* Same margin */
    padding: 0 var(--spacing-md); /* Same padding */
    width: 100%; /* Same width */
}

@media (max-width: 768px) {
    html[dir="rtl"] .container {
        padding: 0 var(--spacing-sm); /* Same padding as LTR */
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .container {
        padding: 0 15px; /* Same padding as LTR */
    }
}

/* Section Titles RTL - Harmonized dimensions */
html[dir="rtl"] .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

html[dir="rtl"] .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
}

html[dir="rtl"] .category-title {
    text-align: center;
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    padding: 20px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(36, 30, 24, 0.06) 0%, rgba(var(--accent-gold-rgb), 0.04) 100%);
    border: 2px solid rgba(36, 30, 24, 0.12);
    box-shadow: 0 4px 20px rgba(36, 30, 24, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-lg);
}

/* Section Titles RTL Mobile - Harmonized */
@media (max-width: 768px) {
    html[dir="rtl"] .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-sm);
    }
    
    html[dir="rtl"] .section-title::after {
        width: 100px;
    }
    
    html[dir="rtl"] .category-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .section-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-xs);
    }
    
    html[dir="rtl"] .section-title::after {
        width: 80px;
    }
    
    html[dir="rtl"] .category-title {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        margin-bottom: var(--spacing-sm);
    }
}

/* Brand Name RTL - Ensure same dimensions */
html[dir="rtl"] .brand-name {
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

/* Hero Tagline RTL - Ensure same dimensions */
html[dir="rtl"] .hero-tagline {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-bottom: var(--spacing-lg);
}

/* Hero Logo RTL - Ensure same dimensions */
html[dir="rtl"] .hero-logo-image {
    width: 180px; /* Same width as LTR */
    height: 180px; /* Same height */
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero-logo-image {
        width: 140px; /* Same width as LTR (768px breakpoint) */
        height: 140px; /* Same height */
    }
    
    html[dir="rtl"] .brand-name {
        font-size: clamp(2rem, 10vw, 4rem); /* Same font size as LTR */
        letter-spacing: 2px; /* Same letter spacing */
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    html[dir="rtl"] .hero-tagline {
        font-size: clamp(1.1rem, 4vw, 1.6rem); /* Same font size as LTR */
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    html[dir="rtl"] .hero-description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem); /* Same font size as LTR */
        line-height: 1.8; /* Same line height */
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 var(--spacing-sm);
    }
    
    html[dir="rtl"] .hero-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    html[dir="rtl"] .hero-content {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    html[dir="rtl"] .hero-images-small {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
    
    html[dir="rtl"] .hero-image-card-small {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero-logo-image {
        width: 120px; /* Same width as LTR */
        height: 120px; /* Same height */
    }
    
    html[dir="rtl"] .brand-name {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    html[dir="rtl"] .hero-tagline {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    html[dir="rtl"] .hero-description {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
    
    html[dir="rtl"] .hero-text {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 15px;
    }
    
    html[dir="rtl"] .hero-content {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 var(--spacing-md);
    }
    
    html[dir="rtl"] .hero-images-small {
        gap: 10px;
        margin-top: var(--spacing-md);
        padding: 0 15px;
    }
    
    html[dir="rtl"] .hero-image-card-small {
        width: 80px;
        height: 80px;
    }
}

 .hero-images-small {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: var(--spacing-md);
     margin-top: var(--spacing-xl);
     z-index: 2;
     flex-wrap: wrap;
     width: 100%;
     padding: 0 var(--spacing-md);
 }

 html[dir="rtl"] .hero-images-small {
     direction: rtl;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: var(--spacing-lg);
     width: 100%;
     align-items: stretch;
 }

 .destinations-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: var(--spacing-lg);
     width: 100%;
     align-items: stretch;
 }

 html[dir="rtl"] .services-grid,
 html[dir="rtl"] .destinations-grid {
     direction: rtl;
 }

 html[dir="rtl"] .services-grid,
 html[dir="rtl"] .destinations-grid {
     justify-items: stretch;
 }

 html[dir="rtl"] .service-card,
 html[dir="rtl"] .destination-card {
     width: 100% !important;
     min-width: 0 !important;
     max-width: none !important;
 }

 .destination-image {
     width: 100%;
     height: 250px;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 @media (max-width: 768px) {
     .services-grid {
         display: grid;
         grid-template-columns: repeat(2, minmax(0, 1fr));
         overflow: visible;
         scroll-snap-type: none;
     }

     .service-card {
         min-width: 0;
         max-width: none;
         width: 100%;
     }

     .destinations-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }

     .destination-card {
         min-width: 0;
         max-width: none;
         width: 100%;
     }

     html[dir="rtl"] .service-card,
     html[dir="rtl"] .destination-card {
         width: 100% !important;
         min-width: 0 !important;
         max-width: none !important;
     }
 }

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

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

 .services,
 .destinations {
     padding: clamp(64px, 7vw, 110px) 0;
     position: relative;
     width: 100%;
 }

 .services {
     background: radial-gradient(circle at 20% 20%, rgba(var(--accent-gold-rgb), 0.12) 0%, transparent 55%),
         radial-gradient(circle at 80% 35%, rgba(var(--primary-blue-rgb), 0.10) 0%, transparent 55%),
         linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.92) 100%);
 }

 .destinations {
     background: radial-gradient(circle at 25% 30%, rgba(var(--accent-teal-rgb), 0.10) 0%, transparent 55%),
         radial-gradient(circle at 75% 15%, rgba(var(--accent-indigo-rgb), 0.10) 0%, transparent 60%),
         linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
 }

 .services-grid,
 .destinations-grid {
     margin-top: var(--spacing-xl);
 }

 .services .section-title {
     text-align: center;
     margin-bottom: var(--spacing-xl);
 }

 .services-grid {
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 24px;
 }

 .service-card {
     background: rgba(255, 255, 255, 0.96);
     border: 1px solid rgba(36, 30, 24, 0.10);
     border-radius: 24px;
     box-shadow: 0 18px 50px rgba(36, 30, 24, 0.14);
     padding: clamp(22px, 2.4vw, 34px);
     transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     height: 100%;
 }

 .service-card::before {
     content: '';
     width: 54px;
     height: 4px;
     border-radius: 999px;
     background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold), var(--accent-indigo));
     opacity: 0.85;
     margin-bottom: 16px;
 }

 .service-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 24px 60px rgba(36, 30, 24, 0.16);
     border-color: rgba(var(--accent-gold-rgb), 0.30);
 }

 .service-icon {
     width: 74px;
     height: 74px;
     border-radius: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(var(--accent-teal-rgb), 0.18) 0%, rgba(var(--accent-gold-rgb), 0.18) 45%, rgba(var(--primary-blue-rgb), 0.14) 100%);
     color: var(--primary-blue);
     box-shadow: 0 12px 34px rgba(36, 30, 24, 0.16);
     margin-bottom: 16px;
 }

 .service-title {
     font-size: 1.18rem;
     font-weight: 800;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .service-description {
     font-size: 0.98rem;
     color: rgba(36, 30, 24, 0.74);
     line-height: 1.7;
 }

 .destination-card {
     background: rgba(255, 255, 255, 0.92);
     border: 1px solid rgba(36, 30, 24, 0.10);
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 16px 44px rgba(36, 30, 24, 0.12);
     transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
 }

 .destination-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 28px 70px rgba(36, 30, 24, 0.16);
     border-color: rgba(var(--primary-blue-rgb), 0.25);
 }

 .destination-image {
     height: 220px;
 }

 .destination-content {
     padding: 18px;
     text-align: center;
 }

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

 .destination-content h3 {
     font-size: 1.2rem;
     font-weight: 900;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .destinations .section-title,
 .destinations .section-subtitle {
     text-align: center;
 }

 .destinations .section-subtitle {
     margin-left: auto;
     margin-right: auto;
 }

 .category-title {
     display: flex;
     align-items: center;
     justify-content: center;
     width: fit-content;
     max-width: 100%;
     margin: var(--spacing-lg) auto var(--spacing-md);
     padding: 14px 18px;
     border-radius: 16px;
     border: 1px solid rgba(36, 30, 24, 0.10);
     background: rgba(255, 255, 255, 0.70);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
 }

 @media (max-width: 768px) {
     .services,
     .destinations {
         padding: var(--spacing-xxl) 0;
     }

     .services-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }

     .destination-image {
         height: 200px;
     }
 }

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

     .destination-image {
         height: 190px;
     }
 }

/* Section Subtitle RTL */
html[dir="rtl"] .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    html[dir="rtl"] .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        padding: 0 15px;
    }
}

/* Testimonial Controls RTL */
html[dir="rtl"] .testimonial-controls {
    direction: rtl;
}

/* Loading Screen RTL */
html[dir="rtl"] .loading-content {
    direction: rtl;
}

html[dir="rtl"] .loading-text {
    direction: rtl;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth scrolling */
    html {
        scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--white);
}

:root {
    --ui-bg: var(--light-beige);
    --ui-surface: rgba(255, 255, 255, 0.92);
    --ui-surface-solid: #ffffff;
    --ui-border: rgba(36, 30, 24, 0.10);
    --ui-border-strong: rgba(36, 30, 24, 0.16);
    --ui-shadow: 0 10px 30px rgba(27, 18, 0, 0.10);
    --ui-shadow-hover: 0 16px 44px rgba(27, 18, 0, 0.14);
    --ui-focus: 0 0 0 4px rgba(var(--accent-gold-rgb), 0.28);
}

body {
    background: var(--ui-bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: none;
    box-shadow: var(--ui-focus);
}

.service-card,
.destination-card,
.testimonial-card,
.contact-item,
.modal-content,
.header-nav {
    border: 1px solid var(--ui-border);
    box-shadow: var(--ui-shadow);
}

.service-card,
.destination-card,
.testimonial-card,
.modal-content {
    background: var(--ui-surface);
}

.service-card:hover,
.destination-card:hover,
.testimonial-card:hover,
.contact-item:hover {
    box-shadow: var(--ui-shadow-hover);
}

.modal-content {
    border-color: var(--ui-border-strong);
}

.testimonial-card:hover,
.contact-item:hover {
    box-shadow: var(--ui-shadow-hover);
}

.modal-content {
    border-color: var(--ui-border-strong);
}

.explore-btn,
.directions-btn,
.modal-btn,
button,
.btn {
    border-radius: 18px;
}

input,
select,
textarea {
    border-color: var(--ui-border);
    background: rgba(255, 255, 255, 0.85);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(var(--accent-gold-rgb), 0.55);
}

html[dir="ltr"] .brand-name {
    font-family: 'Playfair Display', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: currentColor;
    width: auto;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
}

html[dir="ltr"] .hero-tagline {
    color: rgba(var(--accent-gold-rgb), 0.95);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}

html[dir="ltr"] .hero-description {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 992px) {
    html[dir="ltr"] .hero-content {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        align-items: center;
        justify-items: stretch;
        text-align: left;
        gap: clamp(28px, 4vw, 64px);
        padding: clamp(20px, 3vw, 40px);
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    html[dir="ltr"] .hero-logo,
    html[dir="ltr"] .hero-logo-large {
        display: none;
    }

    html[dir="ltr"] .hero-text {
        text-align: left;
        align-items: flex-start;
        justify-content: center;
        max-width: 720px;
    }

    html[dir="ltr"] .brand-name {
        text-align: left;
        width: auto;
    }

    html[dir="ltr"] .hero-tagline,
    html[dir="ltr"] .hero-description {
        text-align: left;
    }

    html[dir="ltr"] .hero-images-small {
        margin-top: 0;
        padding: 0;
        width: auto;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        gap: 22px;
    }

    html[dir="ltr"] .hero-image-card-small {
        width: 185px;
        height: 250px;
        border-radius: 22px;
        opacity: 1;
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
    }
}

html[dir="rtl"] .brand-name {
    font-family: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: currentColor;
    width: auto;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
}

html[dir="rtl"] .hero-tagline {
    color: rgba(var(--accent-gold-rgb), 0.95);
}

html[dir="rtl"] .hero-description {
    color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 992px) {
    html[dir="rtl"] .hero-content {
        display: grid !important;
        grid-template-columns: 0.75fr 1.25fr !important;
        align-items: center !important;
        justify-items: stretch !important;
        text-align: right !important;
        gap: clamp(28px, 4vw, 64px) !important;
        padding: clamp(20px, 3vw, 40px) !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    html[dir="rtl"] .hero-logo,
    html[dir="rtl"] .hero-logo-large {
        display: none !important;
    }

    html[dir="rtl"] .hero-images-small {
        grid-column: 1 !important;
        margin-top: 0 !important;
        padding: 0 !important;
        width: auto !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 22px !important;
    }

    html[dir="rtl"] .hero-text {
        grid-column: 2 !important;
        text-align: right !important;
        align-items: flex-start !important;
        justify-content: center !important;
        max-width: 720px !important;
    }

    html[dir="rtl"] .brand-name {
        text-align: right !important;
        width: auto !important;
    }

    html[dir="rtl"] .hero-tagline,
    html[dir="rtl"] .hero-description {
        text-align: right !important;
    }

    html[dir="rtl"] .hero-image-card-small {
        width: 185px !important;
        height: 250px !important;
        border-radius: 22px !important;
        opacity: 1 !important;
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35) !important;
    }
}

@media (max-width: 768px) {
    .header-nav {
        left: 0;
        transform: translateX(-110%);
        transition: transform 0.32s ease-out;
        width: 86%;
        max-width: 360px;
        border-radius: 0 22px 22px 0;
        padding-top: calc(72px + env(safe-area-inset-top, 0px));
        padding-bottom: 24px;
    }

    .header-nav.active {
        left: 0;
        transform: translateX(0);
    }

    html[dir="rtl"] .header-nav {
        right: 0;
        left: auto;
        transform: translateX(110%);
        border-radius: 22px 0 0 22px;
    }

    html[dir="rtl"] .header-nav.active {
        right: 0;
        left: auto;
        transform: translateX(0);
    }

    .header-nav .nav-link {
        padding: 16px 22px;
        font-size: 16px;
        border-bottom: 1px solid rgba(36, 30, 24, 0.08);
    }

    .header-nav .home-nav-link {
        margin: 10px 16px 6px;
        border-radius: 14px;
        border: 1px solid rgba(36, 30, 24, 0.10);
        background: rgba(255, 255, 255, 0.65);
    }

    .header-nav .language-selector {
        margin: 14px 16px 0;
        border-radius: 14px;
        border: 1px solid rgba(36, 30, 24, 0.10);
        background: rgba(255, 255, 255, 0.65);
    }

    .hero-content {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding: 26px 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    }

    .hero-text {
        padding: 0;
        gap: 10px;
    }

    .brand-name {
        width: auto;
        text-transform: none;
        letter-spacing: 0;
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .hero-images-small {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        margin-top: 18px;
        padding: 0 4px;
    }

    .hero-image-card-small {
        width: 108px;
        height: 132px;
        border-radius: 16px;
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 22px 16px;
        border-radius: 20px;
    }
 
    .hero-image-card-small {
        width: 96px;
        height: 122px;
    }
}
