@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap");

/** ================== Footer ================== **/
.site-footer {
    background-color: var(--footer-bg, #b1915d);
    color: var(--footer-fg, #ffffff);
    position: relative;
    font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.footer-overlay h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 56px;
    margin-top: 0;
}

.footer-overlay p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.about-us {
    text-align: right;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-right: 30px;
    margin-bottom: 15px;
}

.social-icons a {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--footer-fg, #ffffff);
    text-decoration: none;
    color: var(--footer-fg, #ffffff);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.15s;
}

.social-icons a:hover {
    background-color: var(--footer-fg, #ffffff);
    color: var(--footer-bg, #000000);
    border-color: var(--footer-fg, #ffffff);
    transform: translateY(-1px);
}

.contact-form .btn {
    width: 50%;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    font-size: 16px;
    background-color: transparent;
    border-radius: 7px;
    color: var(--footer-fg, #ffffff);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.85);
    text-align: start;
}

.contact-form h3 {
    text-align: start;
    margin-bottom: 10px;
}

.contact-form .submit-contact {
    background-color: var(--footer-fg, #ffffff);
    color: var(--footer-bg, #000000);
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .form-control {
        margin-top: 5px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .site-footer {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .form-control {
        margin-top: 5px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .logo-footer {
        max-width: 65px;
    }
}

.logo-footer{
    width: 156px;
    height: 156px;
}

input[type="email"],
input[type="tel"] {
    direction: rtl !important;
    text-align: right !important;
}

.contact-title {
    color: var(--footer-fg, #ffffff);
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    line-height: 56.22px !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--footer-fg, #ffffff);
    margin-bottom: 10px;
}

.contact-item i {
    font-size: 18px;
}

.contact-item p {
    margin: 0;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 22.5px !important;
}
.site-title {
    display: inline-block;
    font-family: "Nexa Bold", "Tajawal", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

    color: var(--footer-fg, #ffffff);
    text-decoration: none;
    margin-bottom: 12px;
}

.site-title:hover {
    text-decoration: none;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .site-title {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


.site-footer .footer-links a {
    color: var(--footer-fg, #ffffff);
    text-decoration: none;
    font-size: 15px;
}

.site-footer .footer-links a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.contact-form .footer-btn {
    width: 50%;
    border-radius: 20px;
    border: 1px solid var(--footer-fg, #ffffff);
    background-color: transparent;
    color: var(--footer-fg, #ffffff);
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.contact-form .footer-btn:hover {
    background-color: var(--footer-fg, #ffffff);
    color: var(--footer-bg, #000000);
}
.contact-subtitle {
    color: var(--footer-fg, #ffffff);
    font-size: 18px;
    font-weight: 500;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--footer-fg, #ffffff);
    opacity: 0.7;
}


.contact-form input,
.contact-form textarea {
    border: 1px solid var(--footer-fg, #ddd);
    font-size: 16px;
    background-color: transparent;
    border-radius: 7px;
    color: var(--footer-fg, #ffffff);
}
