.questions-section {
    padding-top: 19px;  
    padding-bottom: 19px;
    position: relative;
    overflow: visible; 
}

.questions-image {
    position: absolute;   
    right: 0;
    top: -290px;          
    max-width: 120%;     
    height: auto;
    z-index: 1;           
}

@media (max-width: 991px) {

    /* Stack image on top, text below */
    .questions-section .row {
        flex-direction: column-reverse;
    }

    /* Center text nicely on mobile */
    .questions-section .col-lg-5 {
        text-align: left;
        margin-top: 30px;
    }

    /* Make image normal flow on mobile */
    .questions-image {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Remove fixed width on paragraph */
    .questions-section p {
        width: 100% !important;
    }
}


.features-section {
    padding: 80px 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* keeps image ratio */
    display: block;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

/* Image placeholder */
.feature-image {
    width: 260px;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;        /* IMPORTANT */
    flex-shrink: 0;
    background: #e0e0e0;
}

/* Text */
.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-width: 420px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text p {
        max-width: 100%;
    }
}

.vehicle-options {
    max-width: 500px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.vehicles-row {
    display: flex;
    justify-content: space-between;
    text-align: flex start;
}

.vehicle-item {
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vehicle-item img {
    width: 70px;
    height: 70px;          /* fixed box */
    object-fit: contain;  /* centers image */
    display: block;
}

.vehicle-item span {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Line under each item */
.vehicle-line {
    width: 60%;
    height: 4px;
    background: #eee;
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Active line */
.vehicle-item.active .vehicle-line {
    background: #ff6a3d;
}


.custom-icon-list li {
    position: relative;
    padding-left: 36px; /* space for icon */
}

.custom-icon-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("assets/images/speed-option-item.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.hours-of-service-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 991px) {
    .vehicles-row {
        flex-direction: column;   /* stack vertically */
        align-items: flex-start;
        gap: 25px;
    }

    .vehicle-item {
        width: 100%;
        max-width: 220px;
        align-items: flex-start;
    }

    .vehicle-line {
        width: 100%;
    }

    .what-customer-say {
        margin-left: 0 !important;   /* remove left gap */
    }

    .section-title,
    .what-customer-say h2 {
        text-align: left;
    }
}


/* Left side - Image section */
.image-section {
    background: linear-gradient(90deg, #ffffff 0%, #fce4d6 50%, #f5d9c8 100%);
    padding: 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

/* Background image "ZULU" */
.background-image {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 300px;
    /* background-image: url('assets/images/zulu-image.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.service-image {
    max-width: 100%;
    width: auto;
    height: 350px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin-left: 40px;
}

/* Right side - Orange content section */
.content-section {
    background-color: #ff5722;
    color: white;
    padding: 60px 80px 60px 120px;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Diagonal cut effect */
.content-section::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    width: 160px;
    background-color: #ff5722;
    transform: skewX(12deg);
    transform-origin: bottom;
    z-index: 0;
}

/* Typography */
.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.content-section .subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.content-section .hours-label {
    font-size: 1.1rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.content-section .hours-time {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 991px) {
    .image-section {
        min-height: 300px;
    }
    
    .service-image {
        height: 300px;
        margin-left: 30px;
    }
    
    .background-image {
        width: 400px;
        height: 240px;
    }
    
    .content-section {
        min-height: 300px;
        padding: 50px 40px 50px 80px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section .hours-time {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .image-section {
        padding: 30px 20px;
        justify-content: center;
        min-height: 250px;
    }
    
    .service-image {
        height: 250px;
        margin-left: 0;
    }
    
    .background-image {
        width: 300px;
        height: 180px;
        left: -30px;
    }
    
    .content-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .content-section::before {
        display: none;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section .hours-time {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .image-section {
        min-height: 200px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .background-image {
        width: 250px;
        height: 150px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section .subtitle,
    .content-section .hours-label {
        font-size: 0.95rem;
    }
    
    .content-section .hours-time {
        font-size: 1.2rem;
    }
}

.card-img-top1, .card-img-top2 {
    width: 60px;
    height: 60px;

    background-image: inherit;
    background-size: 30px 30px;
    background-position: center;
    background-repeat: no-repeat;       

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;     
}

.card-img-top1{
    background-color: #f2f2f2; 
    border-radius: 13px;
}

.card-img-top2{
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 13px;
}


.card-body1 {
    text-align: center;
}