﻿
/* ── LAYOUT VARS ── */
:root {
    --brand: #5FB4FD; /* الأزرق */
    --brand-dk: #3A8EDB;
    --brand-lt: #EEF6FF;
    --dark: #4D4D4D;
}

/* ── TOP BAR IMPROVEMENTS ── */
.top-bar-area {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .top-bar-area .top-left p {
        font-size: 13px;
        color: rgba(255,255,255,0.75);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .top-bar-area .social-links {
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .top-bar-area .social-links li a {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.75);
            font-size: 13px;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }

            .top-bar-area .social-links li a:hover {
                background: var(--brand);
                color: #fff;
            }

/* ── NAV: REQUEST QUOTE BUTTON ── */
.mainmenu-right-box .consultation-button a {
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 7px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .mainmenu-right-box .consultation-button a::before {
        content: "\f1d8"; /* fa-paper-plane */
        font-family: FontAwesome;
        font-size: 12px;
    }

    .mainmenu-right-box .consultation-button a:hover {
        background: var(--brand-dk) !important;
        transform: translateY(-1px);
    }

/* ── FOOTER IMPROVEMENTS ── */
.footer-area {
    background: #1f2937;
}

    .footer-area .single-footer-widget .title h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .footer-area .single-footer-widget .title .border {
        background: var(--brand);
        height: 2px;
        width: 40px;
        display: block;
        margin-top: 8px;
        border-radius: 2px;
    }

    .footer-area .our-info p {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        line-height: 1.8;
    }

    .footer-area .our-info a {
        color: var(--brand);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: 10px;
        transition: gap 0.2s;
    }

        .footer-area .our-info a:hover {
            gap: 8px;
        }

    .footer-area .usefull-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .footer-area .usefull-links li a {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s, gap 0.2s;
        }

            .footer-area .usefull-links li a::before {
                content: "\f105"; /* fa-angle-right */
                font-family: FontAwesome;
                color: var(--brand);
                font-size: 12px;
            }

            .footer-area .usefull-links li a:hover {
                color: #fff;
                gap: 10px;
            }

/* Footer contact info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-contact-info li {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .footer-contact-info .icon-holder {
        width: 36px;
        height: 36px;
        background: rgba(96,180,253,0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .footer-contact-info .icon-holder span,
        .footer-contact-info .icon-holder i {
            color: var(--brand);
            font-size: 16px;
        }

    .footer-contact-info .text-holder h5 {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        margin: 0;
        font-weight: 400;
    }

        .footer-contact-info .text-holder h5 a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-contact-info .text-holder h5 a:hover {
                color: var(--brand);
            }

/* ── FOOTER BOTTOM ── */
.footer-bottom-area {
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.06);
}

    .footer-bottom-area .copyright-text p {
        font-size: 13px;
        color: rgba(255,255,255,0.4);
        margin: 0;
    }

    .footer-bottom-area .footer-social-links {
        display: flex;
        justify-content: flex-end;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .footer-bottom-area .footer-social-links li a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.07);
            border-radius: 7px;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

            .footer-bottom-area .footer-social-links li a:hover {
                background: var(--brand);
                color: #fff;
            }


