/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0A0A0A;
    color: #fff;
    overflow-x: hidden;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E8C860;
    --gold-dark: #A67C00;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --gray: #888;
    --white: #fff;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, .logo, .nav-link {
    font-family: 'Cormorant Garamond', serif;
}

.gold-text {
    color: var(--gold);
}

/* ========== HEADER - ULTRA LUXURY VERSION ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0 25px;
    transition: all 0.5s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container {
    position: relative;  /* مهم ليعمل الـ absolute positioning */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

/* Logo - كبير، في المنتصف، خط فاخر */
.logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 35px;
}

.logo-text {
    font-family: 'Didot', 'Bodoni', 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    letter-spacing: 12px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease;
}

.logo-text .logo-gold {
    color: var(--gold);
}

.logo-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 0;
}

/* Navigation - أسفل اللوجو */
.nav {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Header Actions (الساعة الرقمية وقائمة الجوال) */
.header-actions {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.digital-clock {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    transition: all 0.3s ease;
}

.digital-clock:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

.clock-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.clock-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.clock-separator {
    color: var(--gold);
    font-size: 0.7rem;
    animation: blink 1s infinite;
}

.clock-ampm {
    font-size: 0.65rem;
    color: var(--gold);
}

.menu-toggle {
    position: relative;
    z-index: 10;  /* يضمن ظهور القائمة فوق العناصر الأخرى */
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gold);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 40px 30px;
    transition: right 0.4s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.mobile-logo {
    font-size: 1.3rem;
    letter-spacing: 6px;
    font-family: 'Didot', 'Bodoni', serif;
}

.mobile-nav-close {
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.mobile-nav-contact {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-contact a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.mobile-nav-contact a i {
    color: var(--gold);
    width: 28px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 0 30px;
    }
    .nav {
        gap: 30px;
    }
    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .header-actions {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 25px 0;
    }
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 8px;
    }
    .logo-divider {
        width: 40px;
        margin-top: 10px;
    }
    .nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .digital-clock {
        display: none;
    }
    .header-actions {
        right: 20px;
    }
}

/* ========== HERO SECTION (للهوم بيج) ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: dramaticZoom 20s ease-in-out infinite;
    transform-origin: center;
}

@keyframes dramaticZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.75rem;
}

.badge-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: 4.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-divider i {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    gap: 18px;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
}

.hero-scroll i {
    color: var(--gold);
    display: block;
    margin-top: 8px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}




/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    margin: 15px 0;
    font-family: 'Cormorant Garamond', serif;
}

.section-header p {
    color: var(--gray);
}

.luxury-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

/* Specifications Showcase */
.specs-showcase {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Floor Plan Section */
.floor-plan.interactive {
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.floor-plan h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.floor-plan h3 i {
    margin-right: 12px;
}

.floor-plan-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.floor-plan-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.floor-plan-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    z-index: 15;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.hotspot i {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(0,0,0,0.8), 0 0 5px rgba(212,175,55,0.8);
    transition: all 0.3s ease;
}

.hotspot:hover i {
    transform: scale(1.3);
    filter: drop-shadow(0 0 12px var(--gold));
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(212,175,55,0.3);
    margin-bottom: 10px;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
}

.floor-plan-note {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 20px;
    text-align: center;
}

/* Range Map (removed) - moved to JS or removed per update */

/* Aircraft CTA */
.aircraft-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 15px;
}

.cta-content h2 .gold-text {
    color: #fff;
}

.cta-content p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: var(--gold);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    gap: 18px;
    transform: translateY(-3px);
}

/* Lightbox Gallery */


/* Intro Section (للهوم بيج) */
.intro-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 3rem;
    margin: 15px 0 20px;
    font-family: 'Cormorant Garamond', serif;
}

.intro-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.intro-btn:hover {
    gap: 15px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gray);
}

/* Services Section (للهوم بيج) */
.services-section {
    padding: 100px 20px;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding: 100px 20px 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--gray);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-item i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
    font-size: 0.75rem;
}
/* ========== FOOTER BOOK A FLIGHT BUTTON ========== */
.book-flight-footer {
    text-align: left;
}

.footer-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.footer-book-btn:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-book-btn i {
    font-size: 1rem;
}

.footer-book-text {
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 10px;
}

/* Footer Legal Links */
.footer-legal {
    margin-top: 15px;
    font-size: 0.7rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: var(--gray);
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .book-flight-footer {
        text-align: center;
    }
    .footer-book-btn {
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
}
/* ========== MOBILE MENU - LUXURY VERSION ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 50px 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 40px;
}

.mobile-logo {
    font-family: 'Didot', 'Bodoni', 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 6px;
    font-weight: 400;
    color: #fff;
}

.mobile-logo .gold-text {
    color: var(--gold);
}

.mobile-nav-close {
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 50px;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    transform: translateX(12px);
    letter-spacing: 5px;
}

.mobile-nav-contact {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-contact a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-contact a i {
    color: var(--gold);
    width: 28px;
    margin-right: 8px;
}

.mobile-nav-contact a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* ========== MAP ANIMATIONS ========== */
.plane-marker {
    background: transparent;
    border: none;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.8));
    animation: planeGlow 1.5s ease-in-out infinite alternate;
}

@keyframes planeGlow {
    from { filter: drop-shadow(0 0 2px rgba(212,175,55,0.5)); }
    to { filter: drop-shadow(0 0 12px rgba(212,175,55,1)); }
}

/* .gold-marker and keyframes removed as part of map cleanup */

.leaflet-popup-content-wrapper {
    background: transparent !important;
    box-shadow: none !important;
}

.leaflet-popup-tip {
    background: #D4AF37 !important;
}

/* ========== MODAL POPUP ========== */
.luxury-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.luxury-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: all 0.4s ease;
    overflow: hidden;
}

.luxury-modal.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-header i {
    font-size: 2rem;
    color: var(--gold);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin: 0;
    flex: 1;
}

.modal-close {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close i {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0;
}

.modal-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.modal-close:hover i {
    color: #000;
}

.modal-body {
    padding: 35px 30px;
    text-align: center;
}

.modal-body p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.modal-btn:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ========== FLIGHTS PAGE DESIGN ========== */
.flights-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.flights-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flights-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite;
}

.flights-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
}

.flights-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 20px;
}

.flights-hero-content h1 {
    font-size: 4.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.flights-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.flights-hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.flights-hero-stats span {
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(0, 0, 0, 0.24);
    color: rgba(255,255,255,0.78);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flights-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    animation: bounce 2s infinite;
}

.flights-hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
}

.flights-hero-scroll i {
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

/* Filter Bar */
.destinations-filter {
    background: var(--black-light);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn-globe {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 32px;
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn-globe.active, .filter-btn-globe:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Signature Routes */
.signature-routes-section {
    padding: 78px 20px;
    background:
        radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.08), transparent 30%),
        linear-gradient(135deg, #080808 0%, #111 100%);
}

.signature-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.signature-route-card {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.signature-route-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 18px;
    pointer-events: none;
}

.signature-route-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 22px 44px rgba(0,0,0,0.34);
}

.route-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.route-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
}

.route-line i {
    color: var(--gold);
    font-size: 0.9rem;
}

.signature-route-card p {
    margin: 16px 0 18px;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.route-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.route-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gray);
    font-size: 0.7rem;
}

/* Mapbox Globe Section */
.globe-section {
    padding: 60px 20px;
    background: var(--black);
}

.globe-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-container-globe {
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
}

.globe-info {
    text-align: center;
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.85rem;
}

.globe-info i {
    color: var(--gold);
    margin-right: 8px;
}

/* Custom Map Popup */
.map-popup {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.map-popup h4 {
    color: var(--gold);
    margin: 0 0 8px;
    font-size: 1rem;
}

.map-popup p {
    color: #fff;
    margin: 5px 0;
    font-size: 0.8rem;
}

.map-popup button {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 5px 15px;
    border-radius: 25px;
    margin-top: 8px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Seasonal Section */
.seasonal-section, .exclusive-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
}

.seasonal-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.seasonal-category .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.seasonal-category .category-header i {
    font-size: 2rem;
    color: var(--gold);
}

.seasonal-category .category-header h3 {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.seasonal-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    cursor: default;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.seasonal-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.seasonal-info {
    padding: 20px;
}

.seasonal-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.seasonal-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Exclusive Section */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.exclusive-card {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
}

.exclusive-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 25px 40px rgba(0,0,0,0.4);
}

.exclusive-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.exclusive-info {
    padding: 25px;
}

.exclusive-info h4 {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.exclusive-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.exclusive-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--gold);
}

/* Flights CTA */
.flights-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    text-align: center;
}

/* ========== RESPONSIVE ========== */
@keyframes slowZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-header h2 { font-size: 2.5rem; }



    .flights-hero-content h1 { font-size: 3rem; }
    .signature-routes-grid { grid-template-columns: repeat(2, 1fr); }
    .map-container-globe { height: 450px; }
    .seasonal-category .category-header h3 { font-size: 1.4rem; }
    .exclusive-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
    .header-container { padding: 0 20px; }
    .nav { display: none; }
    .menu-toggle { display: block; }
    .header-phone { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { gap: 15px; }
    .booking-section { margin-top: -40px; padding-bottom: 60px; }
    .booking-card { padding: 25px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .booking-footer { flex-direction: column; align-items: center; gap: 12px; }
    .intro-content h2 { font-size: 2rem; }
    .intro-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-img { height: 200px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .contact-item { justify-content: center; }

    .hero-quick-stats { gap: 12px; }
    .quick-stat { font-size: 0.7rem; padding: 5px 12px; }
    .map-stats { gap: 15px; }
    .cta-content h2 { font-size: 1.8rem; }
    .floor-plan-img { height: 250px; }
    .floor-plan-container::before { height: 250px; }
    .hotspot i { font-size: 1.3rem; }
    .hotspot-tooltip { font-size: 0.6rem; white-space: nowrap; padding: 4px 10px; }
    #rangeMap { height: 350px; }
    .lightbox-prev, .lightbox-next { width: 35px; height: 35px; font-size: 0.8rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .modal-container { width: 95%; max-width: 400px; }
    .modal-header { padding: 20px; }
    .modal-header h3 { font-size: 1.2rem; }
    .modal-body { padding: 25px 20px; }
    .modal-body p { font-size: 0.85rem; }
    .modal-footer { padding: 15px 20px 25px; }
    .flights-hero { min-height: 400px; }
    .flights-hero-content h1 { font-size: 2rem; }
    .flights-hero-stats { gap: 8px; margin-top: 22px; }
    .flights-hero-stats span { font-size: 0.58rem; padding: 8px 12px; }
    .signature-routes-section { padding: 58px 16px; }
    .signature-routes-grid { grid-template-columns: 1fr; gap: 16px; }
    .signature-route-card { padding: 24px 20px; border-radius: 20px; }
    .route-line { font-size: 1.7rem; }
    .filter-btn-globe { padding: 8px 20px; font-size: 0.8rem; }
    .map-container-globe { height: 350px; }
    .category-grid { grid-template-columns: 1fr; }
    .exclusive-grid { grid-template-columns: 1fr; }
    .exclusive-img { height: 220px; }
    .seasonal-category .category-header h3 { font-size: 1.2rem; }
}


/* ========== LUXURIOUS SATISFACTION GALLERY ========== */
.luxury-satisfaction {
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 50px 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
}

.satisfaction-header {
    margin-bottom: 45px;
}

.satisfaction-header i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.satisfaction-header h3 {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.satisfaction-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.satisfaction-divider span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.satisfaction-divider i {
    font-size: 1rem;
    margin: 0;
    color: var(--gold);
}

.satisfaction-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.satisfaction-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 3 / 4; /* النسبة: عرض 3 : ارتفاع 4 (طولية) */
}

.satisfaction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.satisfaction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(212, 175, 55, 0.2);
}

.satisfaction-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.satisfaction-card:hover .card-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .luxury-satisfaction {
        padding: 40px 25px;
    }
    .satisfaction-header h3 {
        font-size: 1.5rem;
    }
    .satisfaction-card {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .satisfaction-header h3 {
        font-size: 1.3rem;
    }
    .satisfaction-gallery {
        gap: 20px;
    }
    .satisfaction-card {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .satisfaction-gallery {
        flex-direction: column;
        align-items: center;
    }
    .satisfaction-card {
        max-width: 280px;
        width: 100%;
    }
}

/* ========== BREADCRUMBS (مسار الصفحة) ========== */
.breadcrumbs {
    padding: 20px 20px 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 15;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray);
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    color: var(--gold);
    margin-left: 8px;
}

.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs .current {
    color: var(--gold);
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.scroll-top i {
    color: #000;
    font-size: 1.2rem;
}

/* ========== MOBILE MENU IMPROVED (تحسين قائمة الجوال) ========== */
.mobile-nav {
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links a {
    position: relative;
    transition: all 0.3s ease !important;
}

.mobile-nav-links a:hover {
    transform: translateX(10px);
    letter-spacing: 3px;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* ========== LOADING SPINNER ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ========== TYPING EFFECT ========== */
.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--gold);
    margin-left: 5px;
    animation: blink 0.7s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* ========== FOOTER LOGO (مرفوع للأعلى) ========== */
.footer-logo-img {
    max-width: 180px;
    height: auto;
    margin: -20px auto 20px;  /* -20px يرفع اللوغو للأعلى */
    display: block;
}


/* ========== SUBSCRIBE FORM ========== */
.subscribe-text {
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.subscribe-form {
    width: 100%;
}

.subscribe-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    padding: 5px 5px 5px 18px;
    transition: all 0.3s ease;
}

.subscribe-group:focus-within {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.subscribe-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.subscribe-group input::placeholder {
    color: var(--gray);
}

.subscribe-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn i {
    color: #000;
    font-size: 1rem;
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.subscribe-message {
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--gold);
}

.subscribe-message.error {
    color: #dc3545;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-img {
        margin: 0 auto 20px;
    }
    .subscribe-group {
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
}
/* ========== FORCE FIX: إظهار جميع جهات الاتصال في الفوتر للجوال ========== */
@media (max-width: 768px) {
    .footer-grid {
        display: block !important;
    }
    
    .footer-col {
        width: 100% !important;
        margin-bottom: 40px !important;
        text-align: left !important;
    }
    
    .footer-col:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-col h4 {
        text-align: left !important;
    }
    
    .footer-col h4::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
        padding: 5px 0 !important;
    }
    
    .contact-item i {
        width: 25px !important;
        font-size: 1rem !important;
        color: var(--gold) !important;
    }
    
    .contact-item span {
        flex: 1 !important;
        color: var(--gray) !important;
        font-size: 0.8rem !important;
        word-break: break-word !important;
    }
    
    /* إزالة أي overflow يخفي المحتوى */
    .footer, .footer-container, .footer-col {
        overflow: visible !important;
    }
}
/* ========== DIGITAL CLOCK IN HEADER ========== */
.digital-clock {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.digital-clock:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

.clock-icon {
    color: var(--gold);
    font-size: 1rem;
}

.clock-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.clock-separator {
    color: var(--gold);
    font-size: 0.8rem;
    animation: blink 1s infinite;
}

.clock-ampm {
    font-size: 0.7rem;
    color: var(--gold);
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive for clock */
@media (max-width: 992px) {
    .digital-clock {
        padding: 6px 12px;
    }
    .clock-time {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .digital-clock {
        display: none;
    }
}

/* ========== 2026 GLOBAL OVERRIDES ========== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.42));
    pointer-events: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1990;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0 !important;
    display: flex;
    flex-direction: column;
    width: min(90vw, 390px);
    max-width: 390px;
    height: 100vh;
    padding: 28px 24px 32px;
    background:
        linear-gradient(180deg, rgba(20, 20, 20, 0.78), rgba(10, 10, 10, 0.88)) !important;
    border-left: 1px solid rgba(212, 175, 55, 0.34);
    box-shadow: -18px 0 60px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
    filter: none !important;
    isolation: isolate;
    transform: translateX(110%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    align-items: flex-start;
    gap: 16px;
}

.mobile-logo {
    font-size: 1.18rem;
    line-height: 1.3;
}

.mobile-nav-links {
    gap: 16px;
    margin-bottom: 28px;
}

.mobile-nav-links a {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    letter-spacing: 2.5px;
}

.mobile-nav-links a:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.09);
}

.mobile-nav-contact {
    display: grid;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.mobile-nav-contact a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 12px;
    margin-bottom: 0;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
}

.mobile-nav-contact a:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.35);
}

.mobile-nav-contact a i {
    width: 18px;
    margin-top: 2px;
}

@media (max-width: 640px) {
    .mobile-nav {
        width: min(94vw, 390px);
        padding: 22px 18px 26px;
    }

    .mobile-nav-header {
        gap: 14px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .mobile-logo {
        font-size: 1.05rem;
        letter-spacing: 4px;
    }

    .mobile-nav-links {
        gap: 12px;
        margin-bottom: 22px;
    }

    .mobile-nav-links a {
        padding: 13px 14px;
        font-size: 0.84rem;
        letter-spacing: 2.2px;
    }

    .mobile-nav-contact {
        gap: 10px;
        padding-top: 16px;
    }

    .mobile-nav-contact a {
        padding: 12px 12px;
        font-size: 0.78rem;
        line-height: 1.45;
        word-break: break-word;
    }
}

.toast-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: min(420px, calc(100vw - 32px));
}

.luxury-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left-width: 3px;
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform 0.36s ease, opacity 0.36s ease;
    pointer-events: auto;
}

.luxury-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.luxury-toast.toast-error {
    border-left-color: #d85b5b;
}

.luxury-toast.toast-success {
    border-left-color: #4fae79;
}

.luxury-toast.toast-info {
    border-left-color: var(--gold);
}

.t-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.toast-error .t-icon {
    background: rgba(216, 91, 91, 0.14);
    color: #ef8c8c;
}

.toast-success .t-icon {
    background: rgba(79, 174, 121, 0.14);
    color: #82d1a2;
}

.toast-info .t-icon {
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold);
}

.t-body {
    flex: 1;
}

.t-msg {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    line-height: 1.5;
}

.t-close {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.t-close:hover {
    color: var(--gold);
}

.flights-hero {
    min-height: 86vh;
    padding: 150px 24px 110px;
    display: grid;
    place-items: center;
    text-align: center;
}

.flights-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    padding: 0 20px;
    border: none;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.flights-hero-content p {
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.7;
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.flights-hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.flights-hero-stats span {
    padding: 10px 22px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: transparent;
    border-radius: 999px;
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.flights-hero-content h1 {
    font-size: clamp(3.6rem, 6vw, 5.8rem);
    line-height: 1.02;
    margin-bottom: 22px;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.flights-hero .hero-tag {
    color: rgba(255,255,255,0.88);
    letter-spacing: 3px;
    font-size: 0.82rem;
    margin-bottom: 22px;
}

.flights-hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
}

.office-hero,
.office-experience-section,
.office-gallery-section,
.office-address-section {
    overflow-x: clip;
}

@media (max-width: 768px) {
    .header-container {
        width: 100%;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        right: 0;
    }

    .toast-stack {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .luxury-toast {
        transform: translateY(-18px);
    }

    .luxury-toast.show {
        transform: translateY(0);
    }

    .flights-hero {
        min-height: 72vh;
        padding: 120px 16px 88px;
    }

    .flights-hero-content {
        padding: 0 16px;
    }

    .flights-hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.08;
    }

    .flights-hero-content p {
        font-size: 0.95rem;
    }

    .office-hero {
        min-height: 540px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .office-hero-highlights,
    .office-experience-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== OUR OFFICE PAGE - CAROUSEL فخم ========== */
.office-hero {
    position: relative;
    min-height: 620px;
    padding: 130px 20px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.office-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.office-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite;
}

.office-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.34) 55%, rgba(212, 175, 55, 0.10) 100%),
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 42%);
}

.office-hero-content {
    position: relative;
    z-index: 5;
    max-width: 920px;
    padding: 0 20px;
}

.office-hero-content h1 {
    font-size: 4.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 18px;
    line-height: 0.95;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.office-hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.office-hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 720px;
    margin: 42px auto 0;
}

.office-highlight-item {
    padding: 18px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.office-highlight-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.office-highlight-item span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.office-experience-section {
    padding: 110px 20px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 26%),
        linear-gradient(180deg, #090909 0%, #101010 100%);
}

.office-experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: center;
}

.office-experience-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.35rem;
    line-height: 1.02;
    margin: 14px 0 22px;
}

.office-experience-copy > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    max-width: 620px;
}

.office-experience-points {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.experience-point {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.025);
}

.experience-point i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 1.2rem;
}

.experience-point h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.experience-point p {
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.75;
}

.office-showcase-card {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.office-showcase-media {
    position: relative;
    min-height: 360px;
}

.office-showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.office-showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.office-showcase-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 10px 18px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.55);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.office-showcase-body {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.showcase-stat {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.showcase-stat strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    color: var(--gold);
    text-align: center;
}

.showcase-stat span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.office-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    animation: bounce 2s infinite;
}

.office-hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.6);
}

.office-hero-scroll i {
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

/* Gallery Section */
.office-gallery-section {
    padding: 100px 20px;
    background: var(--black);
}

.office-swiper {
    width: 100%;
    padding: 50px 0 70px;
}

.gallery-slide {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 25px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide:hover .slide-caption {
    opacity: 1;
}

.slide-caption span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Swiper Navigation Styling */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--gold);
    color: #000 !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: var(--gray) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1;
}

/* Address Section */
.office-address-section {
    padding: 80px 20px 100px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
}

.address-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    transition: all 0.4s ease;
}

.address-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.address-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.address-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.address-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.office-address-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.office-address-btn {
    min-width: 180px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.office-address-btn.primary {
    background: var(--gold);
    color: #050505;
    font-weight: 600;
}

.office-address-btn.secondary {
    background: transparent;
    color: #fff;
}

.office-address-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.office-address-btn.secondary:hover {
    background: rgba(212, 175, 55, 0.12);
}

.address-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.address-divider span {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.address-divider i {
    font-size: 0.8rem;
    margin: 0;
}

.hours {
    color: var(--gold) !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .office-experience-grid {
        grid-template-columns: 1fr;
    }
    .office-hero-content h1 {
        font-size: 3rem;
    }
    .office-experience-copy h2 {
        font-size: 2.7rem;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .office-hero {
        min-height: 540px;
        padding: 120px 20px 80px;
    }
    .office-hero-content h1 {
        font-size: 2.45rem;
    }
    .office-hero-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    .office-hero-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }
    .office-experience-section {
        padding: 80px 20px;
    }
    .office-experience-copy h2 {
        font-size: 2.2rem;
    }
    .office-gallery-section {
        padding: 60px 20px;
    }
    .experience-point {
        grid-template-columns: 1fr;
    }
    .office-showcase-media,
    .office-showcase-media img {
        min-height: 280px;
    }
    .showcase-stat {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .address-card {
        padding: 35px 25px;
    }
    .office-address-btn {
        width: 100%;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}
/* ========== LIGHTBOX POPUP ========== */
.lightbox-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.lightbox-popup.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-popup img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #fff;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
}
/* ========== POPULAR DESTINATIONS - 3D SLIDER ========== */
.destinations-slider-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A0A0A 0%, #111 100%);
    overflow: hidden;
}

.destinations-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.destinations-slider-container {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    transition: all 0.5s ease;
    opacity: 0.85;
    transform: scale(0.9);
    filter: blur(0);
}

.slider-card.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.slider-card-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.slider-card.active .slider-card-inner {
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.slider-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.slider-card-inner:hover .slider-card-bg {
    transform: scale(1.05);
}

.slider-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    text-align: center;
}

.slider-card-content h3 {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
    color: #fff;
}

.slider-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-stats span {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-stats i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav i {
    color: var(--gold);
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-nav:hover i {
    color: #000;
}

.slider-nav.prev {
    left: -60px;
}

.slider-nav.next {
    right: -60px;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .slider-card {
        flex: 0 0 calc(50% - 10px);
        opacity: 0.85;
        transform: scale(0.95);
    }
    .slider-card.active {
        opacity: 1;
        transform: scale(1);
    }
    .slider-nav.prev {
        left: -30px;
    }
    .slider-nav.next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .slider-card {
        flex: 0 0 100%;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    .slider-card:not(.active) {
        display: flex;
    }
    .slider-nav.prev {
        left: 10px;
    }
    .slider-nav.next {
        right: 10px;
    }
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    .slider-nav i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .destinations-slider-section {
        padding: 60px 15px;
    }
    .slider-card-content h3 {
        font-size: 1.1rem;
    }
    .slider-stats span {
        font-size: 0.65rem;
    }
}
/* ========== GLOBAL ACCESS SECTION (WITH PILOT BACKGROUND) ========== */
.global-access-section {
    position: relative;
    padding: 120px 20px;
    background: #0A0A0A;
    overflow: hidden;
}

/* Background Image Layer */
.global-access-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.global-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 2;
}

/* Container - above background */
.global-access-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Side - Text */
.global-access-text {
    flex: 1;
    min-width: 280px;
}

.global-access-text .section-tag {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.global-access-text h2 {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.global-access-text h2 .gold-text {
    color: var(--gold);
}

.global-access-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
}

/* Premium Bullet Points */
.premium-bullets {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.premium-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

.premium-bullets li:last-child {
    margin-bottom: 0;
}

.bullet-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--gold);
}

/* Right Side - Book Button */
.global-access-map {
    flex: 1;
    min-width: 280px;
    position: relative;
    display: flex;
    justify-content: center;
}

.pilot-book-btn {
    text-align: center;
}

.pilot-book-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pilot-book-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pilot-book-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.pilot-book-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover effect */
.pilot-book-link:hover .pilot-book-icon {
    background: var(--gold);
    transform: translateY(-3px);
}

.pilot-book-link:hover .pilot-book-icon i {
    color: #000;
}

.pilot-book-link:hover .pilot-book-text {
    color: #fff;
    letter-spacing: 4px;
}

/* Fade animation on scroll */
.global-access-text {
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.global-access-text.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.global-access-text.aos-animate h2 .gold-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: text-shadow 0.8s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .global-access-section {
        padding: 80px 20px;
    }
    .global-access-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .global-access-text p {
        max-width: 100%;
    }
    .premium-bullets {
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .global-bg-overlay {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    }
}

@media (max-width: 768px) {
    .global-access-section {
        padding: 60px 20px;
    }
    .global-access-text h2 {
        font-size: 2rem;
    }
    .global-access-text p {
        font-size: 0.85rem;
    }
    .pilot-book-icon {
        width: 55px;
        height: 55px;
    }
    .pilot-book-icon i {
        font-size: 1.3rem;
    }
    .pilot-book-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* ========== FIX: منع overflow في صفحة Why Us ========== */
body {
    overflow-x: hidden;
}

.header-container {
    max-width: 100%;
    overflow-x: visible;
}

.header-actions {
    right: 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo {
        margin-left: 0;
    }
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
}
/* ========== SECTION BANNER - BEYOND FIRST CLASS ========== */
.section-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../images/banner-bg.webp') center/contain no-repeat;
    background-color: #0A0A0A;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.section-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.section-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.section-banner-tag {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-banner-title {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: var(--gold);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-banner {
        height: 320px;
        background-attachment: scroll;
    }
    .section-banner-title {
        font-size: 1.6rem;
    }
    .section-banner-tag {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .section-banner-features {
        gap: 20px;
    }
    .feature {
        font-size: 0.7rem;
    }
    .feature i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-banner {
        height: 280px;
    }
    .section-banner-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.menu-toggle {
    z-index: 2105;
    pointer-events: auto;
}
