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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

a {
    text-decoration: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.1s;
    mix-blend-mode: difference;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo p {
    font-size: 0.8rem;
    color: #ccc;
}
.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffd700;
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.mobile-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
}
.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}
.hero-content h2 span {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}
.btn-gold {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    padding: 15px 40px;
    border-radius: 50px;
    color: #000;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}

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

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

/* Services Grid with Images */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(255,215,0,0.2);
    position: relative;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}
.service-info {
    padding: 25px;
}
.service-info i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}
.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.service-info p {
    color: #ccc;
}

/* Parallax Section */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

/* Gallery Swiper */
.gallery-swiper {
    width: 100%;
    padding: 50px 0;
}
.gallery-swiper .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}
.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.team-card {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,215,0,0.2);
}
.team-card:hover {
    transform: scale(1.05);
    border-color: #ffd700;
}
.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.team-card h3 {
    margin: 20px 0 5px;
    font-size: 1.5rem;
}
.team-card p {
    color: #ffd700;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0f0f0f, #050505);
    border-radius: 50px 50px 0 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.contact-info i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.contact-detail {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-detail i {
    font-size: 1.3rem;
    margin-bottom: 0;
}
.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    border: 2px solid #ffd700;
}

/* Footer */
.footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    color: #aaa;
}

/* Booking Form (New) */
.booking-form-container {
    width: 100%;
}
.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    width: 100%;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffd700;
}
.form-control {
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    -webkit-appearance: none; /* إخفاء السهم في متصفحات كروم وسفاري */
    -moz-appearance: none;    /* إخفاء السهم في متصفح فايرفوكس */
    appearance: none;         /* إخفاء السهم القياسي */
}
.form-control:focus {
    outline: none;
    border-color: #ffd700;
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.vision-card, .mission-card {
    background: rgba(0,0,0,0.8);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: 0.3s;
}
.vision-card i, .mission-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}
.vision-card h3, .mission-card h3 {
    margin-bottom: 15px;
}
.vision-card:hover, .mission-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

/* Custom Video Player */
.video-container {
    position: relative;
    height: 500px; /* زيادة الطول في وضع الحاسوب */
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* لضمان ملء المساحة دون تشويه */
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    z-index: 5;
}
.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.play-btn {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transition: 0.3s;
}
.video-overlay:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    /* منع تأثيرات AOS من التسبب في تمرير عرضي */
    [data-aos] {
        overflow: hidden !important;
    }
    
    .cursor {
        display: none !important; /* إخفاء الماوس المخصص في الموبايل */
    }

    .video-container {
        height: auto; /* العودة للوضع التلقائي في الموبايل */
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-btn {
        display: block;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Floating Call */
.call-float {
    position: fixed;
    bottom: 100px; /* فوق زر الواتساب */
    right: 30px;
    background: #ffd700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #000;
    z-index: 999;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.call-float:hover {
    transform: scale(1.1);
    background: #fff;
}
