/* =========================================================
   GLOBAL VARIABLES
========================================================= */

:root {
    --primary: #0b5ed7;
    --primary-dark: #063b8f;
    --primary-light: #3d8bfd;

    --dark: #07111f;
    --dark-2: #0c1b2e;

    --text: #172033;
    --muted: #6b7280;

    --white: #ffffff;
    --light: #f5f8fc;

    --border: #e7ebf1;

    --glow: rgba(11, 94, 215, 0.35);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 9999;

    padding: 16px 0;

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 251, 255, 0.93),
            rgba(255, 255, 255, 0.96)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(11, 94, 215, 0.08);

    box-shadow:
        0 8px 35px rgba(8, 30, 60, 0.06);

    overflow: hidden;

    transition:
        padding 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* ---------------------------------------------------------
   Animated Light Line
--------------------------------------------------------- */

.site-navbar::before {
    content: "";

    position: absolute;

    top: 0;
    left: -30%;

    width: 30%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-light),
        #ffffff,
        var(--primary-light),
        transparent
    );

    filter: blur(0.5px);

    animation: navbarLight 4s linear infinite;
}

@keyframes navbarLight {

    0% {
        left: -30%;
    }

    100% {
        left: 130%;
    }

}


/* ---------------------------------------------------------
   Bottom Glow
--------------------------------------------------------- */

.site-navbar::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: 50%;

    width: 35%;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

    opacity: 0.65;

    filter: blur(1px);
}


/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.site-navbar .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BRAND
========================================================= */

.navbar-brand {
    color: var(--dark) !important;

    display: inline-flex;
    align-items: center;

    position: relative;

    transition: 0.35s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}


/* Logo Icon */

.brand-icon {
    position: relative;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(11, 94, 215, 0.25),
        0 0 0 5px rgba(11, 94, 215, 0.05);

    overflow: hidden;

    transition: 0.4s ease;
}


/* Shine inside logo */

.brand-icon::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -80%;

    width: 50%;
    height: 300%;

    background: rgba(255, 255, 255, 0.4);

    transform: rotate(25deg);

    animation: logoShine 3.5s ease-in-out infinite;
}

@keyframes logoShine {

    0% {
        left: -100%;
    }

    45%,
    100% {
        left: 160%;
    }

}


/* Truck Animation */

.brand-icon i {
    position: relative;
    z-index: 2;

    transition: 0.4s ease;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-3deg) scale(1.06);

    box-shadow:
        0 12px 30px rgba(11, 94, 215, 0.35),
        0 0 25px rgba(11, 94, 215, 0.18);
}

.navbar-brand:hover .brand-icon i {
    transform: translateX(-3px);
}


/* Brand Text */

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 900;

    color: var(--dark);

    letter-spacing: -0.3px;
}

.brand-text span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 600;

    margin-top: 4px;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.navbar-nav {
    gap: 5px;
}

.nav-link {
    position: relative;

    color: #4b5563 !important;

    font-size: 15px;
    font-weight: 700;

    padding: 11px 15px !important;

    border-radius: 12px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


/* Hover background */

.nav-link::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 215, 0.08),
            rgba(61, 139, 253, 0.02)
        );

    opacity: 0;

    transform: scale(0.85);

    transition: 0.3s ease;

    z-index: -1;
}


/* Animated underline */

.nav-link::after {
    content: "";

    position: absolute;

    bottom: 4px;
    right: 50%;

    width: 0;
    height: 2px;

    transform: translateX(50%);

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );

    box-shadow:
        0 0 10px rgba(11, 94, 215, 0.4);

    transition: 0.35s ease;
}


.nav-link:hover {
    color: var(--primary) !important;

    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 45%;
}


/* Active */

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active::after {
    width: 45%;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.navbar-action {
    position: relative;
}

.btn-primary-custom {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 11px 21px;

    border: 0;
    border-radius: 13px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: #fff !important;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(11, 94, 215, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Button shine */

.btn-primary-custom::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 50%;
    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform: rotate(25deg);

    transition: 0.5s;
}

.btn-primary-custom:hover::before {
    left: 150%;
}


/* Button hover */

.btn-primary-custom:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(11, 94, 215, 0.30),
        0 0 20px rgba(11, 94, 215, 0.12);
}

.btn-primary-custom i {
    transition: 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(-4px);
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.navbar-toggler {
    position: relative;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(11, 94, 215, 0.12) !important;

    border-radius: 12px;

    background: rgba(11, 94, 215, 0.05);

    color: var(--primary);

    font-size: 25px;

    box-shadow: none !important;

    transition: 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--primary);
    color: #fff;

    transform: rotate(3deg);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(11, 94, 215, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(61, 139, 253, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07111f,
            #0b1829
        );

    color: #fff;

    padding: 85px 0 0;

    overflow: hidden;
}


/* Moving light */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: -20%;

    width: 40%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(61, 139, 253, 0.9),
            transparent
        );

    filter: blur(1px);

    animation: footerLight 6s linear infinite;
}

@keyframes footerLight {

    0% {
        left: -40%;
    }

    100% {
        left: 140%;
    }

}


/* Footer glow circles */

.site-footer::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -250px;

    border-radius: 50%;

    border: 1px solid rgba(61, 139, 253, 0.08);

    box-shadow:
        0 0 80px rgba(11, 94, 215, 0.08);
}


/* Footer content */

.site-footer .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.footer-brand-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    font-size: 22px;

    box-shadow:
        0 10px 25px rgba(11, 94, 215, 0.25),
        0 0 25px rgba(11, 94, 215, 0.08);

    overflow: hidden;
}


/* Footer Logo Shine */

.footer-brand-icon::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 45%;
    height: 300%;

    background: rgba(255,255,255,0.35);

    transform: rotate(25deg);

    animation: logoShine 4s ease-in-out infinite;
}

.footer-brand-icon i {
    position: relative;
    z-index: 2;
}


.footer-brand h4 {
    margin: 0;

    font-size: 21px;
    font-weight: 900;
}

.footer-brand span {
    display: block;

    margin-top: 4px;

    color: #8d9bad;

    font-size: 12px;
}


/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.footer-description {
    max-width: 480px;

    color: #8d9bad;

    line-height: 2;

    font-size: 14px;

    margin-bottom: 25px;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;

    background:
        rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.07);

    overflow: hidden;

    transition: 0.35s ease;
}


/* Social shine */

.footer-social a::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -100%;

    width: 50%;
    height: 300%;

    background: rgba(255,255,255,0.16);

    transform: rotate(25deg);

    transition: 0.6s ease;
}

.footer-social a:hover::before {
    left: 150%;
}

.footer-social a:hover {
    background: var(--primary);

    border-color: var(--primary);

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(11, 94, 215, 0.25),
        0 0 20px rgba(11, 94, 215, 0.12);
}


/* =========================================================
   FOOTER TITLES
========================================================= */

.footer-title {
    position: relative;

    display: inline-block;

    font-size: 17px;

    font-weight: 900;

    margin-bottom: 25px;

    padding-bottom: 10px;
}

.footer-title::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );

    box-shadow:
        0 0 10px rgba(11, 94, 215, 0.4);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    position: relative;

    display: inline-block;

    color: #8d9bad;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-links a::before {
    content: "←";

    position: absolute;

    right: -18px;

    opacity: 0;

    color: var(--primary-light);

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;

    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 21px;
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #8d9bad;

    line-height: 1.7;

    font-size: 14px;
}

.contact-item i {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--primary-light);

    background: rgba(11, 94, 215, 0.10);

    transition: 0.3s ease;
}

.contact-item:hover i {
    background: var(--primary);

    color: #fff;

    transform: scale(1.08);

    box-shadow:
        0 0 15px rgba(11, 94, 215, 0.25);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: relative;

    margin-top: 65px;

    padding: 23px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,0.07);

    color: #657386;

    font-size: 13px;
}

.footer-bottom::before {
    content: "";

    position: absolute;

    top: -1px;
    right: 0;

    width: 80px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary)
        );

    box-shadow:
        0 0 10px rgba(11, 94, 215, 0.3);
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .site-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        margin-top: 15px;

        padding: 18px;

        background:
            rgba(255,255,255,0.98);

        border-radius: 18px;

        border: 1px solid rgba(11,94,215,0.08);

        box-shadow:
            0 20px 50px rgba(0,0,0,0.10);

        backdrop-filter: blur(15px);
    }

    .navbar-nav {
        gap: 3px;
    }

    .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-action {
        margin-top: 10px;
    }

    .navbar-action .btn {
        width: 100%;

        justify-content: center;
    }

}


@media (max-width: 575px) {

    .brand-icon {
        width: 44px;
        height: 44px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 10px;
    }

    .site-footer {
        padding-top: 65px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}