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 */
.contact-hero {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle, rgba(201,168,86,0.15), transparent 70%);
}

.section-title {
    color: #c9a856;
    font-size: 42px;
    text-align: center;
    text-shadow: 0 0 15px rgba(201,168,86,0.4);
}

/* CONTACT SECTION */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 40px;
}

.contact-info {
    width: 45%;
    font-size: 18px;
    line-height: 1.8;
    background: #fff;
    border: 1px solid var(--ag-line, #dbe4e8);
    border-radius: 0;
    box-shadow: var(--ag-shadow, 0 14px 38px rgba(20, 52, 62, .10));
    padding: 34px 32px;
    position: relative;
    overflow: hidden;
}

.contact-info:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ag-green, #007a4d), var(--ag-teal, #00a6a6), var(--ag-blue, #1675b9));
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    padding: 12px 0;
    border-bottom: 1px solid var(--ag-line, #dbe4e8);
    margin: 0;
}

.contact-info p:last-of-type {
    border-bottom: 0;
}

.contact-info a {
    color: var(--ag-green, #007a4d);
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c9a856;
    border-radius: 8px;
    margin-top: 15px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.contact-form {
    width: 45%;
    background: #fff;
    border: 1px solid var(--ag-line, #dbe4e8);
    border-radius: 0;
    box-shadow: var(--ag-shadow, 0 14px 38px rgba(20, 52, 62, .10));
    padding: 34px 32px;
    position: relative;
    overflow: hidden;
}

.contact-form:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ag-green, #007a4d), var(--ag-teal, #00a6a6), var(--ag-blue, #1675b9));
}

.contact-form h2 {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid var(--ag-line, #dbe4e8);
    background: var(--ag-soft, #f2f6f7);
    color: var(--ag-ink, #15242b);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ag-teal, #00a6a6);
    background: #fff;
}

.submit-btn {
    padding: 12px 25px;
    background: var(--ag-green, #007a4d);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: var(--ag-blue, #1675b9);
}

.map-section {
    margin-top: 30px;
}

.form-success {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    background: #e8f8ef;
    border-left: 5px solid #007a4d;
    color: #007a4d;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

body.rtl .form-success {
    border-left: none;
    border-right: 5px solid #007a4d;
}

.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 .contact-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;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}