:root {
    --gold-color: #D4AF37;
    --gold-dark: #b8941f;
    --gold-light: #f4e8c1;
    --light-bg: #FAFAFA;
    --dark-bg: #212121;
    --light-gold: rgba(212, 175, 55, 0.1);
    --glass-white: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Mobile Menu Variables */
    --menu-stagger: 0.1s;
}


* {
    box-sizing: border-box;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--light-bg);
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Floating Premium Navbar */
.navbar {
    position: fixed;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 12px 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    top: 10px;
    width: 98%;
    padding: 8px 25px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

/* Luxury Logo Effect */
.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(45deg, #b8941f, #f4e8c1, #b8941f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 2px solid var(--gold-color);
    padding: 2px;
    transition: var(--transition);
}

/* Desktop Links with "Liquid" Underline */
@media (min-width: 992px) {
    .nav-link {
        font-weight: 700;
        margin: 0 15px;
        color: #222 !important;
        position: relative;
        padding: 5px 0 !important;
    }
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gold-color);
        border-radius: 10px;
        transition: var(--transition);
    }
    .nav-link:hover::before, .nav-link.active::before {
        width: 100%;
    }
}

/* Mobile Menu - FIXED WHITE BAR ISSUE */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.99);
        backdrop-filter: blur(25px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-110%); /* إزاحة أكبر لضمان الاختفاء */
        visibility: hidden; /* إخفاء تام لمنع ظهور أي جزء */
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
        z-index: 999;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        visibility: visible;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }

    .nav-link {
        font-size: 1.8rem;
        margin: 15px 0;
        font-weight: 800;
        color: #111 !important;
    }
}

/* Custom Animated Hamburger - IMPROVED VISIBILITY */
.navbar-toggler {
    width: 48px;
    height: 48px;
    position: relative;
    border: none !important;
    outline: none !important;
    background: var(--gold-color) !important; /* خلفية ذهبية صريحة ليظهر بوضوح */
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 1001;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background: #ffffff !important; /* أيقونات بيضاء لتظهر فوق الذهبي */
    display: block;
    margin: 6px auto;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .icon-1 { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .icon-2 { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .icon-3 { transform: translateY(-8px) rotate(-45deg); }

/* Language Switcher Button */
.lang-btn {
    background: var(--gold-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border: none;
    transition: var(--transition);
}

/* Desktop Links with "Liquid" Underline */
@media (min-width: 992px) {
    .nav-link {
        font-weight: 700;
        margin: 0 15px;
        color: #222 !important;
        position: relative;
        padding: 5px 0 !important;
    }
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gold-color);
        border-radius: 10px;
        transition: var(--transition);
    }
    .nav-link:hover::before, .nav-link.active::before {
        width: 100%;
    }
}

/* Mobile Menu - The "Magic" Part */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(25px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: -1;
    }

    .navbar-collapse.show {
        transform: translateY(0);
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Delay for Menu items */
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }

    .nav-link {
        font-size: 1.8rem;
        margin: 15px 0;
        font-weight: 800;
    }
}

/* Custom Animated Hamburger */
.navbar-toggler {
    width: 45px;
    height: 45px;
    position: relative;
    border: none !important;
    outline: none !important;
    border-radius: 12px;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background: var(--gold-color);
    display: block;
    margin: 6px auto;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .icon-1 { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .icon-2 { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .icon-3 { transform: translateY(-8px) rotate(-45deg); }

/* Language Switcher Button */
.lang-btn {
    background: var(--gold-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border: none;
    transition: var(--transition);
}

.lang-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

/* فيديو الخلفية */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%),
        linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.hero-content,
.floating-elem,
.container {
    position: relative;
    z-index: 2;
}   


.hero-title {
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-color) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.cta-btn:hover::before {
    opacity: 1;
}

.hero-stats {
    display: flex;
    margin-top: 60px;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-color);
    display: block;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    color: #222;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold-color), transparent);
    border-radius: 2px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    transition: var(--transition);
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--light-gold);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    font-size: 1.4rem;
}

.feature-desc {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Resorts Section */
.resorts-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
    position: relative;
}

.resort-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: var(--transition);
    background-color: white;
    height: 100%;
    position: relative;
}

.resort-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.resort-img-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.resort-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.resort-card:hover .resort-img {
    transform: scale(1.1);
}

.resort-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.resort-card:hover .resort-overlay {
    opacity: 1;
}

.resort-price {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.resort-body {
    padding: 30px;
}

.resort-title {
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.resort-location {
    color: #666;
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.city-link {
    color: var(--gold-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(184, 134, 11, 0.1); /* خلفية ذهبية فاتحة */
    border: 1px solid var(--gold-light);
    border-radius: 20px; /* حواف دائرية */
    font-weight: 500;
    margin-right: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.city-link:hover {
    background-color: rgba(184, 134, 11, 0.2); /* خلفية أغمق عند hover */
    color: var(--gold-darker);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.resort-location i {
    color: var(--gold-color);
    margin-left: 8px;
}

.resort-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.details-btn {
    background-color: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.details-btn:hover {
    background-color: var(--gold-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.special-offer {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Booking Section */
.booking-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, white 100%);
    position: relative;
}

.booking-form-container {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold-color), var(--gold-dark));
}

.form-control,
.form-select {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonial-card::before {

    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--light-gold);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid var(--gold-light);
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

.author-location {
    color: #777;
    font-size: 0.9rem;
}

.stars {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
/* CTA Styles */

.luxury-cta {
    position: relative;
    padding: 100px 20px;
    background: #212121;
    color: white;
    text-align: center;
    overflow: hidden;
    direction: rtl;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b?fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
}
.cta-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D4AF37 0%, #212121 100%);
    mix-blend-mode: multiply;
}
.cta-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 24px;
}
.cta-heading { font-size: clamp(32px, 5vw, 48px); font-weight: 900; margin-bottom: 20px; color: #fff; }
.cta-subheading { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp, .btn-call {
    display: flex; align-items: center; gap: 12px; padding: 16px 32px;
    border-radius: 16px; text-decoration: none; font-weight: bold; font-size: 18px;
    transition: all 0.3s ease;
}
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-5px); background: #128C7E; }
.btn-call { background: white; color: #212121; }
.btn-call:hover { transform: translateY(-5px); background: #f4e8c1; }
.btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.btn-text .label { font-size: 10px; text-transform: uppercase; opacity: 0.6; }
.cta-features { display: flex; justify-content: center; gap: 30px; margin-top: 50px; flex-wrap: wrap; opacity: 0.7; font-size: 14px; }
.feature-item { display: flex; align-items: center; gap: 8px; }
.feature-item i { color: #D4AF37; }
.dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@media (max-width: 768px) { .cta-actions { flex-direction: column; } .btn-whatsapp, .btn-call { width: 100%; justify-content: center; } }

/* ========== Footer ========== */
.footer {
    background: #222;
    color: #ddd;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
}

.footer-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

/* معلومات التواصل */
.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
    gap: 15px;
}

.contact-info i {
    color: #d4af37;
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

/* الروابط المهمة */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(-5px);
}

/* النشرة البريدية */
.newsletter-simple {
    direction: rtl;
}

.newsletter-wrapper {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row-reverse;
}

.newsletter-input {
    flex: 1;
    padding: 18px 130px 18px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    text-align: right;
    direction: rtl;
    min-width: 0;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-button {
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    transform: scale(1.05);
}

/* نسخة الموبايل للنشرة */
.newsletter-mobile {
    display: none;
}

/* حق النشر */
.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* إصلاح overflow */
.footer .row > div {
    overflow: visible !important;
    position: relative !important;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    /* CTA Section */
    .cta-section {
        padding: 50px 0 !important;
    }
    
    .cta-title {
        font-size: 1.8rem !important;
    }
    
    .cta-desc {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }
    
    .whatsapp-btn {
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px !important;
    }
    
    .footer-title {
        font-size: 1.2rem !important;
    }
    
    /* النشرة البريدية للشاشات الصغيرة */
    .newsletter-simple .newsletter-wrapper {
        flex-direction: column !important;
        background: transparent !important;
        border: none !important;
        gap: 15px !important;
    }
    
    .newsletter-simple .newsletter-input {
        width: 100% !important;
        border-radius: 50px !important;
        border: 2px solid rgba(212, 175, 55, 0.5) !important;
        padding: 15px 20px !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .newsletter-simple .newsletter-button {
        position: static !important;
        width: 100% !important;
        border-radius: 50px !important;
        padding: 15px !important;
    }
    
    /* تبديل بين نسخة الديسكتوب والموبايل */
    .newsletter-simple {
        display: none;
    }
    
    .newsletter-mobile {
        display: block;
    }
    
    .newsletter-mobile > div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-mobile input {
        width: 100%;
        padding: 15px 20px;
        border-radius: 50px;
        border: 2px solid rgba(212, 175, 55, 0.5);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-align: right;
        direction: rtl;
    }
    
    .newsletter-mobile button {
        width: 100%;
        padding: 15px;
        border-radius: 50px;
        background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
        color: white;
        border: none;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

/* For tablets */
@media (min-width: 769px) and (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border: none;
    }
    
    .newsletter-input {
        width: 100%;
        border-radius: 50px;
        border: 2px solid rgba(212, 175, 55, 0.5);
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-button {
        position: static;
        width: 100%;
        border-radius: 50px;
        padding: 15px;
    }
}

/* Floating Elements */
.floating-elem {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}

.floating-1 {
    top: 15%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 20%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

.floating-3 {
    top: 40%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

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

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

    .hero-stats {
        justify-content: center;
    }
}

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

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

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

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

    .floating-elem {
        display: none;
    }
}

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

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

    .stat-number {
        font-size: 2rem;
    }
}

/* Ultra-Animated Prestige Widget - direct colors */
@keyframes goldenPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes shimmer {
    0% { transform: translateX(-150%) skewX(-25deg); }
    50%, 100% { transform: translateX(150%) skewX(-25deg); }
}

.prestige-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    direction: rtl;
    font-family: 'Almarai', sans-serif;
}

.prestige-trigger {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden; /* لللمعان */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: goldenPulse 2s infinite; /* النبض المستمر */
}

/* طبقة اللمعان */
.prestige-trigger::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 4s infinite;
}

.prestige-trigger:hover {
    transform: translateY(-8px) scale(1.05);
    animation: none; /* توقف النبض عند التفاعل */
}

.prestige-trigger .icon-close { display: none; font-size: 30px; }

.prestige-widget.active .prestige-trigger {
    background: #1a1a1a;
    transform: rotate(180deg);
    animation: none;
}
.prestige-widget.active .icon-main { display: none; }
.prestige-widget.active .icon-close { display: block; }

/* قائمة الخيارات */
.prestige-menu {
    position: absolute;
    bottom: 95px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.prestige-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 230px;
    opacity: 0;
    transform: translateX(50px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prestige-widget.active .prestige-item {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* انميشن متسلسل (Stagger) */
.prestige-widget.active .prestige-item:nth-child(1) { transition-delay: 0.1s; }
.prestige-widget.active .prestige-item:nth-child(2) { transition-delay: 0.2s; }
.prestige-widget.active .prestige-item:nth-child(3) { transition-delay: 0.3s; }

.prestige-item:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.prestige-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.color-whatsapp { background: #25D366; }
.color-phone { background: #3498db; }
.color-email { background: #D4AF37; }

.label-main { font-size: 16px; color: #1a1a1a; font-weight: 800; }
.label-sub { font-size: 11px; color: #888; font-weight: 700; text-transform: uppercase; }