/* ============================================================
   We Serve — Footer CSS
   ============================================================ */
.we-footer__logo-img { height: 60px; width: auto; max-width: 220px; object-fit: contain; display: block; }

/* ======= Main Footer ======= */
.we-footer {
    position: relative;
    background: #07111e;
    border-top: none;
}

/* ======= Wave ======= */
.we-footer__wave {
    position: absolute;
    top: -69px;
    left: 0;
    right: 0;
    height: 70px;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}
.we-footer__wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ======= Top Section ======= */
.we-footer__top {
    padding: 80px 0 55px;
    position: relative;
    z-index: 1;
}

/* Subtle top gold glow */
.we-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 25%; right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.25), transparent);
    z-index: 3;
}

/* ======= Brand Col ======= */
.we-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.we-footer__logo-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #050d1a;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(232,160,32,0.3);
}

.we-footer__logo-en {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--we-text-light);
}
.we-footer__logo-ar {
    display: block;
    font-size: 0.7rem;
    color: var(--we-text-muted);
}

.we-footer__desc {
    color: var(--we-text-muted);
    font-size: 0.88rem;
    line-height: 1.95;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.we-footer__social {
    display: flex;
    gap: 0.55rem;
}
.we-footer__social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--we-text-muted);
    font-size: 0.9rem;
    transition: var(--we-transition);
    text-decoration: none;
}
.we-footer__social-link:hover {
    background: var(--we-gold);
    border-color: var(--we-gold);
    color: #050d1a;
    transform: translateY(-3px);
}

/* ======= Nav Cols ======= */
.we-footer__heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--we-text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    padding-bottom: 0.6rem;
    position: relative;
}
.we-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    border-radius: 1px;
}

.we-footer__links {
    list-style: none;
    padding: 0; margin: 0;
}
.we-footer__links li { margin-bottom: 0.6rem; }
.we-footer__links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    text-decoration: none;
}
.we-footer__links a i {
    font-size: 0.65rem;
    color: var(--we-gold);
    opacity: 0.5;
    transition: all 0.25s ease;
}
.we-footer__links a:hover {
    color: var(--we-gold);
    padding-right: 5px;
}
.we-footer__links a:hover i { opacity: 1; }

/* ======= Contact Col ======= */
.we-footer__contact {
    list-style: none;
    padding: 0; margin: 0;
}
.we-footer__contact li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.87rem;
    line-height: 1.65;
}
.we-footer__contact i {
    color: var(--we-gold);
    font-size: 0.92rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ======= Divider line between cols ======= */
.we-footer__top .row > [class*="col"] {
    border-right: 1px solid rgba(255,255,255,0.045);
}
.we-footer__top .row > [class*="col"]:last-child {
    border-right: none;
}
@media (max-width: 991px) {
    .we-footer__top .row > [class*="col"] { border-right: none; }
}

/* ======= Bottom Bar ======= */
.we-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #040c15;
    position: relative;
    z-index: 1;
}
.we-footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.we-footer__copy strong { color: var(--we-gold); font-weight: 700; }
.we-footer__copy a {
    color: var(--we-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}
.we-footer__copy a:hover { color: var(--we-gold-light); }

@media (max-width: 767px) {
    .we-footer__top { padding: 55px 0 40px; }
}
