/* --- Root Variables --- */
:root {
    --color-bg: #050505;
    --color-card: #121212;
    --color-gold: #d4af37;       
    --color-gold-dark: #aa8c2c;  
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --font-main: 'Cairo', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* --- Typography & Utils --- */
.text-gold { color: var(--color-gold); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.btn-gold {
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-dark));
    color: #000; padding: 12px 30px; border-radius: 50px; text-decoration: none;
    font-weight: bold; transition: 0.3s; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }

/* --- Navbar --- */
.navbar { position: fixed; top: 0; width: 100%; padding: 15px 0; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.2rem; color: var(--color-gold); letter-spacing: 1px; }
.logo img { height: 40px; border-radius: 8px; }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { color: var(--color-text); text-decoration: none; transition: 0.3s; font-size: 1rem; }
.nav-links a:hover { color: var(--color-gold); }

/* --- Hero --- */
.hero {
    height: 100vh; background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop') no-repeat center/cover;
    position: relative; display: flex; align-items: center; text-align: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.8), var(--color-bg)); }
.hero-content { position: relative; z-index: 2; margin-top: 60px; }
.hero-logo-img { width: 100px; height: 100px; border-radius: 20px; box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); margin-bottom: 20px; border: 1px solid var(--color-gold); }
.hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; color: var(--color-text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Features --- */
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; font-weight: 700; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--color-card); padding: 30px 20px; border-radius: 15px; text-align: center;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.feature-card:hover { border-color: var(--color-gold); transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 15px; display: block; }

/* --- Split Section --- */
.split-section { display: flex; height: 450px; overflow: hidden; margin: 50px 0; }
.split-item { flex: 1; position: relative; background-size: cover; background-position: center; transition: 0.5s; cursor: pointer; }
.split-item:hover { flex: 1.3; }
.split-item .overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    padding: 20px; transition: 0.3s;
}
.split-item:hover .overlay { background: rgba(0,0,0,0.3); }
.split-item h3 { font-size: 2rem; color: var(--color-gold); margin-bottom: 10px; }

/* --- Map --- */
.map-container {
    height: 500px; width: 100%; border-radius: 20px; border: 2px solid var(--color-gold);
    filter: grayscale(100%) invert(100%); /* Dark map style */
    position: relative; z-index: 1;
}
/* تنسيق حرف S على الخريطة */
.s-icon-label {
    color: #d4af37 !important;
    font-size: 4rem !important; /* حجم كبير */
    font-weight: 900 !important;
    font-family: 'Cairo', sans-serif !important;
    text-shadow: 0 0 10px #000, 0 0 20px rgba(212, 175, 55, 0.5);
    text-align: center;
    line-height: 1;
}

/* --- Footer --- */
footer { background: #000; padding: 60px 0 30px; border-top: 1px solid #222; text-align: center; }
.footer-logo img { width: 80px; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.social-icons a { 
    font-size: 1.8rem; color: #fff; transition: 0.3s; 
    width: 50px; height: 50px; border-radius: 50%; background: #111;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #333;
}
.social-icons a:hover { color: #000; background: var(--color-gold); border-color: var(--color-gold); transform: translateY(-5px); }

.phone-number { 
    font-size: 1.5rem; color: var(--color-gold); text-decoration: none; font-weight: bold; letter-spacing: 1px;
}
.phone-number:hover { color: #fff; }

.footer-links { display: flex; justify-content: center; gap: 15px; color: #555; }
.footer-links a { color: #888; text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--color-gold); }

/* --- Mobile --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .split-section { flex-direction: column; height: auto; }
    .split-item { height: 250px; }
    .lang-switch { bottom: 20px; right: 20px; }
}

/* --- Lang Switcher --- */
.lang-switch {
    position: fixed; bottom: 30px; right: 30px; background: var(--color-gold); border: none;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 2000;
    font-weight: bold; box-shadow: 0 5px 15px rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; gap: 5px;
}