/* ALZawia Hotel - Main Stylesheet */

/* Font Face Declarations */
@font-face {
    font-family: 'AraHamah-Bold';
    src: url('../fonts/Ara Hamah 1964 B Bold.ttf') format('truetype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: 'AraHamah-Regular';
    src: url('../fonts/Ara Hamah 1964 R Regular.otf') format('opentype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FSAlbert-Arabic';
    src: url('../fonts/FSAlbertArabic-Regular.otf') format('opentype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/alfont_com_Effra_Rg.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-color: #A4906F;
    --secondary-color: #2F3068;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #b7c0c1;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Effra', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* RTL Support */
body.rtl {
    font-family: 'FSAlbert-Arabic', 'AraHamah-Regular', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
    font-family: 'AraHamah-Bold', 'FSAlbert-Arabic', Arial, sans-serif;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #b8956a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    /* background-color: transparent; */
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

/* .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
} */

.primary-color {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-muted);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--text-muted);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.rtl .logo {
    margin-right: 0;
    margin-left: 15px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-grow: 2;
    justify-content: end;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    margin-inline: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: grid;
    place-content: center;
    position: relative;
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding-inline: 0.5rem;
    vertical-align: middle;
}

.language-switcher::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: var(--text-muted);
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.5rem;
    text-decoration: none;
    color: var(--text-muted);
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-color);
}


.btn-book {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    padding: 16px 43px;
    text-align: center;
    font-family: var(--heading-font);
    z-index: 3;
    position: relative;
    transition: all 0.4s ease-out 0s;
    text-transform: uppercase;
    overflow: hidden;
}

/* Mobile Menu */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.toggle-bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition);
}

.rtl .mobile-menu {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.mobile-language-switcher {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-lang-btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
}

.mobile-lang-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-mobile-book {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
    z-index: 1;
}

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

.hero-slide.image-loaded {
    background-color: transparent;
}

.hero-slide.image-loading {
    background-color: #f0f0f0;
}

.hero-slide.next {
    transform: translateX(100%);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.5));
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.tagLine {
    color: var(--primary-color);
    margin: 0;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    text-align: start;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: var(--border-radius);
    padding: 11px 29px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Image Loading States */
.hero-slide.image-loading {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.hero-slide.image-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hero-slide.image-loaded::before {
    display: none;
}

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

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: transparent;
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    color: var(--primary-color);
    font-weight: bold;
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Numbered indicators for better accessibility */
.indicator[data-slide="0"]::after {
    content: "1";
}

.indicator[data-slide="1"]::after {
    content: "2";
}

.indicator[data-slide="2"]::after {
    content: "3";
}

.indicator.active::after {
    color: var(--primary-color);
}

/* Performance optimizations */
.hero-slide {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-btn {
    will-change: transform;
    backface-visibility: hidden;
}

#welcome {
    height: 80vh;
    margin: 0 auto;
}

/* Welcome Section */
#welcome {
    padding: 100px 0;
    position: relative;
}

#welcome::before {
    background: url('../photos/pattern.png') repeat;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
}

/* Welcome Section Styles */
#welcome {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url('../photos/pattern.png') repeat;
    pointer-events: none;
    z-index: -1;
}

#welcome .container {
    height: 100%;
    position: relative;
    z-index: 1;
}

#welcome .welcome-content {
    /* display: grid; */
    /* grid-template-columns: 1.2fr 1fr; */
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    min-height: auto;
}

/* Text Section Styles */
.welcome-text-section {
    width: 40%;
    padding-left: 20px;
}

.section-label {
    margin-bottom: 20px;
}

.label-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.label-text::before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    display: block;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.welcome-title .title-light {
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.welcome-title .title-bold {
    font-weight: 700;
    display: block;
}

.welcome-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    max-width: 100%;
}

.welcome-cta {
    margin-top: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Images Section Styles */
.welcome-images {
    position: relative;
    width: 50%;
}

.main-image {
    position: absolute !important;
    bottom: 30px;
    right: 0;
    width: 440px;
    height: 280px;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

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

.secondary-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 330px;
    height: 230px;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container:hover .room-image {
    transform: scale(1.1);
}

.image-overlay {
    display: none;
    /* Removing overlay as per typical clean design, or keep it subtle */
}


/* Responsive Design */
@media (max-width: 1200px) {
    #welcome .welcome-content {
        gap: 40px;
    }

    .welcome-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    #welcome .welcome-content {
        /* grid-template-columns: 1fr; */
        gap: 50px;
        padding: 50px 0;
    }

    .welcome-images {
        height: 450px;
        margin-bottom: 30px;
        max-width: 600px;
        margin-inline: auto;
    }

    .welcome-text-section {
        padding-left: 0;
    }

    .main-image {
        width: 70%;
        height: 350px;
        right: 0;
    }

    .secondary-image {
        width: 60%;
        height: 250px;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    #welcome{
        height: fit-content;
    }

    #welcome .welcome-content {
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
    }


    .welcome-images {
        height: 350px;
    }

    .main-image {
        width: 80%;
        height: 280px;
    }

    .secondary-image {
        width: 60%;
        height: 200px;
        border-width: 5px;
    }
}

@media (max-width: 480px) {
    .welcome-images {
        height: 280px;
    }

    .main-image {
        height: 220px;
    }

    .secondary-image {
        height: 160px;
    }

    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
}




/* Prefers reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease;
    }

    .carousel-btn {
        transition: background-color 0.2s ease;
    }

    .indicator {
        transition: background-color 0.2s ease;
    }

    .progress-bar {
        transition: none;
    }
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width linear;
}

/* RTL Support for Carousel */
[dir="rtl"] .hero-slide.next {
    transform: translateX(-100%);
}

[dir="rtl"] .hero-slide.prev {
    transform: translateX(100%);
}

[dir="rtl"] .carousel-controls {
    flex-direction: row-reverse;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 1rem;
        gap: 0.6rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .carousel-controls {
        display: none;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

.welcome-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-text {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #bbb;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

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

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

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #444;
    border-radius: var(--border-radius);
    background-color: #333;
    color: var(--text-light);
}

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

.newsletter-input button {
    padding: 12px 20px;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
    }

    .welcome-content {
        /* grid-template-columns: 1fr; */
        gap: 2rem;
        text-align: center;
    }

    .welcome-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .welcome {
        padding: 60px 0;
    }

    .feature {
        padding: 1.5rem;
    }

    .footer-main {
        padding: 40px 0 30px;
    }
}

/* RTL Specific Adjustments */

.rtl .navbar-actions {
    /* flex-direction: row-reverse; */
}

.rtl .hero-buttons {
    flex-direction: row-reverse;
}

.rtl .social-links {
    flex-direction: row-reverse;
}

.rtl .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .newsletter-input {
    flex-direction: row-reverse;
}

.rtl .footer-bottom-content {
    flex-direction: row-reverse;
}

.rtl .footer-bottom-links {
    flex-direction: row-reverse;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===== ROOMS SECTION ===== */
.rooms {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.3" fill="%23000" opacity="0.01"/><circle cx="20" cy="80" r="0.4" fill="%23000" opacity="0.015"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Rooms Header - Modern */
.rooms-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.rooms-header .section-label .label-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    /* Widest tracking */
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.rooms-title {
    font-family: 'Playfair Display', serif;
    /* Sophisticated serif */
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0 30px;
    position: relative;
    letter-spacing: -0.02em;
}

.rooms-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.7;
}

/* Room Filter Tabs - Modern */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid #e5e7eb;
    background: white;
    color: #6b7280;
    /* Gray 500 */
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    /* Refined radius */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: #f9fafb;
    color: var(--text-dark);
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    /* Assuming primary color shadow */
    transform: translateY(-1px);
}

/* Rooms Grid - Modern Premium Design */
.rooms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.room-card {
    flex: 1 1 340px;
    /* Grow, shrink, basis */
    max-width: 450px;
    /* Prevent cards from becoming too wide on large screens */
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.room-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.image-overlay-gradient {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

/* Room Content Block */
.room-content {
    padding: 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 2;
}

.room-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    /* Assuming serif font availability or fallback */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.room-price-tag {
    text-align: right;
    color: var(--primary-color);
}

.room-price-tag .currency {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: top;
}

.room-price-tag .amount {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.room-price-tag .period {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.room-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.room-actions {
    margin-top: auto;
}

.room-booking-btn {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.room-booking-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
    /* Assuming gold/primary color */
}

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

.room-booking-btn:hover i {
    transform: translateX(4px);
}


/* Removed old room styles */




/* .room-booking-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} */


/* Room Card Animations */
.room-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.room-card:nth-child(1) {
    animation-delay: 0.1s;
}

.room-card:nth-child(2) {
    animation-delay: 0.2s;
}

.room-card:nth-child(3) {
    animation-delay: 0.3s;
}

.room-card:nth-child(4) {
    animation-delay: 0.4s;
}

.room-card:nth-child(5) {
    animation-delay: 0.5s;
}

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

/* Filter Animation */
.room-card.filtered-out {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.room-card.filtered-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .rooms {
        padding: 60px 0;
    }

    .rooms-title {
        font-size: 2.2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .room-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .room-image {
        height: 240px;
    }

    .room-content {
        padding: 20px;
    }

    .room-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .rooms-header {
        margin-bottom: 40px;
    }

    .rooms-title {
        font-size: 1.8rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .room-image {
        height: 200px;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* RTL Support */
.rtl .room-filters {
    direction: rtl;
}

.rtl .filter-btn::before {
    left: 100%;
}

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

.rtl .room-booking-btn::before {
    left: 100%;
}

.rtl .room-booking-btn:hover::before {
    left: -100%;
}

.rtl .room-booking-btn:hover .booking-arrow {
    transform: translateX(-3px) scaleX(-1);
}

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-background {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('../photos/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    z-index: 1;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: parallaxFadeInUp 1s ease-out 0.3s forwards;
}

.parallax-subtitle {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: parallaxFadeInUp 1s ease-out 0.6s forwards;
}

.parallax-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: parallaxFadeInUp 1s ease-out 0.9s forwards;
}

.btn-parallax {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

/* ===== AMENITIES SECTION ===== */
.amenities {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities .section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.amenities .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #c9a96e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.amenities .section-label::before,
.amenities .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #c9a96e;
}

.amenities .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
}

.amenities .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #c9a96e;
    opacity: 0.7;
}

.amenities .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.amenity-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: auto;
    min-height: 120px;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.08), transparent);
    transition: left 0.6s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 169, 110, 0.25);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.amenity-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.amenity-card:hover .amenity-icon::before {
    width: 100%;
    height: 100%;
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.05);
}

.amenity-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.amenity-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.amenity-card:hover .amenity-title {
    color: #c9a96e;
}

.amenity-card:hover .amenity-description {
    color: #5a6c7d;
}

/* RTL Support for Amenities */
[dir="rtl"] .amenities .section-title,
[dir="rtl"] .amenities .section-subtitle {
    text-align: center;
}

[dir="rtl"] .amenity-card {
    text-align: right;
    flex-direction: row-reverse;
}

[dir="rtl"] .amenity-title,
[dir="rtl"] .amenity-description {
    font-family: 'Ara Hamah 1964 B', Arial, sans-serif;
}

/* Responsive Design for Amenities */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .amenities .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .amenities {
        padding: 80px 0;
    }

    .amenities .section-header {
        margin-bottom: 60px;
    }

    .amenities .section-title {
        font-size: 2.5rem;
    }

    .amenities .section-subtitle {
        font-size: 1.1rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .amenity-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        min-height: auto;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
        align-self: center;
    }

    .amenity-icon svg {
        width: 26px;
        height: 26px;
    }

    .amenity-content {
        text-align: center;
        gap: 6px;
    }

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

    .amenity-description {
        font-size: 0.85rem;
    }

    /* RTL adjustments for mobile */
    [dir="rtl"] .amenity-card {
        flex-direction: column;
        text-align: center;
    }
}

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

    .amenities .section-title {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenity-card {
        padding: 25px 15px;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .amenity-icon svg {
        width: 28px;
        height: 28px;
    }

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

/* Animation Keyframes for Amenities */
@keyframes amenityFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.amenity-card[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    animation: amenityFadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.amenity-card[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.amenity-card[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.amenity-card[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

.amenity-card[data-aos-delay="400"] {
    animation-delay: 0.4s;
}

.amenity-card[data-aos-delay="500"] {
    animation-delay: 0.5s;
}

.amenity-card[data-aos-delay="600"] {
    animation-delay: 0.6s;
}

.amenity-card[data-aos-delay="700"] {
    animation-delay: 0.7s;
}

.amenity-card[data-aos-delay="800"] {
    animation-delay: 0.8s;
}

.amenity-card[data-aos-delay="900"] {
    animation-delay: 0.9s;
}

.amenity-card[data-aos-delay="1000"] {
    animation-delay: 1.0s;
}

.amenity-card[data-aos-delay="1100"] {
    animation-delay: 1.1s;
}

.btn-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4b077 0%, #c9a96e 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-parallax:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

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

.btn-parallax svg {
    transition: transform 0.3s ease;
}

.btn-parallax:hover svg {
    transform: translate(3px, -3px);
}

/* Parallax Animations */
@keyframes parallaxFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .parallax-background {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .parallax-section {
        height: 60vh;
        min-height: 400px;
    }

    .parallax-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .parallax-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn-parallax {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .parallax-section {
        height: 50vh;
        min-height: 350px;
    }

    .parallax-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .parallax-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-parallax {
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
}

/* RTL Support */
.rtl .parallax-content {
    text-align: center;
}

.rtl .btn-parallax::before {
    left: 100%;
}

.rtl .btn-parallax:hover::before {
    left: 0;
}

.rtl .btn-parallax:hover svg {
    transform: translate(-3px, -3px);
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .parallax-background {
        background-attachment: scroll;
        transform: none !important;
    }

    .parallax-title,
    .parallax-subtitle,
    .parallax-cta {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .btn-parallax {
        transition: none;
    }
}

/* ===== CAFÉ SECTION ===== */
.cafe-section,
.disabilities-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cafe-section::before,
.disabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('../photos/pattern.png') repeat; */
    opacity: 0.3;
    z-index: 1;
}

.cafe-content,
.disabilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cafe-content::before,
.disabilities-content::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.06);
    padding-block: 25px;
    width: 80%;
    height: 100%;
    position: absolute;
    top: -25px;
    right: 0;
    z-index: -1;

}

.rtl .disabilities-content::before,
.disabilities-content::before {
    left: unset;
    right: 0;

}

.rtl .cafe-content::before,
.disabilities-content::before {
    right: unset;
    left: 0;
}

.cafe-image,
.disabilities-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cafe-image:hover,
.disabilities-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}


.cafe-image img,
.disabilities-image img {
    max-width: 636px;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cafe-image:hover img,
.disabilities-image:hover img {
    transform: scale(1.05);
}

.cafe-text,
.disabilities-text {
    padding: 40px 0;
}

.cafe-text .section-title,
.disabilities-text .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cafe-description,
.disabilities-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 500px;
}

.cafe-button-wrapper,
.disabilities-button-wrapper {
    margin-top: 40px;
}

.cafe-button,
.disabilities-button {
    display: inline-flex;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cafe-button::before,
.disabilities-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cafe-button:hover::before,
.disabilities-button:hover::before {
    left: 100%;
}

.cafe-button:hover,
.disabilities-button:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: white;
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cafe-button:hover .button-arrow,
.disabilities-button:hover .button-arrow {
    transform: translateX(5px);
}

/* RTL Support for Café Section */
[dir="rtl"] .cafe-content,
[dir="rtl"] .disabilities-content {
    direction: rtl;
}

[dir="rtl"] .cafe-image,
[dir="rtl"] .disabilities-image {
    transform: perspective(1000px) rotateY(5deg);
}

[dir="rtl"] .cafe-image:hover,
[dir="rtl"] .disabilities-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

[dir="rtl"] .cafe-text .section-title,
[dir="rtl"] .disabilities-text .section-title {
    font-family: 'Ara Hamah 1964 B', serif;
}

[dir="rtl"] .cafe-description,
[dir="rtl"] .disabilities-description {
    font-family: 'Ara Hamah 1964 R', serif;
}

[dir="rtl"] .cafe-button:hover .button-arrow,
[dir="rtl"] .disabilities-button:hover .button-arrow {
    transform: translateX(-5px) scaleX(-1);
}

/* Responsive Design for Café Section */
@media (max-width: 1024px) {

    .cafe-section,
    .disabilities-section {
        padding: 80px 0;
    }

    .cafe-content,
    .disabilities-content {
        gap: 60px;
    }

    .cafe-text .section-title,
    .disabilities-text .section-title {
        font-size: 3rem;
    }

    .cafe-image img,
    .disabilities-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {

    .cafe-section,
    .disabilities-section {
        padding: 60px 0;
    }

    .cafe-content,
    .disabilities-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cafe-image,
    .disabilities-image {
        transform: none;
        border-radius: 15px;
    }

    .cafe-image:hover,
    .disabilities-image:hover {
        transform: scale(1.02);
    }

    .cafe-image img,
    .disabilities-image img {
        height: 300px;
    }

    .cafe-text .section-title,
    .disabilities-text .section-title {
        font-size: 2.5rem;
    }

    .cafe-description,
    .disabilities-description {
        font-size: 1.1rem;
        max-width: none;
    }

    .cafe-button,
    .disabilities-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .cafe-section,
    .disabilities-section {
        padding: 40px 0;
    }

    .cafe-content,
    .disabilities-content {
        gap: 30px;
    }

    .cafe-image img,
    .disabilities-image img {
        height: 250px;
    }

    .cafe-text .section-title,
    .disabilities-text .section-title {
        font-size: 2rem;
    }

    .cafe-description,
    .disabilities-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cafe-button,
    .disabilities-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    /* RTL Mobile Adjustments */
    [dir="rtl"] .cafe-content,
    [dir="rtl"] .disabilities-content {
        text-align: center;
    }
}

.disabilities-content::before {
    left: 0;
    padding-block: 0;
    top: 0;
}

.disabilities-content {
    padding-inline: 40px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header .label-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

.gallery-header .label-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #c9a96e;
}

.gallery-header .label-text::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #c9a96e;
}

.gallery-header .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    /* margin-bottom: 20px; */
    margin: 0;
    line-height: 1.2;
    text-align: center;
    display: block;
}

.gallery-header .section-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.8) 0%,
            rgba(201, 169, 110, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.gallery-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.gallery-zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-zoom-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

.gallery-footer {
    text-align: center;
}

.gallery-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.gallery-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #b8956a 0%, #c9a96e 100%);
}

.gallery-view-all-btn .button-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.gallery-view-all-btn:hover .button-arrow {
    transform: translateX(4px);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    color: white;
}

.lightbox-image-container {
    position: relative;
    min-height: 300px;
    min-width: 300px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color, #c0a16b);
    font-size: 3rem;
    z-index: 5;
    display: none;
}

.lightbox-loading.active {
    display: block;
}

.lightbox-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #e74c3c;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    display: none;
}

.lightbox-error i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.lightbox-error p {
    margin: 0;
    font-weight: 600;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-image.loaded {
    opacity: 1;
}

.lightbox-info {
    padding: 30px;
    background: white;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    direction: ltr;
}

.lightbox-prev,
.lightbox-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .gallery-header .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-filters {
        gap: 10px;
        margin: 15px 0 30px;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-header .section-title {
        font-size: 36px;
    }

    .gallery-header .section-description {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .gallery-content h3 {
        font-size: 20px;
    }

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

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 15px;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-info {
        padding: 20px;
    }

    .lightbox-info h3 {
        font-size: 20px;
    }

    .lightbox-navigation {
        padding: 0 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {

    .gallery-header .label-text::before,
    .gallery-header .label-text::after {
        display: none;
    }

    .gallery-header .section-title {
        font-size: 28px;
    }

    .gallery-view-all-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .gallery-zoom-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .gallery-zoom-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] .gallery-zoom-btn {
    right: auto;
    left: 20px;
}

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

@media (max-width: 480px) {
    [dir="rtl"] .gallery-zoom-btn {
        left: 15px;
    }

    [dir="rtl"] .lightbox-close {
        left: 15px;
    }
}

/* ===== ROOMS PAGE STYLES ===== */

/* Rooms Hero Section */
.rooms-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rooms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../photos/hero.png');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.rooms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.85) 0%,
            rgba(201, 169, 110, 0.75) 100%);
}

.rooms-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.rooms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rooms-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Rooms Main Section */
.rooms-main {
    padding: 100px 0;
    background: #f8f9fa;
}

.rooms-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.room-detailed-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 400px 1fr;
    height: 75vh;
    min-height: 350px;
    position: relative;
    isolation: isolate;
    z-index: 1;
}

.room-detailed-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('../photos/logo-pattern.png') center/cover;
    z-index: -1;
    opacity: 0.15;
    filter: grayscale(1);
}

.room-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-detailed-image {
    position: relative;
    overflow: hidden;
}

.room-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-detailed-card:hover .room-detailed-image img {
    transform: scale(1.05);
}

.room-availability-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-availability-badge.available {
    background: #28a745;
    color: white;
}

.room-availability-badge.limited {
    background: #ffc107;
    color: #212529;
}

.room-availability-badge.unavailable {
    background: #dc3545;
    color: white;
}

.room-detailed-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.room-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.room-price {
    text-align: right;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.room-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.spec-item i {
    color: var(--accent-color);
    width: 16px;
}

.room-amenities h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.amenity-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.amenity-more {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-actions {
    display: flex;
    gap: 15px;
}

.check-availability-btn {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.check-availability-btn:hover {
    background: var(--accent-color);
    color: white;
}

.book-room-btn {
    flex: 2;
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-room-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Special Offers Section */
.special-offers {
    padding: 100px 0;
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.offer-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.6s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-discount {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design for Rooms Page */
@media (max-width: 1200px) {
    .room-detailed-card {
        grid-template-columns: 350px 1fr;
    }
}

@media (max-width: 992px) {
    .rooms-hero-title {
        font-size: 3rem;
    }

    .room-detailed-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .room-detailed-image {
        height: 250px;
    }

    .room-detailed-content {
        padding: 30px;
    }

    .room-header {
        flex-direction: column;
        gap: 15px;
    }

    .room-price {
        text-align: left;
    }

    .room-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .rooms-hero {
        height: 50vh;
        min-height: 400px;
    }

    .rooms-hero-title {
        font-size: 2.5rem;
    }

    .rooms-hero-subtitle {
        font-size: 1.1rem;
    }

    .rooms-main {
        padding: 60px 0;
    }

    .rooms-detailed-grid {
        gap: 30px;
        margin-top: 40px;
    }

    .room-detailed-content {
        padding: 25px;
    }

    .room-name {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .room-actions {
        flex-direction: column;
    }

    .special-offers {
        padding: 60px 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .offer-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .rooms-hero-title {
        font-size: 2rem;
    }

    .room-detailed-content {
        padding: 20px;
    }

    .amenities-list {
        gap: 6px;
    }

    .amenity-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* RTL Support for Rooms Page */
.rtl .room-header {
    text-align: right;
}

.rtl .room-price {
    text-align: left;
}

.rtl .spec-item {
    flex-direction: row-reverse;
}

.rtl .room-actions {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .rtl .room-price {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .rtl .room-actions {
        flex-direction: column;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */

/* Checkout Hero Section */
.checkout-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkout-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../photos/alzawia-hotel-8237d2f2.png') center/cover;
    filter: brightness(0.6);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.checkout-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(44, 62, 80, 0.9) 0%,
            rgba(201, 169, 110, 0.8) 100%);
}

.checkout-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.checkout-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.checkout-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

/* Checkout Main Content */
.checkout-main {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Booking Summary Sidebar */
.booking-summary {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f3f4;
}

.summary-title i {
    color: var(--accent-color);
}

.selected-room {
    margin-bottom: 30px;
}

.booking-summary .selected-room .room-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.booking-summary .selected-room .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.booking-summary .selected-room .room-image:hover img {
    transform: scale(1.05);
}

.rooms .room-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    /* margin-bottom: 20px; */
}

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

.rooms .room-image:hover img {
    transform: scale(1.05);
}

.room-details .room-name {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-details .room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.room-details .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.room-details .price-currency,
.room-details .price-period {
    font-size: 1rem;
    color: #666;
}

.booking-calculation {
    border-top: 2px solid #f1f3f4;
    padding-top: 25px;
    margin-bottom: 30px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: #555;
}

.calc-row.total {
    border-top: 2px solid #f1f3f4;
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.calc-row.total span:last-child {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f1f3f4;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #666;
}

.security-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Checkout Form */
.checkout-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 50px;
}

.form-section:last-of-type {
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.section-title i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-group.error .error-message {
    display: block;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 2px solid #f1f3f4;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid #6c757d;
    background: transparent;
    color: #6c757d;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.complete-booking-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

.complete-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.complete-booking-btn:active {
    transform: translateY(-1px);
}

.complete-booking-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for Checkout */
@media (max-width: 1200px) {
    .checkout-container {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .checkout-form-container {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-summary {
        position: static;
        order: 2;
    }

    .checkout-form-container {
        order: 1;
        padding: 35px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .checkout-hero-title {
        font-size: 2.5rem;
    }

    .checkout-main {
        padding: 60px 0;
    }

    .checkout-form-container {
        padding: 25px;
    }

    .booking-summary {
        padding: 30px;
    }

    .form-actions {
        flex-direction: column;
        gap: 20px;
    }

    .back-btn,
    .complete-booking-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkout-hero-title {
        font-size: 2rem;
    }

    .checkout-form-container {
        padding: 20px;
    }

    .booking-summary {
        padding: 25px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* RTL Support for Checkout */
.rtl .checkout-container {
    direction: rtl;
}

.rtl .summary-title,
.rtl .section-title {
    /* flex-direction: row-reverse; */
}

.rtl .calc-row {
    flex-direction: row-reverse;
}

.rtl .security-item {
    flex-direction: row-reverse;
}

.rtl .form-actions {
    flex-direction: row-reverse;
}

.rtl .back-btn,
.rtl .complete-booking-btn {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .rtl .form-actions {
        flex-direction: column;
    }

    .rtl .back-btn,
    .rtl .complete-booking-btn {
        flex-direction: row;
    }
}

/* Bed Selection Styles */
.bed-selection-group {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.bed-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.bed-type-option {
    position: relative;
    cursor: pointer;
}

.bed-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bed-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.bed-image-wrapper {
    height: 100px;
    overflow: hidden;
    position: relative;
}

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

.bed-name {
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-top: 1px solid #f0f0f0;
    background: #f9f9f9;
}

/* Selected State */
.bed-type-option input[type="radio"]:checked+.bed-card {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

.bed-type-option input[type="radio"]:checked+.bed-card .bed-name {
    background: var(--primary-color);
    color: #fff;
    border-top-color: var(--primary-color);
}

/* Hover State */
.bed-type-option:hover .bed-card {
    border-color: #ccc;
    transform: translateY(-2px);
}

.bed-type-option:hover .bed-card .bed-image-wrapper img {
    transform: scale(1.05);
}

.bed-type-option input[type="radio"]:checked:hover+.bed-card {
    border-color: var(--primary-color);
}

/* Room Gallery Component */
.gallery-thumbnails-container {
    margin-top: 15px;
    margin-bottom: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on mobile */
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.gallery-thumb-item {
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    background-color: #f8f9fa;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-thumb-item:hover img {
    transform: scale(1.1);
}

.gallery-thumb-item.active {
    border-color: var(--accent-color, #bfa86b);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-thumb-item.active img {
    opacity: 0.9;
}

/* Lightbox Modal styles removed - using definitions at line 3147 */

@media (max-width: 1200px) {
    .room-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .room-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .room-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Cafe Specific Styles */
.cafe-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../photos/caffe.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.cafe-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cafe-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.menu-section {
    padding: 80px 0;
    background-color: #fcfbf9;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.menu-category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    /* Center grid items horizontally */
    align-content: center;
    /* Center grid items vertically */
}

.menu-item {
    background: white;
    padding: 30px 20px;
    /* Increased top/bottom padding for better spacing */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    /* Center text inside menu item */
    display: flex;
    /* Use flexbox for centering content */
    flex-direction: column;
    align-items: center;
    /* Center items horizontally */
    justify-content: center;
    /* Center items vertically */
    height: 100%;
    /* Ensure full height */
    text-align: center;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-icon {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 15px;
}

.menu-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-section {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.info-card {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    height: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #c9a96e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-text {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cafe-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../photos/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

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

.contact-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Info Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
    text-align: start;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(180, 156, 115, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-feedback {
    display: block;
}

/* Map Section */
.map-container {
    width: 100%;
    line-height: 0;
}

.map-container iframe {
    filter: grayscale(0.5);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

/* RTL Adjustments for Contact */
.rtl .form-group {
    text-align: right;
}

.rtl .contact-card {
    direction: rtl;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 25px;
    }
}


/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../photos/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

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

.about-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.overview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.milestone-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.milestone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.milestone-item .year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item span {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.team-info .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Culture Section */
.culture-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.culture-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.culture-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.rtl .culture-list li i {
    margin-right: 0;
    margin-left: 15px;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-icon {
    font-size: 2.5rem;
    color: #f1c40f;
    /* Gold color for awards */
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../photos/hero3.png') fixed center center/cover;
    color: #fff;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

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

    .overview-image {
        margin-bottom: 30px;
    }

    .culture-image {
        margin-top: 30px;
    }
}

.building-img {
    background: url('../photos/IMG_9847.jpg') fixed center center/cover !important;
}