/* الألوان والهوية الذهبية مع الأسود والفرسان */
:root {
    --bg-dark: #0f141c;          /* خلفية سوداء/كحلية فخمة */
    --card-dark: #161d28;
    --gold-primary: #c5a059;     /* ذهبي متدرج */
    --gold-light: #f5d77f;
    --gold-dark: #9a7228;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-gold: rgba(197, 160, 89, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    direction: rtl;
}

/* ================= الهيدر ================= */
.navbar {
    background-color: rgba(15, 20, 28, 0.95);
    border-bottom: 1px solid var(--border-gold);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-add-property {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #000;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.plus-icon {
    background: rgba(0, 0, 0, 0.15);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-selector {
    border: 1px solid var(--border-gold);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background-color: var(--card-dark);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold-light);
    font-weight: 800;
}

/* الشعار */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-svg-logo {
    width: 42px;
    height: 42px;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.logo-text .subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
}

/* ================= الهيرو ================= */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 20, 28, 0.85) 0%, rgba(15, 20, 28, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horse-badge {
    background: rgba(22, 29, 40, 0.8);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.horse-svg {
    width: 20px;
    height: 20px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.fal-license {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold-primary);
    font-weight: 700;
}

/* شريط التصفية */
.filter-bar {
    background: var(--card-dark);
    border: 1px solid var(--border-gold);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 750px;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    flex: 1;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #000;
}

/* شريط التواصل السريع السفلي */
.quick-contact-bar {
    background-color: #0a0d12;
    border-top: 1px solid var(--border-gold);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-info-item a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    direction: ltr;
    display: inline-block;
}

.divider {
    color: var(--border-gold);
}