* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
}

.container {
    width: 90%;
    max-width: 1700px;
    margin: auto;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(7,26,53,.35);
    backdrop-filter: blur(12px);
    transition: .4s;
}

    .main-header.scrolled {
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

.header-wrapper {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.main-header.scrolled nav a {
    color: #071A35;
}

nav a:hover {
    color: #129CE1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.main-header.scrolled .header-phone {
    color: #071A35;
}

.btn-quote {
    background: #129CE1;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .btn-quote:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(18,156,225,.3);
    }

.footer {
    background: linear-gradient( rgba(4,15,40,.95), rgba(4,15,40,.98) ), url('/images/hcc-truck-bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 30px;
    color: #fff;
}

.footer-cta {
    position: relative;
    margin-bottom: -70px;
    z-index: 10;
}

.footer-cta-box {
    background: linear-gradient( 135deg, #129CE1, #2563eb );
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 60px rgba(18,156,225,.35);
}

    .footer-cta-box h2 {
        color: white;
        margin: 10px 0 0;
        font-size: 38px;
    }

.cta-btn {
    background: white;
    color: #129CE1;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 700;
}
.copyright {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 20px;
}
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

    .floating-actions a {
        background: #129CE1;
        color: white;
        padding: 12px 18px;
        border-radius: 8px;
        text-decoration: none;
    }
@media(max-width:768px) {

    .services-grid,
    .why-grid,
    .vehicle-grid,
    .stats-grid,
    .shipment-details {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero h1 {
        font-size: 40px;
    }
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

    .floating-actions a {
        color: white;
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 8px;
    }

.wa-btn {
    background: #25D366;
}

.call-btn {
    background: #129CE1;
}

#loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s;
}

    .reveal.active {
        opacity: 1;
        transform: none;
    }

.page-banner {
    padding: 180px 0 100px;
    background: linear-gradient( rgba(11,31,58,.85), rgba(11,31,58,.85) ), url('/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

    .page-banner h1 {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .page-banner p {
        font-size: 20px;
        max-width: 700px;
        margin: auto;
    }

.footer {
    position: relative;
    background: linear-gradient( rgba(0,0,0,.82), rgba(0,0,0,.88) ), url('/images/hcc_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 25px;
}

    .footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.15);
    }

    .footer .container {
        position: relative;
        z-index: 2;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 14px;
    }

        .footer ul li a {
            color: #e5e7eb;
            text-decoration: none;
            transition: .3s;
        }

            .footer ul li a:hover {
                color: #129CE1;
                padding-left: 5px;
            }

.footer-social {
    margin-top: 20px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: white;
        margin-right: 10px;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #129CE1;
            transform: translateY(-3px);
        }

.footer-contact p {
    margin-bottom: 15px;
    color: #e5e7eb;
    line-height: 1.7;
}

.footer-contact i {
    color: #129CE1;
    width: 25px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
    font-size: 14px;
}

@media(max-width:991px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: .3s ease;
}

    .float-btn i {
        font-size: 18px;
    }

    .float-btn:hover {
        transform: translateX(-8px);
    }

.whatsapp-btn {
    background: linear-gradient( 135deg, #25D366, #128C7E );
}

.call-btn {
    background: linear-gradient( 135deg, #129CE1, #2563eb );
}

.track-btn {
    background: linear-gradient( 135deg, #7c3aed, #9333ea );
}

.whatsapp-btn {
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}