﻿:root {
    --bs-body-font-family: 'Inter',sans-serif;
    --orange: #F2611A;
    --orange-dark: #D8500F;
    --ink: #161616;
    --cream: #FFF6F0;
    --gray-bg: #F7F6F4;
    --text-muted: #6B6560;
    --green: #25D366;
}

/* Hide the div by default on desktop/large screens */
.mobile-only {
    display: none;
}

/* Show the div on screens that are 768px wide or smaller */
@media screen and (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Fleet */
.fleet-photo {
    height: 90px;
    overflow: hidden;
    background: #eee;
}

    .fleet-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.fleet-body h4 {
    font-weight: 700;
    font-size: .82rem;
}

.fleet-body p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Footer */
footer {
    color: rgba(255,255,255,.7);
}

    footer h5 {
        font-family: 'Poppins',sans-serif;
        font-weight: 700;
        font-size: .82rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    footer ul li {
        margin-bottom: .55rem;
        font-size: .83rem;
        color: rgba(255,255,255,.6);
    }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #fff;
}


/* Why */
.why-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border-radius: 12px;
    padding: .85rem 1rem;
    border: 1px solid #EAE7E2;
    height: 100%;
}

    .why-item i {
        color: var(--orange);
        font-size: 20px;
    }

    .why-item span {
        font-size: .85rem;
        font-weight: 600;
    }

/* Services - horizontal scroll on mobile */
.svc-scroll {
    display: flex;
    overflow-x: auto;
    gap: .9rem;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .svc-scroll::-webkit-scrollbar {
        display: none;
    }

.svc-card {
    flex: 0 0 62%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #EAE7E2;
    border-radius: 16px;
    overflow: hidden;
}

@media(min-width:576px) {
    .svc-card {
        flex: 0 0 42%;
    }
}

@media(min-width:992px) {
    .svc-scroll {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        overflow: visible;
    }

    .svc-card {
        flex: auto;
    }
}

.svc-photo {
    height: 100px;
    position: relative;
    overflow: hidden;
    background: #eee;
}

    .svc-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.svc-icon {
    position: absolute;
    bottom: 15px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 14px rgba(242,97,26,.4);
}

.svc-body {
    padding: 1.3rem .9rem .9rem;
}

    .svc-body h4 {
        font-weight: 700;
        font-size: .95rem;
    }

    .svc-body p {
        font-size: .78rem;
        color: var(--text-muted);
        margin-top: .3rem;
    }

.svc-link {
    font-weight: 700;
    font-size: .78rem;
    color: var(--orange-dark);
    font-family: 'Poppins',sans-serif;
}

.scroll-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: .75rem;
}

    .scroll-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #DDD8D2;
    }

        .scroll-dots span:first-child {
            background: var(--orange);
            width: 16px;
            border-radius: 4px;
        }

@media(min-width:992px) {
    .scroll-dots {
        display: none;
    }
}



