﻿/* تذييل الصفحة Bee Logistics */
:root {
    --brand-yellow: #F4BC00;
    --brand-yellow-dark: #F4BC00;
    --brand-black: #111827;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-main: #FFF9EC;
    --bg-soft: #F7F1E4;
    --bg-card: #FFFFFF;
    --border-soft: #E8DCC2;
}

.footer {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(244, 188, 0, 0.08) 0%, rgba(244, 188, 0, 0) 28%),
        radial-gradient(circle at bottom left, rgba(244, 188, 0, 0.06) 0%, rgba(244, 188, 0, 0) 32%),
        linear-gradient(135deg, #050505 0%, #0b0b0b 55%, #020202 100%);
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 60px 0 0;
    margin-top: auto;
}
.hexagon-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; opacity: 0.1; z-index: 1;
}
.hexagon {
    position: absolute; width: 40px; height: 40px; background: var(--brand-yellow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
}
.hexagon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hexagon:nth-child(2) { top: 40%; left: 25%; animation-delay: 1s; }
.hexagon:nth-child(3) { top: 15%; left: 60%; animation-delay: 2s; }
.hexagon:nth-child(4) { top: 60%; left: 80%; animation-delay: 3s; }
.hexagon:nth-child(5) { top: 70%; left: 15%; animation-delay: 4s; }
.hexagon:nth-child(6) { top: 30%; left: 85%; animation-delay: 5s; }
.hexagon:nth-child(7) { top: 80%; left: 45%; animation-delay: 2.5s; }
.hexagon:nth-child(8) { top: 10%; left: 40%; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.3; }
}
.decorative-elements {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.glow-dot {
    position: absolute; width: 4px; height: 4px; background: var(--brand-yellow); border-radius: 50%; box-shadow: 0 0 10px rgba(244, 188, 0, 0.7); animation: twinkle 3s ease-in-out infinite;
}
.glow-dot:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.glow-dot:nth-child(2) { top: 45%; left: 70%; animation-delay: 1s; }
.glow-dot:nth-child(3) { top: 65%; left: 30%; animation-delay: 2s; }
.glow-dot:nth-child(4) { top: 35%; left: 90%; animation-delay: 1.5s; }
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.curved-line {
    position: absolute; width: 200px; height: 2px; background: linear-gradient(90deg, transparent, rgba(244,188,0,0.3), transparent); border-radius: 2px; animation: slide 8s linear infinite;
}
.curved-line:nth-child(5) { top: 20%; left: -200px; }
.curved-line:nth-child(6) { top: 60%; left: -200px; animation-delay: 4s; }
@keyframes slide {
    0% { left: -200px; }
    100% { left: 100%; }
}
.footer-content {
    position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; margin-bottom: 40px;
}
.footer-column {
    text-align: start;
    min-width: 0;
}
.footer-column h3 {
    color: var(--brand-yellow); font-size: 24px; font-weight: bold; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.logo-text {
    font-size: 28px; font-weight: bold; background: linear-gradient(45deg, var(--brand-yellow), #ffd24d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.company-description {
    color: #e0e0e0; font-size: 16px; line-height: 1.6; margin: 20px 0;
}
.contact-info { color: #cccccc; font-size: 15px; line-height: 2; max-width: 100%; }
.contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    min-width: 0;
    flex-wrap: wrap;
}
.contact-info .contact-row {
    flex-wrap: nowrap;
    align-items: flex-start;
}
.contact-line {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    flex-wrap: wrap;
    line-height: 1.8;
}
.contact-label {
    white-space: nowrap;
}
.contact-info a,
.contact-info span,
.company-description,
.footer-links a,
.social-text {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.contact-info a {
    color: inherit;
    text-decoration: none;
}
.contact-info a[href^="tel:"],
.contact-info a[href*="wa.me/"] {
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
    display: inline-block;
}
.icon { width: 20px; height: 20px; fill: var(--brand-yellow); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ffffff; text-decoration: none; font-size: 16px; transition: all 0.3s ease; position: relative; }
.footer-links a:hover { color: var(--brand-yellow); padding-inline-end: 10px; }
.footer-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -2px; inset-inline-end: 0; background: var(--brand-yellow); transition: width 0.3s ease; }
.footer-links a:hover::after { width: 100%; }
.social-text { color: #e0e0e0; font-size: 16px; margin-bottom: 20px; }
.social-icons { display: flex; gap: 15px; flex-wrap: wrap; }
.social-icon { width: 45px; height: 45px; background: linear-gradient(45deg, var(--brand-yellow), #ffd24d); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
.social-icon:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 20px rgba(244, 188, 0, 0.3); }
.social-icon svg { width: 24px; height: 24px; fill: #000; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 25px 0; text-align: center; position: relative; z-index: 2; }
.footer-bottom p { color: #999999; font-size: 14px; margin: 0; }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-column { text-align: center; }
    .social-icons { justify-content: center; }
    .contact-info div { justify-content: center; }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 54px;
        overflow-x: clip;
    }

    .footer-content {
        width: min(100% - 24px, 1200px);
        padding-inline: 0;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-column[style] {
        transform: none !important;
    }

    .footer-column h3 {
        justify-content: center;
        font-size: 20px;
    }

    .company-description,
    .contact-info,
    .footer-links a,
    .social-text {
        font-size: 14px;
    }

    .contact-info .contact-row,
    .contact-line {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .footer-content {
        width: min(100% - 20px, 1200px);
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

