/* ================================================================
   منتجع الريح الطريفي السياحي — World-Class Premium Stylesheet
   ================================================================ */

/* --- CSS Variables & Root Setup --- */
:root {
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-gradient-hover: linear-gradient(135deg, #aa771c, #fbf5b7, #b38728, #fcf6ba, #bf953f);
    --gold-solid: #d4af37;
    --gold-light: #f5e6a3;
    --secondary-color: #050a12;
    --secondary-light: #0b1320;
    --secondary-medium: #101d30;
    --text-color: #333;
    --text-light: #f5f5f5;
    --bg-color: #fafafa;
    --glass-bg: rgba(11, 19, 32, 0.7);
    --glass-border: rgba(212, 175, 55, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 50px rgba(212, 175, 55, 0.15);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary-color); }
::-webkit-scrollbar-thumb { background: var(--gold-gradient); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-solid); }

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 100000;
    background: var(--gold-gradient); width: 0%; transition: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Font definitions for AR vs EN */
html[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] .logo, html[dir="rtl"] .footer-logo { font-family: 'Tajawal', sans-serif; }
html[dir="ltr"] body { font-family: 'Inter', sans-serif; }
html[dir="ltr"] h1, html[dir="ltr"] h2, html[dir="ltr"] h3, html[dir="ltr"] h4, html[dir="ltr"] .logo, html[dir="ltr"] .footer-logo { font-family: 'Inter', sans-serif; }

body { color: var(--text-color); background-color: var(--bg-color); line-height: 1.7; overflow-x: hidden; position: relative; }
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
.bg-light { background-color: var(--secondary-light); color: var(--text-light); }
.bg-dark { background-color: var(--secondary-color); color: var(--text-light); }
.text-center { text-align: center; }

/* --- Preloader --- */
.preloader {
    position: fixed; inset: 0; z-index: 99999; background: var(--secondary-color);
    display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 30px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { font-size: 3rem; color: var(--text-light); font-family: 'Inter', sans-serif; letter-spacing: 2px; }
html[dir="rtl"] .preloader-logo { font-family: 'Tajawal', sans-serif; }
.preloader-logo span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.preloader-bar::after { content:''; display:block; width:40%; height:100%; background: var(--gold-gradient); border-radius:10px; animation: loading 1.2s ease-in-out infinite; }
@keyframes loading { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* --- Elegant Typography --- */
.section-subtitle {
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 1.1rem; margin-bottom: 15px; display: inline-block; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
}
.section-title { font-size: 3rem; color: var(--secondary-color); margin-bottom: 25px; line-height: 1.3; }
.bg-light .section-title, .bg-dark .section-title, .testimonials .section-title { color: var(--text-light); }
.section-description { font-size: 1.15rem; color: #777; max-width: 700px; margin: 0 auto 50px; line-height: 1.8; }
.bg-light .section-description { color: #aaa; }

/* --- Gold Buttons with Shine Animation --- */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 16px 38px; border-radius: var(--radius-sm); font-weight: 700;
    cursor: pointer; border: none; transition: var(--transition); position: relative;
    overflow: hidden; z-index: 1; font-size: 1rem; letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--gold-gradient); color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 25%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(35deg);
    z-index: 2;
    pointer-events: none;
    transition: none;
}
.btn-primary:hover::before, .btn-secondary:hover::before {
    animation: buttonShineSweep 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes buttonShineSweep {
    0% { left: -60%; }
    100% { left: 140%; }
}
.btn-primary:hover { 
    transform: translateY(-3.5px) scale(1.02); 
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.55), 0 0 15px rgba(212, 175, 55, 0.25); 
    color: var(--secondary-color); 
}
.btn-secondary {
    background: transparent; color: var(--text-light); border: 2.2px solid var(--gold-solid);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: var(--gold-gradient); color: var(--secondary-color);
    border-color: transparent; transform: translateY(-3.5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45), 0 0 15px rgba(212, 175, 55, 0.15);
}
.btn-large { padding: 20px 50px; font-size: 1.15rem; border-radius: 50px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* --- Glassmorphism Navbar --- */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background-color: rgba(5, 10, 18, 0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: var(--transition); border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
header.scrolled {
    background-color: rgba(5, 10, 18, 0.95); padding: 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.8); border-bottom-color: rgba(212, 175, 55, 0.3);
}
.navbar { display: flex; justify-content: space-between; align-items: center; height: 90px; transition: var(--transition); }
header.scrolled .navbar { height: 70px; }
.logo { font-size: 2.2rem; color: var(--text-light); font-weight: 700; letter-spacing: 1px; }
.logo span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 35px; }
.nav-links a { color: var(--text-light); font-weight: 500; font-size: 1.05rem; position: relative; }
.nav-links a:not(.btn-primary):not(.lang-switch)::after {
    content: ''; position: absolute; bottom: -8px; right: 0; width: 0; height: 2px;
    background: var(--gold-gradient); transition: var(--transition);
}
html[dir="ltr"] .nav-links a:not(.btn-primary):not(.lang-switch)::after { right: auto; left: 0; }
.nav-links a:not(.btn-primary):hover::after { width: 100%; }
.nav-links .btn-primary { padding: 10px 25px; border-radius: 50px; font-size: 0.95rem; }
.lang-switch {
    font-family: sans-serif; border: 1px solid var(--gold-solid); padding: 5px 14px;
    border-radius: 50px; font-size: 0.85rem !important; color: var(--gold-solid) !important;
    letter-spacing: 1px;
}
.lang-switch:hover { background: var(--gold-gradient); color: var(--secondary-color) !important; border-color: transparent; }
.menu-toggle { display: none; color: var(--gold-solid); font-size: 1.8rem; cursor: pointer; z-index: 1001; }

/* --- Weather Widget --- */
.weather-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    margin-right: 15px; /* RTL spacing */
}
html[dir="ltr"] .weather-widget {
    margin-right: 0;
    margin-left: 15px;
}
.weather-widget:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.weather-widget .weather-icon {
    color: var(--gold-solid);
    font-size: 1.05rem;
}
.weather-widget .weather-temp {
    font-family: sans-serif;
}
@media (max-width: 768px) {
    .weather-widget {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin-right: 5px;
    }
    html[dir="ltr"] .weather-widget {
        margin-left: 5px;
        margin-right: 0;
    }
}
@media (max-width: 480px) {
    .weather-widget .weather-temp {
        display: none;
    }
    .weather-widget {
        padding: 6px;
        width: 32px;
        height: 32px;
        justify-content: center;
    }
}

/* --- Subpage Header --- */
.page-header {
    height: 55vh; min-height: 420px; display: flex; align-items: center; justify-content: center;
    text-align: center; background-color: var(--secondary-color); background-blend-mode: multiply;
    color: var(--text-light); position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,10,18,0.6), rgba(5,10,18,0.3), rgba(5,10,18,0.9));
}
.page-header::after {
    content:''; position:absolute; bottom: -1px; left:0; width:100%; height:120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23fafafa' d='M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,64C960,53,1056,43,1152,42.7C1248,43,1344,53,1392,58.7L1440,64L1440,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center/100% auto;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-size: 4rem; background: var(--gold-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px;
}
.page-header p { font-size: 1.3rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* --- Hero Cinematic Slider --- */
.hero {
    position: relative; height: 100vh; min-height: 750px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); overflow: hidden;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: linear-gradient(to bottom, rgba(5,10,18,0.65), rgba(5,10,18,0.2), rgba(5,10,18,0.85));
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 {
    font-size: 4.5rem; margin-bottom: 25px; line-height: 1.15;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8);
    animation: heroTextReveal 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.hero p {
    font-size: 1.4rem; margin-bottom: 50px; opacity: 0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
    animation: heroTextReveal 1.2s 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.hero-buttons {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: heroTextReveal 1.2s 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes heroTextReveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Bottom Wave */
.hero::after {
    content:''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 120px; z-index: 3;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23050a12' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center/100% auto;
}

/* Decorative Floating Particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particles span {
    position: absolute; width: 4px; height: 4px; background: var(--gold-solid);
    border-radius: 50%; opacity: 0; animation: float-particle 8s infinite;
}
.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero-particles span:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.hero-particles span:nth-child(3) { left: 40%; animation-delay: 3s; animation-duration: 6s; }
.hero-particles span:nth-child(4) { left: 55%; animation-delay: 0.5s; animation-duration: 8s; }
.hero-particles span:nth-child(5) { left: 70%; animation-delay: 2s; animation-duration: 10s; }
.hero-particles span:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 7s; }
.hero-particles span:nth-child(7) { left: 15%; animation-delay: 5s; animation-duration: 9s; }
.hero-particles span:nth-child(8) { left: 60%; animation-delay: 1s; animation-duration: 6s; }
@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* --- Stats Counter --- */
.stats { padding: 80px 0; background: var(--secondary-color); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold-gradient); }
.stats::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold-gradient); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 20px; position: relative; }
.stat-item::after {
    content: ''; position: absolute; top: 50%; right: 0; width: 1px; height: 60%;
    transform: translateY(-50%); background: rgba(212,175,55,0.2);
}
html[dir="ltr"] .stat-item::after { right: auto; left: 0; }
.stat-item:last-child::after { display: none; }
.stat-number {
    font-size: 4rem; font-weight: 800; background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 10px;
}
.stat-label { font-size: 1rem; color: #888; letter-spacing: 2px; text-transform: uppercase; }

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 1.15rem; color: #666; margin-bottom: 35px; line-height: 1.9; }
.bg-light .about-text p { color: #bbb; }
.features { display: flex; flex-direction: column; gap: 22px; }
.feature-item {
    display: flex; align-items: center; gap: 20px; font-size: 1.15rem;
    font-weight: 600; color: var(--secondary-color); padding: 12px 16px;
    border-radius: var(--radius-sm); transition: var(--transition-fast);
}
.feature-item:hover { background: rgba(212,175,55,0.08); transform: translateX(-5px); }
html[dir="ltr"] .feature-item:hover { transform: translateX(5px); }
.bg-light .feature-item { color: var(--text-light); }
.bg-light .feature-item:hover { background: rgba(212,175,55,0.1); }
.feature-item i {
    background: var(--gold-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.6rem;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    background-color: rgba(212,175,55,0.1); border-radius: 50%; flex-shrink: 0;
    border: 1px solid rgba(212,175,55,0.2);
}
.feature-item i { -webkit-text-fill-color: var(--gold-solid); }
.about-image .image-wrapper {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image .image-wrapper img { transition: transform 1s ease; }
.about-image .image-wrapper:hover img { transform: scale(1.05); }
.about-image .image-wrapper::before {
    content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
    border: 2px solid var(--gold-solid); border-radius: var(--radius); z-index: -1; transition: var(--transition);
}
html[dir="ltr"] .about-image .image-wrapper::before { right: auto; left: -20px; }
.about-image:hover .image-wrapper::before { top: -10px; right: -10px; }
html[dir="ltr"] .about-image:hover .image-wrapper::before { right: auto; left: -10px; }

/* --- Wave Divider Utility --- */
.wave-divider {
    position: relative; overflow: hidden; line-height: 0;
}
.wave-divider.top { margin-top: -1px; }
.wave-divider.bottom { margin-bottom: -1px; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* --- Why Choose Us Section --- */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; margin-top: 60px; }
.why-card {
    text-align: center; padding: 50px 30px; border-radius: var(--radius);
    background: var(--secondary-color); border: 1px solid rgba(212,175,55,0.1);
    transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--gold-gradient); transition: var(--transition);
}
.why-card:hover::before { width: 100%; }
.why-card:hover { transform: translateY(-10px); border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow-gold); }
.why-icon {
    width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center;
    justify-content: center; font-size: 2rem; color: var(--gold-solid); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold-gradient); color: var(--secondary-color); transform: scale(1.1); }
.why-card h3 { color: var(--text-light); font-size: 1.3rem; margin-bottom: 15px; }
.why-card p { color: #888; font-size: 0.95rem; line-height: 1.7; }

/* --- Offers Section --- */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; margin-top: 50px; }
.offer-card {
    background: var(--secondary-color); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid rgba(212,175,55,0.15); position: relative; display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--gold-solid); }
.offer-badge {
    position: absolute; top: 20px; right: 20px; background: var(--gold-gradient);
    color: var(--secondary-color); padding: 6px 18px; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem; z-index: 10;
}
html[dir="ltr"] .offer-badge { right: auto; left: 20px; }
.offer-img { height: 240px; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.offer-card:hover .offer-img img { transform: scale(1.1); }
.offer-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.offer-content h3 { font-size: 1.5rem; color: var(--gold-solid); margin-bottom: 12px; }
.offer-content p { color: #aaa; margin-bottom: 20px; flex-grow: 1; line-height: 1.7; }
.offer-price {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 20px;
    background: var(--gold-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- Facilities Section --- */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; margin-top: 60px; }
.facility-card {
    background-color: var(--bg-color); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid rgba(212,175,55,0.08); position: relative;
}
.bg-light .facility-card { background-color: var(--secondary-color); border-color: rgba(255,255,255,0.05); }
.facility-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); }
.card-img { height: 280px; overflow: hidden; position: relative; }
.card-img::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); opacity: 0; transition: var(--transition);
}
.facility-card:hover .card-img::after { opacity: 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.facility-card:hover .card-img img { transform: scale(1.12); }
.card-content { padding: 35px; position: relative; z-index: 2; }
.card-content h3 { font-size: 1.6rem; color: var(--secondary-color); margin-bottom: 15px; }
.bg-light .card-content h3 { color: var(--text-light); }
.card-content p { color: #666; margin-bottom: 25px; font-size: 1.05rem; line-height: 1.7; }
.bg-light .card-content p { color: #aaa; }
.link-btn {
    color: var(--gold-solid); font-weight: 700; display: inline-flex;
    align-items: center; gap: 10px; font-size: 1.05rem; transition: var(--transition-fast);
}
.link-btn:hover { gap: 18px; color: var(--gold-light); }

/* --- Gallery Section with Lightbox --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    color: #bbb;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
}
.filter-btn:hover {
    color: var(--gold-solid);
    border-color: var(--gold-solid);
    background: rgba(212, 175, 55, 0.05);
}
.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.gallery-item {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}
.gallery-item.hidden {
    display: none !important;
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 35px; }
.gallery-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    height: 280px; box-shadow: var(--shadow); cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,10,18,0.7), rgba(212,175,55,0.2));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: #fff; font-size: 2.5rem; transform: scale(0.5) rotate(-20deg);
    transition: var(--transition); text-shadow: 0 0 20px rgba(212,175,55,0.5);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1) rotate(0); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 99998; background: rgba(0,0,0,0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
    backdrop-filter: blur(10px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 30px; right: 30px; width: 50px; height: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold-gradient); color: var(--secondary-color); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold-gradient); color: var(--secondary-color); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* --- Testimonials Carousel --- */
.testimonials { position: relative; overflow: hidden; }
.testimonials-carousel {
    display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 50px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; margin-top: 50px; }
.testimonial-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 45px; border-radius: var(--radius); text-align: center;
    transition: var(--transition); min-width: 100%;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: var(--gold-solid); }
.quote-icon { font-size: 2.5rem; color: var(--gold-solid); margin-bottom: 20px; opacity: 0.4; }
.testimonial-text { font-size: 1.15rem; font-style: italic; margin-bottom: 25px; line-height: 1.9; color: #ddd; }
.client-name { font-weight: 700; font-size: 1.15rem; color: var(--gold-solid); }
.client-stars { color: var(--gold-solid); margin-bottom: 15px; font-size: 1.1rem; letter-spacing: 3px; }
.carousel-dots {
    display: flex; justify-content: center; gap: 10px; margin-top: 40px;
}
.carousel-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(212,175,55,0.3); border: none; cursor: pointer;
    transition: var(--transition);
}
.carousel-dot.active { background: var(--gold-solid); transform: scale(1.3); box-shadow: 0 0 15px rgba(212,175,55,0.5); }

/* --- FAQ Accordion --- */
.faq-grid { max-width: 800px; margin: 50px auto 0; }
.faq-item {
    border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-sm);
    margin-bottom: 15px; overflow: hidden; transition: var(--transition);
    background: #fff;
}
.bg-light .faq-item { background: var(--secondary-color); border-color: rgba(255,255,255,0.08); }
.faq-item:hover { border-color: rgba(212,175,55,0.4); }
.faq-item.active { border-color: var(--gold-solid); box-shadow: var(--shadow-gold); }
.faq-question {
    padding: 22px 30px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 700; font-size: 1.1rem; color: var(--secondary-color);
    transition: var(--transition-fast); gap: 15px;
}
.bg-light .faq-question { color: var(--text-light); }
.faq-question:hover { color: var(--gold-solid); }
.faq-question i {
    color: var(--gold-solid); font-size: 1rem; transition: transform 0.4s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.5s ease;
    padding: 0 30px; color: #666; line-height: 1.8; font-size: 1.05rem;
}
.bg-light .faq-answer { color: #aaa; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 22px; }

/* --- CTA Banner Section --- */
.cta-section {
    position: relative; padding: 100px 0; text-align: center; overflow: hidden;
    background: var(--secondary-color);
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent, rgba(212,175,55,0.05));
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
    font-size: 3rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.3;
}
.cta-section p { color: #aaa; font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-decoration {
    position: absolute; border: 1px solid rgba(212,175,55,0.1); border-radius: 50%;
    pointer-events: none;
}
.cta-decoration:nth-child(1) { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-decoration:nth-child(2) { width: 200px; height: 200px; bottom: -60px; left: -30px; }
.cta-decoration:nth-child(3) { width: 150px; height: 150px; top: 50%; left: 15%; }

/* --- Contact & Booking --- */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-top: 50px; }
.contact-info {
    background: var(--secondary-light); color: var(--text-light); padding: 50px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.2);
}
.info-item { display: flex; gap: 25px; margin-bottom: 35px; }
.icon-box {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    color: var(--gold-solid); border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.6rem; flex-shrink: 0;
    border: 1px solid rgba(212,175,55,0.3); transition: var(--transition);
}
.info-item:hover .icon-box { background: var(--gold-gradient); color: var(--secondary-color); }
.info-item h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--gold-solid); }
.social-links { display: flex; gap: 15px; margin-top: 40px; }
.social-links a {
    width: 48px; height: 48px; border-radius: 50%;
    background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-solid); font-size: 1.2rem; transition: var(--transition);
}
.social-links a:hover { background: var(--gold-gradient); color: var(--secondary-color); transform: translateY(-5px) scale(1.1); border-color: transparent; }
.contact-form {
    background-color: #fff; padding: 50px; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 22px; }
.form-group.row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
input, select, textarea {
    width: 100%; padding: 16px 20px; border: 1px solid #e0e0e0; border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; background-color: var(--bg-color); transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--gold-solid);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* --- Map Wrapper --- */
.map-wrapper {
    width: 100%; height: 400px; border-radius: var(--radius); overflow: hidden;
    margin-top: 60px; box-shadow: var(--shadow); border: 1px solid rgba(212,175,55,0.25);
    background-color: var(--secondary-color);
}
.map-wrapper iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
    /* filter handled by dark mode */
    /* opacity handled by dark mode */
    transition: filter 0.6s ease, opacity 0.6s ease;
}
.map-wrapper:hover iframe {
    /* filter handled by dark mode */
    opacity: 1;
}

/* --- Floating Action Buttons --- */
.floating-widgets { position: fixed; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
html[dir="ltr"] .floating-widgets { left: auto; right: 30px; }
.float-btn {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.8rem; color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); transition: var(--transition); position: relative;
}
.float-btn::before {
    content:''; position:absolute; inset:-4px; border-radius:50%;
    z-index:-1; animation: pulse 2s infinite;
}
.float-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-whatsapp::before { background: rgba(37, 211, 102, 0.3); }
.float-phone { background: var(--gold-gradient); }
.float-phone::before { background: rgba(212, 175, 55, 0.3); }
.float-btn:hover { transform: scale(1.15) translateY(-5px); }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: var(--gold-gradient); color: var(--secondary-color); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    cursor: pointer; z-index: 9998; opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition); box-shadow: 0 5px 20px rgba(212,175,55,0.4); border: none;
}
html[dir="rtl"] .scroll-top { right: auto; left: 100px; }
html[dir="ltr"] .scroll-top { right: 100px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212,175,55,0.6); }

/* --- Enhanced Footer --- */
footer { background-color: #020508; color: #888; padding: 0; border-top: 2px solid rgba(212,175,55,0.15); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 80px 0 60px; }
.footer-brand .footer-logo { font-size: 2.2rem; color: var(--text-light); margin-bottom: 20px; }
.footer-brand .footer-logo span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { color: #777; line-height: 1.8; margin-bottom: 25px; max-width: 350px; }
.footer-col h4 { color: var(--gold-solid); margin-bottom: 25px; font-size: 1.15rem; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 30px; height: 2px; background: var(--gold-gradient); }
html[dir="ltr"] .footer-col h4::after { right: auto; left: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: #777; font-size: 0.95rem; transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--gold-solid); padding-right: 8px; }
html[dir="ltr"] .footer-col ul a:hover { padding-right: 0; padding-left: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; text-align: center; font-size: 0.9rem; color: #555; }

/* --- Animations --- */
.fade-in-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.slide-in-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
html[dir="ltr"] .slide-in-right { transform: translateX(-60px); }
html[dir="ltr"] .slide-in-left { transform: translateX(60px); }
.fade-in-up.appear, .slide-in-right.appear, .slide-in-left.appear { opacity: 1; transform: translate(0); }
.scale-in { opacity: 0; transform: scale(0.85); transition: opacity 0.8s ease, transform 0.8s ease; }
.scale-in.appear { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ================================================================
   Interactive Booking Panel Styles
   ================================================================ */
.booking-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Slight overlap with Hero */
    padding-bottom: 60px;
}
.booking-container {
    background: var(--secondary-light);
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--shadow-gold);
    overflow: hidden;
}
.booking-tabs {
    display: flex;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
}
.booking-tabs::-webkit-scrollbar {
    display: none;
}
.booking-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 22px 15px;
    background: transparent;
    border: none;
    color: #777;
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.booking-tab-btn i {
    font-size: 1.4rem;
    color: #555;
    transition: var(--transition-fast);
}
.booking-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}
.booking-tab-btn.active {
    color: var(--gold-solid);
    background: rgba(212, 175, 55, 0.04);
}
.booking-tab-btn.active i {
    color: var(--gold-solid);
}
.booking-tab-btn.active::after {
    width: 80%;
}
.booking-tab-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.02);
}
.booking-tab-btn:hover i {
    color: var(--gold-light);
}

.booking-content {
    padding: 40px;
}
.booking-panel-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
}
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.booking-tab-content {
    display: none;
    animation: bookingFadeIn 0.5s ease forwards;
}
.booking-tab-content.active {
    display: block;
}
@keyframes bookingFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.booking-fields-grid.full-width {
    grid-template-columns: 1fr;
}
.booking-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.booking-field-group label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.booking-field-group input,
.booking-field-group select,
.booking-field-group textarea {
    background-color: var(--secondary-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.booking-field-group input:focus,
.booking-field-group select:focus,
.booking-field-group textarea:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
}
.booking-field-group select option {
    background-color: var(--secondary-medium);
    color: var(--text-light);
}

.booking-addons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #bbb;
    transition: var(--transition-fast);
}
.addon-checkbox:hover {
    color: var(--text-light);
}
.addon-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold-solid);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    padding: 0;
}
.addon-checkbox input:checked {
    background: var(--gold-gradient);
    border-color: transparent;
}
.addon-checkbox input:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Live Receipt Card (Boarding Ticket Glassmorphic) */
.booking-receipt-card {
    background: rgba(16, 29, 48, 0.75);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    padding: 35px 30px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--shadow-gold);
    position: relative;
    overflow: visible;
}
.booking-receipt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

/* Ticket Punch Hole Cutouts */
.ticket-side-cutout {
    position: absolute;
    top: 73px;
    width: 22px;
    height: 22px;
    background-color: var(--secondary-light);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    z-index: 5;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.ticket-side-cutout.left {
    left: -12px;
    border-left-color: transparent;
    border-top-color: transparent;
    transform: rotate(-45deg);
}
.ticket-side-cutout.right {
    right: -12px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-45deg);
}

.receipt-header {
    border-bottom: 1.5px dashed rgba(212, 175, 55, 0.25);
    padding-bottom: 18px;
    margin-bottom: 22px;
    text-align: center;
}
.receipt-header h3 {
    color: var(--gold-solid);
    font-size: 1.35rem;
}
.receipt-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #aaa;
}
.receipt-row span:first-child {
    font-weight: 500;
}
.receipt-row span:last-child {
    color: var(--text-light);
    font-weight: 600;
}
.receipt-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}
.receipt-row.total span:first-child {
    color: var(--text-light);
}
.receipt-row.total span:last-child {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.45rem;
    font-weight: 800;
}
.receipt-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Language and Alignment adjustments */
html[dir="ltr"] .booking-tab-btn {
    font-family: 'Inter', sans-serif;
}
html[dir="ltr"] .receipt-header h3 {
    font-family: 'Inter', sans-serif;
}
html[dir="ltr"] .receipt-row.total span:last-child {
    -webkit-text-fill-color: initial;
    color: var(--gold-solid);
    background: none;
}

/* Specific Responsive overrides inside general Responsive rules */
@media (max-width: 992px) {
    .booking-panel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .booking-section {
        margin-top: 0;
        padding-top: 60px;
    }
    .booking-content {
        padding: 25px 20px;
    }
    .booking-fields-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .booking-tab-btn {
        min-width: 120px;
        padding: 16px 10px;
        font-size: 0.9rem;
    }
    .booking-tab-btn i {
        font-size: 1.2rem;
    }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 3.5rem; }
    .page-header h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .section-title { font-size: 2.4rem; }
    .cta-section h2 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .logo { font-size: 1.5rem; }
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh;
        background-color: rgba(5, 10, 18, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        padding: 60px 30px; gap: 25px; transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5); border-left: 1px solid rgba(212,175,55,0.2);
    }
    html[dir="ltr"] .nav-links { right: auto; left: -100%; border-left: none; border-right: 1px solid rgba(212,175,55,0.2); }
    .nav-links.active { right: 0; }
    html[dir="ltr"] .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.2rem; }
    .mobile-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999;
        opacity: 0; visibility: hidden; transition: var(--transition);
    }
    .mobile-overlay.active { opacity: 1; visibility: visible; }
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1.15rem; }
    .hero-buttons { flex-direction: column; gap: 15px; align-items: center; }
    .btn-large { padding: 16px 40px; font-size: 1rem; }
    .form-group.row { grid-template-columns: 1fr; }
    .floating-widgets { bottom: 20px; left: 15px; }
    html[dir="ltr"] .floating-widgets { right: 15px; }
    .float-btn { width: 52px; height: 52px; font-size: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 2.5rem; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; right: auto; transform: translateX(-50%); }
    .footer-brand p { max-width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
    .why-us-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
    .social-links { justify-content: center; }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
}
@media (max-width: 480px) {
    .logo { font-size: 1.25rem; }
    .hero h1 { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .offers-grid, .facilities-grid { grid-template-columns: 1fr; }
}

/* --- Interactive Magic Cursor --- */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-solid);
    box-shadow: 0 0 10px var(--gold-solid);
}
.custom-cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
/* Hover State */
.custom-cursor-dot.hover {
    width: 0px;
    height: 0px;
}
.custom-cursor-outline.hover {
    width: 65px;
    height: 65px;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-solid);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}
/* Active click state */
.custom-cursor-outline.active {
    width: 30px;
    height: 30px;
    background-color: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-solid);
}
/* Touch screen override */
@media (pointer: coarse) {
    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none !important;
    }
}

/* --- Glowing Background Blobs --- */
.bg-glow-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: floatBlob 25s infinite alternate ease-in-out;
}
.blob-gold {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}
.blob-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 19, 32, 0.4) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: -5s;
}
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(100px, 80px) scale(1.1) rotate(180deg); }
    100% { transform: translate(-50px, -50px) scale(0.9) rotate(360deg); }
}

/* --- Redirect Toast Overlay --- */
.redirect-toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
}
.redirect-toast-overlay.active {
    opacity: 1;
    visibility: visible;
}
.redirect-toast-card {
    background: rgba(16, 29, 48, 0.85);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    padding: 40px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.redirect-toast-overlay.active .redirect-toast-card {
    transform: scale(1);
}
.redirect-toast-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}
.redirect-toast-logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.redirect-toast-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold-solid);
    border-radius: 50%;
    margin: 25px auto;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.redirect-toast-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-light);
}
.redirect-toast-subtext {
    font-size: 0.9rem;
    color: #888;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- WhatsApp Chat Bubble --- */
.whatsapp-chat-bubble {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 320px;
    background: rgba(16, 29, 48, 0.9);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), var(--shadow-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(40px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease, visibility 0.5s;
}
html[dir="ltr"] .whatsapp-chat-bubble {
    left: auto;
    right: 30px;
}
.whatsapp-chat-bubble.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}
.chat-bubble-header {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    font-size: 1.2rem;
    position: relative;
}
.chat-avatar .active-dot {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border: 1.5px solid var(--secondary-color);
    border-radius: 50%;
}
html[dir="ltr"] .chat-avatar .active-dot {
    left: auto;
    right: 2px;
}
.chat-user-info h4 {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}
.chat-user-info p {
    color: #25D366;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}
.chat-close-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
html[dir="ltr"] .chat-close-btn {
    right: auto;
    left: 20px;
}
.chat-close-btn:hover {
    color: var(--gold-solid);
}
.chat-bubble-body {
    padding: 20px;
    background: rgba(11, 19, 32, 0.2);
}
.chat-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    border-top-right-radius: 2px; /* RTL speech bubble look */
    color: #ccc;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}
html[dir="ltr"] .chat-message {
    border-top-right-radius: 12px;
    border-top-left-radius: 2px;
}
.chat-bubble-footer {
    padding: 15px 20px 20px;
}
.chat-connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
}
.chat-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    color: #fff;
}
@media (max-width: 768px) {
    .whatsapp-chat-bubble {
        bottom: 90px;
        left: 15px;
        width: calc(100% - 30px);
        max-width: 320px;
    }
    html[dir="ltr"] .whatsapp-chat-bubble {
        right: 15px;
        left: auto;
    }
}

/* --- VIP Services Section --- */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}
.vip-card {
    background: rgba(16, 29, 48, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.vip-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-solid);
    box-shadow: var(--shadow-gold);
    background: rgba(16, 29, 48, 0.7);
}
.vip-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-solid);
    margin: 0 auto 25px;
    transition: var(--transition);
}
.vip-card:hover .vip-icon {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
}
.vip-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.vip-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Tours & Activities Section --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 50px;
}
.activity-card {
    background: var(--secondary-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.activity-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-solid);
    box-shadow: var(--shadow-hover);
}
.activity-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.activity-card:hover .activity-img img {
    transform: scale(1.1);
}
.activity-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.activity-content h3 {
    font-size: 1.35rem;
    color: var(--gold-solid);
    margin-bottom: 15px;
}
.activity-content p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .vip-grid, .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .vip-grid, .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .vip-card, .activity-content {
        padding: 35px 20px;
    }
}

/* --- Dedicated Gallery Page Styles --- */
.gallery-section-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.gallery-tab-select {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #bbb;
    background: var(--secondary-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-tab-select:hover {
    color: var(--gold-solid);
    border-color: var(--gold-solid);
}
.gallery-tab-select.active {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}
.gallery-pane {
    display: none;
    animation: bookingFadeIn 0.6s ease forwards;
}
.gallery-pane.active {
    display: block;
}

/* Video Grid and Play Button */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.video-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-color: var(--secondary-color);
}
.video-item video, .video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.video-item:hover video, .video-item:hover img {
    transform: scale(1.08);
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 18, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
    z-index: 2;
}
.video-item:hover .video-overlay {
    background: rgba(5, 10, 18, 0.75);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
    transition: var(--transition);
    z-index: 3;
}
.video-play-btn i {
    margin-left: 4px;
}
html[dir="rtl"] .video-play-btn i {
    margin-left: 0;
    margin-right: 4px;
}
.video-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 35px rgba(212,175,55,0.7);
}
.video-info h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 5px;
}
.video-info span {
    color: var(--gold-solid);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Lightbox video player */
.lightbox-video-container {
    position: relative;
    width: 80vw;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.lightbox-video-container video {
    width: 100%;
    height: 100%;
}

/* Upload Panel Styles */
.upload-gallery-section {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: var(--secondary-light);
    border-radius: var(--radius);
    border: 1px dashed rgba(212, 175, 55, 0.4);
}
.upload-gallery-section h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.upload-gallery-section p {
    color: #aaa;
    margin-bottom: 30px;
}

/* Modal Window styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.9);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-window {
    background: var(--secondary-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    width: 90%;
    max-width: 550px;
    box-shadow: var(--shadow-gold), 0 25px 50px rgba(0,0,0,0.8);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-overlay.active .modal-window {
    transform: scale(1);
}
.modal-header {
    background: var(--secondary-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.modal-header h3 {
    color: var(--gold-solid);
    font-size: 1.4rem;
}
.modal-close {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.modal-close:hover {
    color: #fff;
}
.modal-body {
    padding: 30px;
}
.file-upload-wrapper {
    position: relative;
    background: var(--secondary-medium);
    border: 2px dashed rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.file-upload-wrapper:hover {
    border-color: var(--gold-solid);
    background: rgba(212, 175, 55, 0.05);
}
.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload-wrapper i {
    font-size: 2.5rem;
    color: var(--gold-solid);
    margin-bottom: 10px;
}
.file-upload-wrapper span {
    display: block;
    color: #bbb;
    font-size: 0.95rem;
}
.file-upload-preview {
    margin-top: 15px;
    max-height: 120px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    display: none;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-section-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    .gallery-tab-select {
        text-align: center;
    }
}

/* --- Dark Mode Overrides --- */
body.dark-mode {
    --bg-color: #020508;
    --text-color: #e0e0e0;
}
body.dark-mode .contact-form, body.dark-mode .faq-item {
    background-color: var(--secondary-light);
    border-color: rgba(212,175,55,0.1);
}
body.dark-mode input, body.dark-mode select, body.dark-mode textarea {
    color: #fff;
    border-color: rgba(212,175,55,0.2);
}
body.dark-mode .facility-card {
    background-color: var(--secondary-light);
    border-color: rgba(255,255,255,0.05);
}
body.dark-mode .facility-card .card-content h3, body.dark-mode .faq-item .faq-question {
    color: var(--text-light);
}
body.dark-mode .facility-card .card-content p, body.dark-mode .faq-item .faq-answer {
    color: #aaa;
}


/* --- Map Dark Mode --- */
body.dark-mode .map-wrapper iframe {
    filter: grayscale(0.8) invert(0.9) contrast(1.2) brightness(0.9);
}
body:not(.dark-mode) .map-wrapper iframe {
    filter: none;
}
/* --- Ripple Effect --- */
.btn-primary .ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: ripple-anim 0.6s linear;
}
@keyframes ripple-anim {
    0% { width: 0px; height: 0px; opacity: 0.5; }
    100% { width: 500px; height: 500px; opacity: 0; }
}
.dark-mode-toggle {
    color: var(--gold-solid) !important;
    font-size: 1.25rem !important;
    cursor: pointer;
    transition: var(--transition-fast);
}
.dark-mode-toggle:hover {
    color: var(--text-light) !important;
    transform: scale(1.1);
}

/* --- Split Screen Hero --- */
.hero-split-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: row; z-index: 0; overflow: hidden;
}
.split-panel {
    flex: 1; height: 100%;
    background-size: cover; background-position: center;
    border-right: 2px solid rgba(212, 175, 55, 0.2); /* Subtle gold border */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
    filter: brightness(0.8); /* Dim inactive slightly */
}
.split-panel:last-child { border-right: none; }
.split-panel:hover {
    flex: 1.5; /* Accordion expansion */
    filter: brightness(1.1);
}
@media (max-width: 768px) {
    .hero-split-bg { flex-direction: column; }
    .split-panel { border-right: none; border-bottom: 2px solid rgba(212, 175, 55, 0.2); }
    .split-panel:hover { flex: 1.2; }
}
