﻿/* ============================================================
   LAYOUT.CSS – Movex Warehousing
   All styles extracted from inline <style> blocks in Layout.cshtml
   ============================================================ */

/* ---------- PRESENCE DROPDOWN (from <style> block 1) ---------- */
.mega-presence-item {
    position: relative;
}

.presence-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-presence-item:hover .presence-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.presence-full-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    width: 100%;
}

.presence-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.presence-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
}

    .city-link i {
        font-size: 18px;
        color: #e67e22;
        width: 26px;
        text-align: center;
    }

    .city-link span {
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
    }

    .city-link:hover {
        background: red;
        border-color: #e67e22;
        color: white;
        transform: translateX(5px);
    }

        .city-link:hover i {
            color: white;
        }

/* ---------- MARQUEE (from <style> block 2) ---------- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    background: transparent;
}

    .marquee-wrapper:active {
        cursor: grabbing;
    }

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 320px;
    display: block;
}

    .marquee-item .service-item {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .marquee-item .service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
        }

    .marquee-item .img {
        position: relative;
        background: #eef2f7;
        overflow: hidden;
        min-height: 250px;
    }

        .marquee-item .img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }

    .marquee-item .service-item:hover img {
        transform: scale(1.02);
    }

    .marquee-item .text {
        padding: 1.5rem;
        flex-grow: 1;
    }

    .marquee-item .heading-four {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

        .marquee-item .heading-four a {
            text-decoration: none;
            color: #1a2c3e;
            transition: color 0.2s;
        }

            .marquee-item .heading-four a:hover {
                color: red;
            }

    .marquee-item .text-dark {
        color: #2c3e4e;
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .marquee-item .text-dark b {
            color: #ff0000 !important;
            font-weight: 700;
        }

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
    }

        .marquee-item .img img {
            height: 200px;
        }

        .marquee-item .heading-four {
            font-size: 1.2rem;
        }

    .marquee-track {
        gap: 20px;
        animation-duration: 35s;
    }

    .marquee-item .text {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 260px;
    }

        .marquee-item .img img {
            height: 180px;
        }

    .marquee-track {
        gap: 16px;
        animation-duration: 30s;
    }
}

/* ---------- FOOTER STYLES (from <style> block 3) ---------- */
/* TOP CITIES SECTION - SIMPLE TEXT STYLE */
.top-cities {
    background: #0A0F1E;
    padding: 30px 0;
    border-bottom: 1px solid rgba(230, 126, 34, 0.2);
}

    .top-cities .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .top-cities .section-header {
        text-align: center;
        margin-bottom: 20px;
    }

        .top-cities .section-header .subtitle {
            color: #e67e22;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: inline-block;
        }

        .top-cities .section-header .title {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

            .top-cities .section-header .title span {
                color: #e67e22;
            }

    .top-cities .cities-simple {
        text-align: center;
        line-height: 2.2;
    }

    .top-cities .city-text {
        display: inline-block;
        color: #cbd5e6;
        text-decoration: none;
        font-size: 13px;
        margin: 0 8px;
        transition: color 0.2s ease;
    }

        .top-cities .city-text i {
            color: #e67e22;
            font-size: 10px;
            margin-right: 4px;
        }

        .top-cities .city-text:hover {
            color: #ff0000;
        }

            .top-cities .city-text:hover i {
                color: #ff0000;
            }

    .top-cities .separator {
        color: #e67e22;
        font-size: 12px;
        margin: 0 4px;
    }

@media (max-width: 768px) {
    .top-cities {
        padding: 20px 0;
    }

        .top-cities .section-header .title {
            font-size: 18px;
        }

        .top-cities .city-text {
            font-size: 11px;
            margin: 0 5px;
        }
}

/* BOTTOM FOOTER */
.bottom-footer {
    background: #0A0F1E;
    color: #cbd5e6;
    font-family: 'Inter', Arial, sans-serif;
    width: 100%;
}

    .bottom-footer .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .bottom-footer .newsletter-section {
        background: rgba(255, 255, 255, 0.03);
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bottom-footer .newsletter-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .bottom-footer .newsletter-title {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
    }

    .bottom-footer .newsletter-form {
        display: flex;
        background: #1a1f2e;
        border-radius: 50px;
        padding: 4px;
    }

        .bottom-footer .newsletter-form input {
            background: transparent;
            border: none;
            padding: 12px 20px;
            color: #fff;
            width: 250px;
            outline: none;
            font-size: 14px;
        }

        .bottom-footer .newsletter-form button {
            background: red;
            border: none;
            color: #fff;
            padding: 8px 28px;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

            .bottom-footer .newsletter-form button:hover {
                background: #f39c12;
            }

    .bottom-footer .main-footer {
        padding: 50px 0 30px 0;
    }

    .bottom-footer .footer-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
    }

    .bottom-footer .col h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 20px 0;
        letter-spacing: 0.5px;
    }

    .bottom-footer .col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .bottom-footer .col ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .bottom-footer .col ul li::before {
                content: "•";
                color: red;
                font-size: 14px;
                font-weight: bold;
            }

            .bottom-footer .col ul li a {
                color: #cbd5e6;
                text-decoration: none;
                font-size: 13px;
                transition: color 0.2s;
            }

                .bottom-footer .col ul li a:hover {
                    color: #ff0000;
                }

    .bottom-footer .logo-section {
        margin-bottom: 0;
    }

        .bottom-footer .logo-section .logo {
            margin-bottom: 15px;
        }

            .bottom-footer .logo-section .logo img {
                max-width: 250px;
            }

        .bottom-footer .logo-section .company-name {
            color: white;
            font-size: 11px;
            letter-spacing: 1.5px;
            margin: 0 0 8px 0;
        }

        .bottom-footer .logo-section .tagline {
            color: white;
            font-size: 10px;
            letter-spacing: 2px;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        .bottom-footer .logo-section .description {
            font-size: 12px;
            line-height: 1.6;
            color: #cbd5e6;
            margin: 0 0 20px 0;
        }

    .bottom-footer .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

        .bottom-footer .social-icons a {
            color: #cbd5e6;
            font-size: 16px;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .bottom-footer .social-icons a:hover {
                color: #ff0000;
                transform: translateY(-2px);
            }

    .bottom-footer .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .bottom-footer .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 13px;
            line-height: 1.5;
        }

            .bottom-footer .contact-list li::before {
                content: none;
            }

            .bottom-footer .contact-list li i {
                color: red;
                width: 18px;
                margin-top: 2px;
            }

            .bottom-footer .contact-list li a {
                color: #cbd5e6;
                text-decoration: none;
                transition: color 0.2s;
            }

                .bottom-footer .contact-list li a:hover {
                    color: #ff0000;
                }

    .bottom-footer .send-btn {
        background: transparent;
        border: 1px solid #e67e22;
        color: red;
        padding: 8px 30px;
        border-radius: 30px;
        cursor: pointer;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .bottom-footer .send-btn:hover {
            background: red;
            color: #fff;
        }

    .bottom-footer .footer-bottom {
        background: #0f172a;
        padding: 15px 0;
        margin-top: 20px;
        border-top: 1px solid #1e293b;
    }

    .bottom-footer .bottom-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bottom-footer .copyright {
        font-size: 12px;
        color: #7e8ba0;
    }

        .bottom-footer .copyright span {
            color: red;
        }

    .bottom-footer .footer-links {
        display: flex;
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .bottom-footer .footer-links a {
            color: #cbd5e6;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.2s;
        }

            .bottom-footer .footer-links a:hover {
                color: #ff0000;
            }

@media (max-width: 1200px) {
    .bottom-footer .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bottom-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bottom-footer .newsletter-flex {
        flex-direction: column;
        text-align: center;
    }

    .bottom-footer .bottom-flex {
        flex-direction: column;
        text-align: center;
    }

    .bottom-footer .footer-links {
        justify-content: center;
    }

    .bottom-footer .social-icons {
        justify-content: center;
    }

    .bottom-footer .logo-section {
        text-align: center;
    }

        .bottom-footer .logo-section .logo img {
            margin: 0 auto;
        }
}

/* ---------- WHATSAPP BUTTON (from final <style> block) ---------- */
.fixed-wa-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 32px;
    animation: pulse-green 2s infinite;
}

    .fixed-wa-btn:hover {
        transform: scale(1.1);
        background: #128C7E;
    }

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fixed-wa-btn::after {
    content: "WhatsApp";
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fixed-wa-btn:hover::after {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

@media (max-width: 768px) {
    .fixed-wa-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
}
