/* --- متغيرات الألوان (Theme) --- */
:root {
    --primary-gold: #cca43b;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --text-grey: #666;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* --- الإعدادات العامة --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- الناف بار (Navbar) --- */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}
nav.scrolled .logo { color: var(--dark-bg); }
.logo span { color: var(--primary-gold); }

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}
nav.scrolled .nav-links a { color: var(--dark-bg); }
.nav-links a:hover { color: var(--primary-gold) !important; }

.btn-cta {
    background: var(--primary-gold);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
}
.btn-cta:hover { background: #b08d33; transform: scale(1.05); }

.menu-icon {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}
nav.scrolled .menu-icon { color: var(--dark-bg); }

/* --- الهيدر والفيديو --- */
header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--overlay-color);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.btn-hero {
    border: 2px solid var(--primary-gold);
    color: var(--white);
    padding: 12px 35px;
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
}
.btn-hero:hover { background: var(--primary-gold); border-color: var(--primary-gold); }

/* --- الأقسام والوجهات --- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--dark-bg); }
.section-header span { color: var(--primary-gold); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.card:hover { transform: translateY(-10px); }

.card-img { height: 250px; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.price {
    position: absolute; top: 15px; right: 15px;
    background: var(--primary-gold); color: var(--white);
    padding: 5px 15px; border-radius: 20px; font-weight: bold;
}

.card-body { padding: 25px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.4rem; }
.read-more { color: var(--primary-gold); font-weight: bold; display: flex; align-items: center; gap: 5px; }

/* --- نموذج التواصل --- */
.contact-section { background: var(--dark-bg); padding: 80px 0; color: var(--white); }
.contact-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; }
.contact-text h2 span { color: var(--primary-gold); }

.contact-form {
    flex: 1; min-width: 300px;
    background: var(--white); padding: 30px;
    border-radius: 10px; display: flex; flex-direction: column; gap: 15px;
}
.contact-form input, .contact-form select {
    padding: 15px; border: 1px solid #ddd; border-radius: 5px; outline: none;
}
.contact-form button {
    padding: 15px; background: var(--primary-gold); color: var(--white);
    border: none; font-weight: bold; cursor: pointer; border-radius: 5px; transition: var(--transition);
}
.contact-form button:hover { background: #b08d33; }

/* --- الفوتر --- */
footer { background: #000; color: #777; padding: 20px; text-align: center; }

/* --- التجاوب (Mobile) --- */
@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: var(--white);
        flex-direction: column; justify-content: center;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--dark-bg); font-size: 1.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
}