/*=========================================
        Local Taxi Service Page
=========================================*/

.lts-page-section {

    padding: 100px 0;

    background: #ffffff;

}

/*=========================================
        Image
=========================================*/

.lts-page-image {

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.lts-page-image img {

    width: 100%;

    display: block;

    transition: .5s;

}

.lts-page-image:hover img {

    transform: scale(1.05);

}

/*=========================================
        Content
=========================================*/

.lts-page-content {

    padding-left: 35px;

}

.lts-page-subtitle {

    display: inline-block;

    background: #fff7df;

    color: #FDB913;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    padding: 8px 18px;

    border-radius: 50px;

    margin-bottom: 20px;

}

.lts-page-title {

    font-size: 42px;

    font-weight: 700;

    color: #222;

    line-height: 1.3;

    margin-bottom: 25px;

}

.lts-page-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 18px;

    font-size: 16px;

}

.lts-page-content strong {

    color: #222;

    font-weight: 700;

}

/*=========================================
        Feature Box
=========================================*/

.lts-page-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 35px 0;

}

.lts-page-feature {

    display: flex;

    align-items: center;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    padding: 15px 18px;

    transition: .3s;

    font-weight: 600;

    color: #444;

}

.lts-page-feature:hover {

    background: #fff8e6;

    border-color: #FDB913;

    transform: translateY(-4px);

}

.lts-page-feature i {

    color: #FDB913;

    margin-right: 12px;

    font-size: 18px;

}

/*=========================================
        Button
=========================================*/

.lts-page-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #FDB913;

    color: #222;

    text-decoration: none;

    font-weight: 700;

    padding: 16px 34px;

    border-radius: 50px;

    transition: .35s;

    box-shadow: 0 12px 30px rgba(253, 185, 19, .35);

}

.lts-page-btn i {

    font-size: 22px;

    margin-right: 10px;

}

.lts-page-btn:hover {

    background: #222;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);

}

/*=========================================
        Responsive
=========================================*/

@media(max-width:1199px) {

    .lts-page-title {

        font-size: 38px;

    }

}

@media(max-width:991px) {

    .lts-page-section {

        padding: 80px 0;

    }

    .lts-page-content {

        padding-left: 0;

        margin-top: 40px;

    }

    .lts-page-title {

        font-size: 34px;

    }

}

@media(max-width:767px) {

    .lts-page-section {

        padding: 70px 0;

    }

    .lts-page-title {

        font-size: 30px;

    }

    .lts-page-features {

        grid-template-columns: 1fr;

    }

}

@media(max-width:575px) {

    .lts-page-section {

        padding: 60px 0;

    }

    .lts-page-title {

        font-size: 27px;

    }

    .lts-page-content p {

        font-size: 15px;

    }

    .lts-page-feature {

        padding: 14px 16px;

        font-size: 15px;

    }

    .lts-page-btn {

        width: 100%;

        padding: 15px 20px;

    }

}

@media(max-width:420px) {

    .lts-page-title {

        font-size: 24px;

    }

    .lts-page-subtitle {

        font-size: 13px;

    }

}


/*=========================================
        Local Taxi CTA
=========================================*/

.lts-cta-section {

    padding: 100px 0;

    background: #ffffff;

}

.lts-cta-box {

    background: linear-gradient(135deg, #FDB913, #f7a600);

    border-radius: 22px;

    padding: 60px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

    position: relative;

    overflow: hidden;

}

.lts-cta-box::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    background: rgba(255, 255, 255, .12);

    border-radius: 50%;

    top: -120px;

    right: -100px;

}

.lts-cta-subtitle {

    display: inline-block;

    background: rgba(255, 255, 255, .2);

    color: #222;

    font-weight: 600;

    padding: 8px 18px;

    border-radius: 30px;

    margin-bottom: 20px;

}

.lts-cta-box h2 {

    font-size: 42px;

    font-weight: 700;

    color: #222;

    margin-bottom: 20px;

}

.lts-cta-box p {

    color: #333;

    line-height: 1.9;

    margin-bottom: 30px;

}

.lts-cta-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.lts-cta-list li {

    margin-bottom: 14px;

    font-weight: 600;

    color: #222;

}

.lts-cta-list li i {

    color: #ffffff;

    margin-right: 10px;

}

.lts-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: #fff;

    padding: 18px 38px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    transition: .35s;

    box-shadow: 0 12px 30px rgba(37, 211, 102, .35);

}

.lts-cta-btn i {

    margin-right: 10px;

    font-size: 24px;

}

.lts-cta-btn:hover {

    background: #159947;

    color: #fff;

    text-decoration: none;

    transform: translateY(-5px);

}

/*=========================================
        Responsive
=========================================*/

@media(max-width:991px) {

    .lts-cta-box {

        padding: 45px 35px;

        text-align: center;

    }

    .lts-cta-box h2 {

        font-size: 34px;

    }

    .lts-cta-btn {

        margin-top: 30px;

    }

}

@media(max-width:767px) {

    .lts-cta-section {

        padding: 70px 0;

    }

    .lts-cta-box {

        padding: 35px 25px;

    }

    .lts-cta-box h2 {

        font-size: 28px;

    }

}

@media(max-width:575px) {

    .lts-cta-btn {

        width: 100%;

    }

    .lts-cta-box h2 {

        font-size: 24px;

    }

}



