body {
    margin: 0;
    background: #000;
    color: #eee;
    font-family: "Segoe UI", sans-serif;
}

/* LANGUAGE SWITCH */
.lang-switch {
    position: absolute;
    top: 8px;
    right: 30px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.lang-switch button {
    width: 90px;
    height: 34px;
    padding: 0;
    background: #c9a856;
    color: #000;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.lang-switch button:hover {
    background: #d8b864;
}

/* HEADER */
.main-header {
    background: #0d0d0d;
    padding: 55px 60px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.main-header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-header a {
    margin-left: 0;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
}

.main-header a:hover,
.main-header .active {
    color: #c9a856;
}

/* HERO */
.services-hero {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle, rgba(201,168,86,0.2), transparent 70%);
}

.section-title {
    font-size: 42px;
    color: #c9a856;
    text-align: center;
}

/* SERVICES GRID */
.services-grid {
    padding: 50px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-card {
    width: 260px;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 18px rgba(201,168,86,0.2);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(201,168,86,0.45);
}

.icon {
    font-size: 44px;
    margin-bottom: 15px;
    color: #c9a856;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #c9a856;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
.main-footer {
    background: #0d0d0d;
    padding: 20px;
    text-align: center;
    color: #aaa;
}

/* RTL SUPPORT */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .main-header {
    direction: rtl;
}

body.rtl .main-header a {
    margin-right: 0;
}

body.rtl .service-card,
body.rtl .services-hero,
body.rtl .main-footer {
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .main-header {
        padding: 55px 20px 18px;
        flex-direction: column;
        gap: 15px;
    }

    .main-header nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .services-grid {
        padding: 40px 20px;
    }
}