/* ===== Home Page - WHY CHOOSE US===== */
/* ===== Home Page - WHY CHOOSE US===== */

/* Core Section Wrapping Layout */
.why-choose-section {
    background-color: #ffffff;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.why-choose-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* LEFT COLUMN STYLES */
.why-choose-left {
    text-align: center;
}

.why-tagline {
    display: block;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-heading {
    font-size: 2.8rem;
    color: #0b1d33;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.why-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Graphic Styles */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 51, 0.85));
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

/* RIGHT COLUMN STYLES */
.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
padding-left: 50px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.group-header h3 {
    font-size: 1.5rem;
    color: #0b1d33;
    font-weight: 700;
}

.header-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-blue { background-color: #eff6ff; color: #3b82f6; }
.icon-gray { background-color: #f1f5f9; color: #334155; }

/* List Component Setup */
.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.points-list li {
    display: flex;
    align-items: flex-start; /* Keeps check aligned to the top line if text wraps */
    gap: 14px;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.4;
}

/* Inline Checkmark Control rules */
.list-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px; /* Shifts check slightly down for flawless alignment */
}

.check-blue {
    color: #3b82f6; /* Bright vibrant blue checkmark */
}

.check-dark {
    color: #0b1d33; /* Dark navy checkmark */
}

/* Responsive configurations */
@media (max-width: 992px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-choose-right {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}


/* ===== Home Page - INVENTORY GRID===== */
/* ===== Home Page - INVENTORY GRID===== */

.homepageinventory .palette-bg2.inventory-header, .palette-bg2.inventory {
    background-color: #ffffff !important;
}

.homepageinventory .page-content-element .row {
    margin: 0;
    background: white !important;
}


/* ===== Home Page - FOUR BUTTONS===== */
/* ===== Home Page - FOUR BUTTONS===== */

/* Container layout */
.button-nav-group {
    display: flex;
    gap: 12px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

/* Base button styles */
.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    height: 54px; /* Fixed height to match image */
    min-width: 200px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Primary Button (Blue) */
.nav-btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
}

.nav-btn-primary:hover {
    background-color: #2563eb;
}

/* Outline Buttons (White with Border) */
.nav-btn-outline {
    background-color: #ffffff;
    color: #0b1d33;
    border: 1.5px solid #0b1d33;
}

.nav-btn-outline:hover {
    background-color: #f8fafc;
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Icon Sizing */
.nav-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .button-nav-group {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid on tablets */
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .button-nav-group {
        grid-template-columns: 1fr; /* Single column on phones */
    }
    .nav-btn {
        width: 100%;
    }
}


/* ===== Home Page - Used Work Vans, Cargo Vans and Passenger Vans for Texas===== */
/* ===== Home Page - Used Work Vans, Cargo Vans and Passenger Vans for Texas===== */

/* Section Wrapper */
.vans-info-section {
    background-color: #f8fafc; /* Very light background color matching the image */
    color: #0b1d33; /* Dark blue/navy text color */
    padding: 50px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Content Container */
.vans-container {
    max-width: 900px; /* Wider container to allow comfortable reading spans */
    width: 100%;
}

/* Main Heading */
.vans-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

/* Badge/Button Wrap */
.vans-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Blue Pills/Badges */
.badge-link {
    display: inline-block;
    background-color: #3b82f6; /* Matching blue */
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px; /* Fully rounded pill look */
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.badge-link:hover {
    background-color: #2563eb;
}

/* Paragraph Blocks */
.vans-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569; /* Muted slate color for body text readability */
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Bottom Highlighted Statement */
.vans-content p.vans-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 0;
    margin-top: 32px;
    
    /* Forces the text to stay on a single line */
    white-space: nowrap; 
    display: block;
}

/* Optional: Ensures it doesn't break your page layout on small mobile screens */
@media (max-width: 768px) {
    .vans-content p.vans-highlight {
        white-space: normal; /* Allows it to wrap naturally on mobile so it doesn't clip off the screen */
        font-size: 1rem;
    }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .vans-heading {
        font-size: 2rem;
    }
    
    .vans-info-section {
        padding: 60px 20px;
    }
}



/* ============  Home Page - Get In Touch ============= */
/* ============  Home Page - Get In Touch ============= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Section Wrapper */
.cta-section {
    background-color: #0b1d33; /* Dark blue background matching image_0c1943.png */
    color: #ffffff !important;
    padding: 50px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Content Container */
.cta-container {
    max-width: 720px;
    width: 100%;
}

/* Typography */
.cta-subheading {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
color:white !important;
}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 36px;
    font-weight: 400;
}

/* Action Buttons Wrapper */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Base Button Layout */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Primary Button (Contact Us) */
.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #2563eb;
}

/* Secondary Button (Phone Number) */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* SVG Icon Controls */
.icon-arrow, .icon-phone {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* ===== Homepage vehicle card css ===== */
/* ===== Homepage vehicle card css ===== */

@media (max-width: 768px) {
    .engine {
        left: 20px;
    }
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    padding: 20px;
}

.vehicle-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a77b8;
}

.vehicle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 48, 97, 0.35);
}

.vehicle-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,0)
    );
}

.card-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2;
}

.card-content h3 {
    margin: 0;
    color: #fff !important;
    font-size: 18px;
}

.card-content p {
    margin: 4px 0 0;
    color: #4da3ff;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
}

/*Other css */
/*Other css */

.element-outer-container.element-type-customhtml {
    padding: 8px 15px 4px 15px;
    color: white !important;
    background: white !important;
}

.darkbluebackground .element-outer-container.element-type-customhtml {
    padding: 8px 15px 4px 15px;
    color: white !important;
    background: #0b1d33 !important;
}