/* ═══════════════════════════════════════════════════
   ASAP FOOD TRAILER — CUSTOM STYLES
   Premium overrides for the Logicx Theme 2 base
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
    --asap-orange: #ff6b00;
    --asap-orange-light: #ff8c33;
    --asap-dark: #1a1a2e;
    --asap-dark-deep: #0a0a0a;
    --asap-gray: #6c757d;
    --asap-gray-light: #f8f9fa;
    --asap-radius: 12px;
    --asap-radius-lg: 20px;
    --asap-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --asap-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --asap-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── GLOBAL TYPOGRAPHY ─── */
body {
    font-family: 'Inter', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif !important;
}

/* ─── THEME BUTTON OVERRIDES ─── */
.theme-btn1 {
    border-radius: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    transition: var(--asap-transition) !important;
}

.theme-btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

/* ─── TRUCK CARD COMPONENT ─── */
.asap-truck-card {
    background: #fff;
    border-radius: var(--asap-radius-lg);
    overflow: hidden;
    box-shadow: var(--asap-shadow);
    transition: var(--asap-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.asap-truck-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--asap-shadow-lg);
}

.truck-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.truck-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.asap-truck-card:hover .truck-card-image img {
    transform: scale(1.05);
}

.truck-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.truck-card-badges .badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.truck-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.truck-card-body h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.truck-card-body h5 a {
    color: var(--asap-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.truck-card-body h5 a:hover {
    color: var(--asap-orange);
}

.truck-card-desc {
    color: var(--asap-gray);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 12px;
}

.truck-card-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.truck-card-specs span {
    font-size: 0.8rem;
    color: var(--asap-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.truck-card-specs i {
    color: var(--asap-orange);
    font-size: 0.85rem;
}

.truck-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.truck-price .price {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--asap-dark);
    font-family: 'Outfit', sans-serif;
}

.truck-price small {
    color: var(--asap-gray);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ─── PRICE TAG (Detail page) ─── */
.asap-price-tag .price-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--asap-orange);
}

.asap-price-tag .price-period {
    font-size: 1rem;
    color: var(--asap-gray);
    font-weight: 500;
}

/* ─── SPECS SECTION ─── */
.asap-specs-section {
    background: #fff;
    border-radius: var(--asap-radius-lg);
    padding: 40px;
    box-shadow: var(--asap-shadow);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--asap-gray-light);
    border-radius: var(--asap-radius);
    transition: var(--asap-transition);
}

.spec-item:hover {
    background: #fff;
    box-shadow: var(--asap-shadow);
    transform: translateY(-2px);
}

.spec-item i {
    font-size: 1.4rem;
    color: var(--asap-orange);
    flex-shrink: 0;
}

.spec-label {
    display: block;
    font-size: 0.78rem;
    color: var(--asap-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--asap-dark);
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
    padding: 6px 0;
}

/* ─── DETAIL PAGE ─── */
.asap-detail-info {
    padding: 10px 0 10px 20px;
}

/* ─── FILTERS SIDEBAR ─── */
.asap-filters-sidebar {
    background: #fff;
    border-radius: var(--asap-radius-lg);
    padding: 30px;
    box-shadow: var(--asap-shadow);
    position: sticky;
    top: 120px;
}

.asap-filters-sidebar .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--asap-dark);
    margin-bottom: 6px;
}

.asap-filters-sidebar .form-select,
.asap-filters-sidebar .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.asap-filters-sidebar .form-select:focus,
.asap-filters-sidebar .form-control:focus {
    border-color: var(--asap-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* ─── TESTIMONIAL CARD ─── */
.asap-testimonial-card {
    background: #fff;
    border-radius: var(--asap-radius-lg);
    padding: 32px;
    box-shadow: var(--asap-shadow);
    transition: var(--asap-transition);
    height: 100%;
}

.asap-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--asap-shadow-lg);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.testimonial-author h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--asap-gray);
}

/* ─── SUB-TITLE ACCENT ─── */
.sub-title2 {
    color: var(--asap-orange) !important;
}

/* ─── COUNTERS OVERRIDE ─── */
.counters2-box .icon {
    margin-bottom: 8px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6b00, #ff8c33);
}

.counters2-box .icon i {
    color: #fff !important;
    font-size: 1.6rem !important;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--asap-orange);
}

/* ─── FORM FOCUS ─── */
.form-control:focus,
.form-select:focus {
    border-color: var(--asap-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1) !important;
}

/* ─── BREADCRUMB ─── */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4) !important;
    content: "/" !important;
}

.breadcrumb-item a {
    text-decoration: none;
}

/* ─── FOOTER SOCIAL ICONS ─── */
.vl-copyright-social2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    margin-right: 6px;
}

.vl-copyright-social2 a:hover {
    background: var(--asap-orange);
    color: #fff !important;
    transform: translateY(-3px);
}

.vl-copyright-social2 a i {
    color: #fff !important;
}

/* ─── FOOTER ─── */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list li a:hover {
    color: var(--asap-orange);
}

/* ─── HEADER STICKY OVERRIDE ─── */
.vl-header-area1.sticky {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.vl-header-area1.sticky .vl-main-menu ul>li>a,
.vl-header-area1.sticky .header-contact-number a {
    color: var(--asap-dark) !important;
}

.vl-header-area1.sticky .header1-logo.d-none.d-lg-block {
    display: none !important;
}

.vl-header-area1.sticky .header1-logo.d-block.d-lg-none {
    display: block !important;
}

/* ─── MOBILE OFFCANVAS ─── */
.vl-offcanvas-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vl-offcanvas-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--asap-dark);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
}

.vl-offcanvas-menu ul li a:hover {
    color: var(--asap-orange);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* Tablet (768px) */
@media (max-width: 991px) {
    .asap-filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .asap-detail-info {
        padding: 30px 0 0 0;
    }

    .asap-specs-section {
        padding: 24px;
    }

    .hero2-slider-btns {
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile (576px) */
@media (max-width: 767px) {
    .truck-card-image {
        height: 180px;
    }

    .truck-card-body {
        padding: 16px;
    }

    .truck-card-body h5 {
        font-size: 0.95rem;
    }

    .truck-card-specs {
        gap: 8px;
    }

    .truck-price .price {
        font-size: 1.1rem;
    }

    .asap-price-tag .price-amount {
        font-size: 1.8rem;
    }

    .asap-specs-section {
        padding: 20px;
    }

    .spec-item {
        padding: 12px;
    }

    .asap-testimonial-card {
        padding: 24px;
    }

    .hero2-heading h1 {
        font-size: 2rem !important;
    }

    .hero2-content {
        padding: 140px 0 80px !important;
    }

    .hero2-slider-btns {
        display: none;
    }

    .asap-contact-form {
        padding: 24px !important;
        margin-top: 30px;
    }

    .asap-filters-sidebar {
        padding: 20px;
    }

    .counters2-box {
        margin-bottom: 20px;
    }

    .inner-hero {
        padding: 140px 0 60px !important;
    }
}

/* Small mobile (375px) */
@media (max-width: 480px) {
    .truck-card-image {
        height: 160px;
    }

    .hero2-heading h1 {
        font-size: 1.75rem !important;
    }

    .hero2-heading p {
        font-size: 0.95rem !important;
    }

    .button .theme-btn1 {
        font-size: 0.85rem;
        padding: 12px 20px;
    }

    .asap-specs-section h4 {
        font-size: 1.1rem;
    }
}