body.rtl,
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

.omega-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.omega-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 169, 107, 0.18);
}

.omega-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.omega-logo img {
    max-height: 56px;
    width: auto;
}

.omega-logo span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.omega-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.omega-nav a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.omega-nav a:hover {
    color: #C8A96B;
}

.omega-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #C8A96B, #E5C78A);
    color: #111111;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.omega-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 169, 107, 0.25);
}

.omega-site-footer {
    background: #0F0F0F;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 992px) {
    .omega-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
    }

    .omega-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}
