/* ===================================================
    Table of Contents
=====================================================
    1.0 About Section
		1.1 Video Box
	2.0 Services Section
		2.1 Swiper Navigation
		2.2 Swiper Dots
		2.3 Service Details
		2.4 Service Sidebar
	3.0 Booking Section
		3.1 Booking Car
		3.2 Date Time Picker
		3.3 Booking Form
	4.0 Pricing Section
		4.1 Pricing Tab Menu
    5.0 Taxi Details
	6.0 Download Section
		6.1 Download Section 2
	7.0 Testimonials Section
	8.0 CTA Section
		8.1 CTA Section 2
	9.0 Team Section
	10.0 Taxi Booking Form
	11.0 Faq's Section
	12.0 Contact Section
	13.0 Footer Section
		13.1 Mid Footer
		13.2 Subscribe Form
		13.3 Copyright Section
=====================================================
    Main CSS
==================================================== */

body, html{
    overflow-x: hidden;
}

/*=== 1.0 About Section ===*/
.about-section{
    position: relative;
}

.about-section::before {
    content:'';
    position: absolute;
    background: #f4f1ea;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.9;
}

.pattern-bg {
    width: 100%;
    height: 50px;
    background-color: var(--cityride-white, #FFFFFF);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite;
}


@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes cloudMoveY {
  0% {
    background-position: 100% 1920px;
  }
  100% {
    background-position: 100% 0;
  }
}

.about-section .section-heading h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
}

.about-img{
    position: relative;
    z-index: 1;
}

.about-img:before {
    background-color: #f9b702;
    border-radius: 2px;
    transform: skew(-20deg, 0deg);
    /*content: "";*/
    width: 200px;
    height: calc(100% + 70px);
    position: absolute;
    right: 200px;
    bottom: -80px;
    z-index: -1;
}

.about-img img {
    border-radius: 16px;
}

.about-img .about-img1 {
    max-width: 300px;
    transform: translate(20px, 40px);
}

.about-img .about-img2 {
    max-width: 200px;
    position: absolute;
    right: 80px;
    bottom: 0;
}

.round-text {
    position: absolute;
    right: 100px;
    top: 0;
}

.round-text img {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.round-text:before {
    background-image: url(../img/location-marker.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30%;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-info {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}

.about-info li {
    display: flex;
    column-gap: 15px;
}

.owner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.signature {
    width: 140px;
}

.about-info li h2 a {
    color: #f9b702;
    font-weight: 700;
    margin: 0;
}

.owner h4,
.about-info li h2 span {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #151515;
    display: block;
    margin-bottom: 5px;
}

.owner h4 {
    margin: 0;
}

/*=== 1.1 Video Box ===*/
.video-box-inner {
    position: relative;
    text-align: right;
}

.video-box-inner>img {
    width: 400px;
    border-radius: 5px;
}

.video-box {
    width: 250px;
    border-radius: 5px;
    position: absolute;
    left: 30px;
    bottom: -30px;
}

.video-box>img {
    width: 100%;
    border-radius: 5px;
}

.video-box .play-btn {
    background-color: #f9b702;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.video-box .play-btn svg {
    fill: #fff;
    width: 40px;
    margin-left: 5px;
}

.video-box .play-btn .ripple,
.video-box .play-btn .ripple:before,
.video-box .play-btn .ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -webkit-animation: rippleanim 3s infinite;
    -moz-animation: rippleanim 3s infinite;
    -ms-animation: rippleanim 3s infinite;
    -o-animation: rippleanim 3s infinite;
    animation: rippleanim 3s infinite;
}

.video-box .play-btn .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.video-box .play-btn .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@media (max-width: 992px){
    .video-box {
        width: 100%;
        position: relative;
        left: 0;
        bottom: 0;
    }
}


@media (max-width: 767px){
    .video-box {
        margin-top: 30px;
    }
}


/* =========================================
   FEATURE STATS SECTION
========================================= */

.feature-stats-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.feature-stats-box {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 330px;
    background: url(/wp-content/uploads/2026/08/ride-info-bg-1-1.webp);
    position: relative;
}

.feature-stats-box::before {
    content: '';
    position:absolute;
    background:rgba(255, 255, 255, .6);
    top:0;
    bottom:0;
    left:0;
    right:0
}

/* =========================================
   YELLOW OUTER BORDER
========================================= */

.feature-border {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid #f9b702;
    pointer-events: none;
    z-index: 1;
}


/* =========================================
   LEFT FEATURES
========================================= */

.feature-stats-content {
    position: relative;
    z-index: 3;

    width: 75%;

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

    padding: 50px 40px;
}


/* Individual Feature */

.feature-stat-item {
    width: 33.333%;
    text-align: center;
    padding: 0 15px;
}


/* =========================================
   YELLOW ICON
========================================= */

.feature-stat-icon {
    width: 100px;
    height: 100px;

    margin: 0 auto 30px;

    border-radius: 50%;
    background: #f9b702;

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

.feature-stat-icon i {
    font-size: 48px;
    line-height: 1;
    color: #0B0B0B;
}


/* =========================================
   FEATURE TITLE
========================================= */

.feature-stat-item h3 {
    margin: 0;

    font-size: 24px;
    line-height: 1.35;

    font-weight: 700;
    color: #0B0B0B;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.feature-stats-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 28%;
    height: 100%;

    z-index: 4;

    overflow: hidden;

    /*
     * This creates the diagonal left edge.
     */
    clip-path: polygon(
        12% 0,
        100% 0,
        100% 100%,
        0% 100%
    );
}

.feature-stats-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   YELLOW DIAGONAL LINE
========================================= */

.feature-stats-image::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 0;

    width: 2px;

    background: #f9b702;

    z-index: 5;

    transform: skewX(-10deg);
    transform-origin: top;
}

/*=== 2.0 Services Section ===*/
.service-section {
    position: relative;
    z-index: 1;
}

.service-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.service-item:hover img {
    transform: scale(1.1);
}

.bg-half {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 59.54%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.bg-half:before {
    background-color: rgba(2, 2, 2, 0.7);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home .service-section .section-heading P {
    color: #ddd;
}

.service-item {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
}

.service-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-thumb img {
    object-position: center;
    height: 100%;
    object-fit: cover;
}

.service-shape-wrap {
    transform: skew(-20deg, 0deg);
    width: 200px;
    height: 200px;
    position: absolute;
    right: 20px;
    bottom: 0;
    overflow: hidden;
}

.service-shape {
    background-color: #f9b702;
    border-radius: 2px;
    position: absolute;
    width: 80px;
    height: 180px;
    left: 80px;
    bottom: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .1s;
}

.service-shape:before {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 80px;
    height: 140px;
    position: absolute;
    right: 60px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .2s;
}

.service-shape:after {
    background-color: #222;
    border-radius: 2px;
    content: "";
    width: 40px;
    height: 120px;
    position: absolute;
    right: -20px;
    bottom: 0;
    opacity: 0.95;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    transition-delay: .3s;
}

.service-item:hover .service-shape {
    height: 200px;
}

.service-item:hover .service-shape:before {
    height: 160px;
}

.service-item:hover .service-shape:after {
    height: 140px;
}

.service-car {
    position: absolute;
    right: -30px;
    bottom: -30px;
    max-width: 230px;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.service-item:hover .service-car {
    bottom: -35px;
    right: 0;
}

.service-content {
    background-color: #fff;
}

.service-content h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.service-content h3 a:hover {
    color: #f9b702;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content .read-more {
    background-color: #f9b702;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    height: 45px;
    padding: 0 23px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-content .read-more:before {
    background-color: #222;
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 300ms cubic-bezier(.165, .85, .45, 1);
    z-index: -1;
}

.service-content .read-more:hover:before {
    width: 100%;
}
.service-content ul, .area-content ul, .about-description ul, .page-content ul {
   margin-bottom: 20px;
    list-style: circle;
    padding-left: 30px;
    line-height: 30px;
}

.service-item .service-content {
    padding: 30px;
}

@media (min-width: 1400px){
    .bg-half{
        height: 59.2%;
    }
}

/*=== 2.1 Swiper Navigation ===*/
.swiper-outside {
    padding: 0;
    position: relative;
}

.swiper-container {
    overflow: hidden;
}

.swiper-outside .swiper-nav {
    color: #222;
    font-size: 35px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: -45px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.swiper-outside .swiper-nav:before {
    background-color: #f9b702;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.swiper-outside .swiper-nav.swiper-prev {
    justify-content: flex-end;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.swiper-outside .swiper-nav.swiper-next {
    clip-path: polygon(100% 50%, 0 100%, 0 0);
    left: auto;
    right: -45px;
}

.swiper-outside:hover .swiper-nav{
    visibility: visible;
    opacity: 1;
    left: -50px;
}
.swiper-outside:hover .swiper-nav.swiper-next{
    left: auto;
    right: -50px;
}

/*=== 2.2 Swiper Dots ===*/
.service-carousel .swiper-pagination {
    bottom: 0;
    line-height: 1;
}

.swiper-pagination span {
    background-color: #222;
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #f9b702;
    box-shadow: 0px 0px 0px 3px rgba(255, 153, 0, 0.5);
}

/*=== 2.3 Service Details ===*/
.service-details-info img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features li i {
    font-size: 50px;
    color: #f9b702;
}

.service-features li h3 {
    margin-bottom: 0;
}

.service-features li p {
    margin-bottom: 0;
}

.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 30px;
}

.service-details-list img {
    height: 220px;
    margin: 0;
}

.service-icon-list li i {
    font-size: 20px;
    color: #f9b702;
}

.service-icon-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

/*=== 2.4 Service Sidebar ===*/
.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f5f8;
    padding: 8px 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
    background-color: #f9b702;
}

.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    font-size: 17px;
    font-weight: 500;
}

.service-sidebar ul li a:hover {
    color: #222;
}

.service-sidebar ul li i {
    font-size: 20px;
    color: #f9b702;
}

.service-sidebar ul li:hover i {
    color: #fff;
}

/*=== 3.0 Booking Section ===*/
.booking-section {
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.booking-section:before {
    background-color: #f9b702;
    content: "";
    width: 300px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.booking-section:after {
    background-color: #F4F5F8;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    content: "";
    width: 400px;
    height: 80px;
    position: absolute;
    right: 0;
    top: -1px;
}

/*=== 3.1 Booking Car ===*/
.booking-car {
    background-image: url(../img/car-2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 85%;
    width: 780px;
    height: 439px;
    position: absolute;
    left: -280px;
    top: 50px;
    z-index: -1;
}

.booking-wrap .section-heading h2 {
    font-size: 40px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 1;
}

.booking-form .form-field {
    position: relative;
}

.booking-form .niceSelect .current,
.booking-form .form-field input {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 50px;
    padding: 0 35px 0 20px;
    font-size: 17px;
    line-height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
}

.booking-form .form-field input:focus {
    border: 1px solid #f9b702;
}

.booking-form .form-field i {
    color: #f9b702;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.booking-form .form-field button {
    width: 100%;
    height: 50px;
}

.booking-form .niceSelect {
    padding: 0;
    border: none;
    width: 100%;
    height: auto;
    font-size: 17px;
    color: #fff;
}

.booking-form .niceSelect .current {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0 20px;
}

.booking-form .niceSelect .list {
    background-color: #333;
    width: 100%;
    border-radius: 0;
    margin-top: -2px;
    border: none;
}

.booking-form .niceSelect .list li {
    font-size: 14px;
}

.booking-form .niceSelect .list li:not(:last-of-type) {
    border-bottom: 1px solid #444;
}
.booking-form .submit-field input {
    background-color: #f9b702;
    border-color: #f9b702;
    width: auto;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f9b702;
    font-weight: normal;
}
.booking-form .submit-field {
    grid-column: span 3;
    text-align: center;
}
.nice-select:after {
    display: none;
}

/*=== 3.2 Date Time Picker ===*/
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: #f9b702;
    box-shadow: #f9b702 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
    background: #222 !important;
    color: #fff;
}

.booking-section .wpcf7-response-output, .contact-form .wpcf7-response-output {
    border: none !important;
    color: #f00;
    margin: 0 !important;
    text-align: center;
}

/*=== 3.3 Booking Form ===*/
.booking-form-2 {
    position: relative;
    margin-top: -100px;
    margin-bottom: 80px;
    z-index: 1;
}

.booking-form-2:before {
    background-color: #222;
    clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.booking-car-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: calc(100% - 2px);
    overflow: hidden;
}

.booking-car-wrap:before {
    background-color: #f9b702;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: "";
    width: 330px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.booking-form-2 .booking-car {
    background-size: 70%;
    left: -130px;
    top: 10px;
    z-index: 0;
}

.booking-form-2 .col-lg-8 {
    padding: 60px;
}

@media (max-width: 767px) {
    .booking-form-2:before {
        clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
    }
}

/*=== 4.0 Pricing Section ===*/
.pricing-item {
    background-color: #fff;
    padding: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing-head-wrap {
    position: relative;
    z-index: 1;
}

.pricing-head-wrap:before {
    background-image: url(../img/pricing-bg.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head-wrap:after {
    background-color: rgba(34, 34, 34, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head {
    text-align: center;
}

.pricing-head h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0;
}

.pricing-head h3 a:hover {
    color: #222;
}

.pricing-head .location {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-car {
    text-align: center;
    padding: 60px 25px 20px;
    position: relative;
    z-index: 1;
}

.pricing-car .price {
    background-color: #f9b702;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 10px 15px 10px 25px;
    position: absolute;
    right: 40px;
    top: 55px;
    z-index: -1;
}

.pricing-list {
    padding: 20px 40px 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.pricing-list li a.default-btn {
    width: 100%;
    margin-top: 20px;
}


/*=== 4.1 Pricing Tab Menu ===*/
.pricing-tab-menu {
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-tab-menu li {
    position: relative;
}

.pricing-tab-menu li .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #999;
    padding: 0;
}

.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
    color: #222;
}

.pricing-tab-menu li:not(:last-of-type) {
    padding-right: 80px;
}

.pricing-tab-menu li:not(:last-of-type):before {
    background-color: #ccc;
    width: 50px;
    height: 2px;
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.tab-pane.active.show .row>div {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fade-in-bottom;
    animation-name: fade-in-bottom;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
    transition: all 0.2s ease-in-out;
    transition-duration: 800ms;
    animation-delay: 0.1s;
}

.tab-pane.active.show .row>div:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-pane.active.show .row>div:nth-child(3) {
    animation-delay: 0.3s;
}

/*=== 5.0 Taxi Details ===*/
.taxi-details-img {
    position: relative;
}

.taxi-details-img:before {
    background-color: #f9b702;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.taxi-details-img img {
    margin-left: -50px;
    margin-top: 100px;
}

.taxi-details-img .price {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    width: auto;
    padding: 15px 25px;
    position: absolute;
    right: 120px;
    top: 110px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: -1;
}

.taxi-details-img .price i {
    font-size: 25px;
    color: #f9b702;
    margin-right: 5px;
}

.taxi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    row-gap: 15px;
    margin-top: 30px;
}

.taxi-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.taxi-features li span {
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
}

.taxi-features li span i {
    color: #f9b702;
    font-size: 25px;
    margin-right: 5px;
}

/*=== 6.0 Download Section ===*/
.download-section {
    position: relative;
    overflow: hidden;
}

.app-feature {
    margin-top: 20px;
}

.app-feature li {
    display: inline-block;
    align-items: center;
}

.app-feature li:not(:last-of-type) {
    margin-right: 20px;
}

.app-feature li .feature-icon {
    width: 40px;
    margin-bottom: 10px;
}

.app-feature li h3 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.download-btn a {
    width: 170px;
}

.download-btn a:hover {
    transform: translateY(-3px);
}
.taxi-holder {
    background-image: url(../img/taxi-background.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    min-height: 550px;
    position: absolute;
    right: 40px;
    top: 100px;
    z-index: -1;
}

.taxi-holder .taxi {
    background-image: url(../img/taxi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 650px;
    height: auto;
    position: absolute;
    right: 75px;
    bottom: 30px;
}

.taxi-holder .mockup {
    background-image: url(../img/mockup.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 350px;
    height: 100%;
    position: absolute;
    right: 330px;
    top: -120px;
    z-index: -1;
}

.taxi-holder .charecter {
    background-image: url(../img/charecter.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 150px;
    height: auto;
    position: absolute;
    right: 130px;
    bottom: 53px;
}

.location-marker {
    position: absolute;
    right: 17%;
    top: 20px;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (min-width: 993px) and (max-width: 1300px) {
    .taxi-holder .taxi {
        width: 390px;
        bottom: 80px;
    }
    .taxi-holder .mockup {
        width: 250px;
        right: 190px;
        top: -40px;
        object-fit: contain;
    }
    .taxi-holder .charecter {
        width: 125px;
        right: 90px;
    }
    .location-marker {
        right: 15%;
        top: 50px;
    }
}

/*=== 6.1 Download Section 2 ===*/
.download-section-2 {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-section-2 .section-heading h2 {
    color: #fff;
}

.download-section-2 .section-heading p {
    color: #ddd;
}

.download-mockup {
    background-image: url(../img/mockup-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 380px;
    height: 100%;
    position: absolute;
    right: 250px;
    bottom: -20px;
}

.app-screen {
    width: 220px;
    position: absolute;
    right: 150px;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    overflow: hidden;
}

@media ( max-width: 1200px){
    .download-mockup{
        right: 130px;
        bottom: -60px;
    }
    .app-screen{
        right: 60px;
    }
}

@media ( min-width: 1600px){
    .download-mockup{
        right: 320px;
    }
    .app-screen{
        right: 290px;
    }
}

/*=== 7.0 Testimonials Section ===*/
.testimonial-section {
    position: relative;
}

.testimonial-section:before {
    background-image: url(../img/map.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
}

.testimonial-carousel {
    overflow: hidden;
    padding: 25px 5px 5px;
}

.testimonial-carousel-2.swiper-container {
    padding: 25px 0;
}

.testi-pagination {
    margin-left: -5px;
}

.testi-pagination .swiper-pagination {
    left: 5px;
    bottom: -50px;
    text-align: left;
}

.testi-item {
    background-color: #fff;
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    position: relative;
}

.testi-item p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.quote-icon {
    background-color: #f9b702;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    font-size: 30px;
    color: #222;
    width: 60px;
    height: 50px;
    position: absolute;
    right: 100px;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testi-author .author-thumb img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    object-fit: cover;
    object-position: top;
}

.testi-author .author-info h3 {
    font-size: 22px;
    margin: 0;
    display: block;
    line-height: 1;
}

.testi-author .author-info h3 span {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-carousel .swiper-pagination {
    text-align: left;
}

/* Feature List */
.feature-wrap {
    background-color: #f9b702;
    padding: 110px 40px;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    margin-left: 40px;
}

.ridek-features li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ridek-features li:not(:last-of-type) {
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 60px;
    color: #fff;
}

.feature-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.feature-content p {
    margin: 0;
    color: #fafafa;
}

/*=== 8.0 CTA Section ===*/
.cta-section {
    background-image: url(../img/texture.png);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.cta-men {
    background-image: url(../img/cta-men.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 130px;
    bottom: -30px;
    z-index: -1;
}

.cta-content .cta-call, .cta-call .cta-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-content .cta-call {
    margin-top: 25px;
}
.cta-content .cta-call p span {
    display: block;
}

.cta-content .cta-call p a {
    color: #f9b702;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.cta-content .cta-call i {
    background-color: rgba(255, 153, 0, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    color: #f9b702;
    border-radius: 2px;
}
.cta-call .lab.la-whatsapp {
    color: #25d366;
    background: #25d3664a;
}
.cta-content h2 {
    font-size: 46px;
    line-height: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #f9b702;
}

.cta-content P {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
    margin: 0;
}

/*=== 8.1 CTA Section 2 ===*/
.cta-section-2 {
    position: relative;
    z-index: 1;
}

.cta-section-2:before {
    background-color: #f9b702;
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.cta-section-2 .cta-content h4 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-section-2 .cta-content h2 {
    margin: 0;
    font-size: 36px;
    line-height: 42px;
}

.cta-section-2 .cta-content .default-btn {
    background-color: #222;
    margin-top: 20px;
}

.cta-section-2 .cta-content .default-btn:hover {
    color: #222;
}

.cta-section-2 .cta-content .default-btn:after,
.cta-section-2 .cta-content .default-btn:before {
    background-color: #fff;
}

.cta-section-2 .check-list i {
    background-color: #222;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    font-size: 12px;
    color: #f9b702;
    width: 30px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.cta-section-2 .check-list li {
    color: #fff;
}

.cta-section-2 .check-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.cta-section-2 .cta-men {
    background-size: 95%;
    right: 90px;
    bottom: 0;
    width: 500px;
    height: 420px;
}

.cta-content {
    max-width: 650px;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .cta-men {
        width: 380px;
        right: 70px;
        bottom: -5px;
    }
}

/*=== 9.0 Team Section ===*/
.team-thumb {
    clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 0 100%);
}

.team-thumb img{
    width: 100%;
}

.team-content {
    position: relative;
}

.team-content:before {
    background-image: url(../img/car%20steering.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50%;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
}

.team-content h3 a {
    background-color: #f9b702;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 8px 8px;
    width: 90%;
    height: 70px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto;
    margin-top: -30px;
    padding-bottom: 10px;
}

.team-content h3 a:hover {
    color: #222;
}

.team-content h4 {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0% 70%, 0 0);
    color: #fff;
    width: 60%;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin-left: auto;
    position: absolute;
    right: 59px;
    top: 50px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

/* Driver Details */
.driver-details {
    position: relative;
}

.driver-details img {
    width: 100%;
    border-radius: 5px;
}

.experience-box {
    background-color: #f9b702;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    padding: 30px;
    position: absolute;
    left: -20px;
    top: 50px;
    border-radius: 2px;
}

.experience-box h3 span {
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    display: block;
    color: #fff;
}

.experience-box h3 {
    font-size: 16px;
    margin: 0;
}

/*=== 10.0 Taxi Booking Form ===*/
.taxi-booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.taxi-booking-form .form-control {
    height: 50px;
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 17px;
    outline: none;
    box-shadow: none;
}

.taxi-booking-form .form-control:focus {
    border: 1px solid #f9b702;
}

.taxi-booking-form .niceSelect {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #ccc;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
}

.taxi-booking-form .nice-select .list {
    border-radius: 2px;
    margin-top: 0;
}

.taxi-booking-form .nice-select .option {
    font-size: 15px;
}

.taxi-booking-form .nice-select .option:hover {
    color: #222;
}

.taxi-booking-form .form-field {
    position: relative;
}

.taxi-booking-form .form-field i {
    color: #f9b702;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/*=== 11.0 Faq's Section ===*/
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: #fff;
    color: #222;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 20px 15px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #f9b702;
}

.accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f068";
    color: #fff;
    transform: inherit;
}

.accordion-button:after {
    background-image: inherit;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #222;
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=== 12.0 Contact Section ===*/
.contact-form .form-field label {
    color: #151515;
}
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-section .map {
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -20%;
    top: 0;
    z-index: -1;
}

.contact-details-wrap {
    padding-right: 60px;
}

.contact-title {
    margin-bottom: 20px;
}

.contact-title h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    display: inline-block;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-section .contact-details li i {
    background-color: #f9b702;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 2px;
}

.contactus-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contactus-form .form-field .form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.contactus-form .form-field .form-control:focus {
    border: 1px solid #f9b702;
}

.contactus-form .form-field.message {
    grid-column-end: span 2;
}

.contactus-form .form-field.message .form-control {
    height: 100px;
}

.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #999 !important;
}

.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #999 !important;
}

.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ddd !important;
}

.contact-form .form-group .form-control.message {
    height: 120px;
}
 .contact-details-wrap h2.black {
    font-size: 28px;
    line-height: 38px;
}
#b-form-messages,
#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success {
    display: block
}

.branches-section {
    position: relative;
}

.branches-list h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    background-color: #f9b702;
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.branches-list ul li {
    margin-bottom: 5px;
}

.branches-list ul li a {
    color: #777;
}

.branches-list ul li a:hover {
    text-decoration: underline;
    color: #f9b702;
}
.map-wrapper iframe {
    filter: grayscale(100%) contrast(90%);
}
/*=== 13.0 Footer Section ===*/
.footer-top-wrap {
    background-color: #F4F5F8;
    overflow: hidden;
}
.not-found-404 .footer-top-wrap {
    background-color: #222222;
}

.footer-top .footer-call {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top .brand {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    grid-gap: 20px;
    position: relative;
    padding: 30px 70px 30px 0px;
    z-index: 2;
}

.footer-top .brand p {
    position: relative;
    padding-left: 20px;
}

.footer-top .brand p:before {
    background-color: #444;
    width: 2px;
    height: 100%;
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
}

.footer-top .brand:before,
.footer-top .brand:after {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 150%;
    height: 100%;
    position: absolute;
    right: 150px;
    bottom: -1px;
    z-index: -1;
}

.footer-top .brand:before {
    width: 200px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    right: 0;
}

.footer-top .footer-call {
    padding: 32px 0px;
    position: relative;
    z-index: 1;
}

.footer-top .footer-call:before {
    background-color: #f9b702;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: '';
    width: 5000px;
    height: 100%;
    position: absolute;
    left: -85px;
    bottom: 0;
    z-index: -1;
}

.footer-call i {
    font-size: 45px;
    color: #fff;
}

.footer-call p span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fafafa;
    margin-bottom: 5px;
}

.footer-call p a {
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.footer-top .brand p,
.footer-top .footer-call p {
    color: #ccc;
    margin: 0;
}

/*=== 13.1 Mid Footer ===*/
.footer-mid-wrap {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    padding: 80px 0 140px 0;
    position: relative;
    z-index: 1;
}

.footer-mid-wrap:before {
    background-image: url(../img/footer-bg-img.png);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.running-taxi {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.running-taxi .taxi {
    background-image: url(../img/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.running-taxi .taxi-2 {
    background-image: url(../img/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.running-taxi .taxi-3 {
    background-image: url(../img/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite;
}

.footer-item .widget-title h3 {
    color: #fff;
}

.footer-links li:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer-contact li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-links li a,
.footer-contact li {
    color: #ccc;
}

.footer-contact li span {
    display: block;
    color: #f9b702;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links li a:hover {
    color: #f9b702;
}
ul.footer-contact a {
    color: #ccc;
}

@media (min-width: 992px) {
    .footer-list {
        margin-left: 15px;
    }
}

/*=== 13.2 Subscribe Form ===*/
.subscribe-form .form-control {
    background-color: #fff;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    border-radius: 0;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    box-shadow: none;
}

.subscribe-form .submit {
    background-color: #f9b702;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    padding: 0 35px 0 30px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #222;
    line-height: 45px;
    text-align: center;
}

.subscribe-form .submit:hover {
    background-color: #ffab2e;
}

#subscribe-result {
    display: none;
}

#subscribe-result.subs-result {
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #ccc;
    padding: 10px;
    margin-top: 15px;
}

.subscription-error {
    color: #ff0000;
}

/* Running Animation Keyframe */
@-moz-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

/*=== 13.3 Copyright Section ===*/
.copyright-wrap {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright-wrap p {
    color: #ccc;
    margin: 0;
}

@media (max-width: 992px){
    .footer-top .footer-call:before{
        left: -200px;
    }
}


@media (max-width: 991px) {

    .feature-stats-box {
        display: block;
    }

    .feature-stats-content {
        width: 100%;
        display: flex;
        padding: 50px 25px;
    }

    .feature-stats-image {
        position: relative;
        width: 100%;
        height: 320px;
        clip-path: none;
    }

    .feature-stats-image::before {
        display: none;
    }

}


@media (max-width: 767px) {

    .feature-stats-content {
        display: block;
    }

    .feature-stat-item {
        width: 100%;
        margin-bottom: 40px;
    }

    .feature-stat-item:last-child {
        margin-bottom: 0;
    }

    .feature-stats-image {
        height: 280px;
    }

}


/* =========================================
   BOOKING FORM
========================================= */

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.form-field .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    color: #222;
    font-size: 15px;
    outline: none;
    margin-bottom: 15px;
}

.form-field .form-control:focus {
    border-color: #f9b702;
}


/* Passenger */

/* Passenger radio buttons */
.booking-form .form-field.passenger-field input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;

    width: 24px;
    height: 24px;
    min-width: 24px;

    padding: 0;
    margin: 0;

    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;

    display: inline-block;
    position: relative;
    cursor: pointer;

    box-shadow: none;
    outline: none;
}

/* Selected radio */
.booking-form .form-field.passenger-field input[type="radio"]:checked {
    background: #f9b702;
    border-color: #f9b702;
}

/* White dot inside selected radio */
.booking-form .form-field.passenger-field input[type="radio"]:checked::after {
    content: "";
    position: absolute;

    width: 8px;
    height: 8px;

    background: #fff;
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

/* CF7 passenger layout */
.passenger-field .wpcf7-radio {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

/* Each passenger option */
.passenger-field .wpcf7-list-item {
    margin: 0;
}

.passenger-field .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
}

/* Passenger number */
.passenger-field .wpcf7-list-item-label {
    color: #fff;
    font-size: 17px;
}


/* Submit */

/*.submit-field {*/
/*    grid-column: span 2;*/
/*}*/

.submit-field .default-btn {
    border: 0;
    cursor: pointer;
}

.booking-form .submit-field input {
    background-color: #f9b702;
    border-color: #f9b702;
}
/* CF7 validation */

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 13px;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
}

/* =========================================
   SERVICE AREAS
========================================= */

.service-area-section {
    background: #f5f5f5;
}

.service-area-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
}


/* Image */

.service-area-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-area-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-area-card:hover .service-area-image img {
    transform: scale(1.05);
}


/* Content */

.service-area-content {
    padding: 25px;
}

.service-area-content h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.service-area-content h3 a {
    color: #0B0B0B;
    text-decoration: none;
}

.service-area-content p {
    margin-bottom: 18px;
    line-height: 1.7;
}


/* Read More */

.service-area-content .read-more {
    display: inline-block;
    color: #0B0B0B;
    font-weight: 600;
    text-decoration: none;
}

.service-area-content .read-more:hover {
    color: #f9b702;
}

/* =========================================
   SERVICE AREA DETAIL
========================================= */

.service-area-detail {
    background: #fff;
}

.service-area-detail-image, .service-image, .single-post .post-thumbnail {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
}

.service-area-detail-image img, .service-image img, .single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top;
}

.service-area-detail-content, .service-content, .post-content {
    padding-top: 20px;
}

.area-short-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.area-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}


@media (max-width: 991px) {

    .service-area-detail-content {
        padding: 30px 0 0;
    }

    .service-area-detail-image {
        height: 350px;
    }

}


@media (max-width: 575px) {

    .service-area-detail-image {
        height: 280px;
    }

    .service-area-detail-content h2 {
        font-size: 28px;
    }

}

/* =========================================
   BOOKING SECTION
========================================= */

.booking-buttons {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.booking-buttons .default-btn {
    flex: 1;
    min-width: 0;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0;
    padding: 0 15px;

    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.booking-buttons .default-btn i {
    font-size: 19px;
    flex-shrink: 0;
}


/* =========================================
   BOOKING FEATURES
========================================= */

.app-feature {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    width: 100%;
    margin: 30px 0 0;
    padding: 0;

    list-style: none;
}

.app-feature li {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;
    padding: 0;
}

.app-feature li > i {
    flex-shrink: 0;
    margin: 0;
}

.app-feature li h3 {
    margin: 0;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================
   FEATURE ICON
========================================= */

.booking-feature-icon {
    width: 60px;
    height: 60px;

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

    background: #f9b702;
    border-radius: 50%;
}

.booking-feature-icon i {
    font-size: 27px;
    color: #0B0B0B;
}


/* =========================================
   BUTTON COLORS
========================================= */

.booking-buttons .whatsapp-btn {
    background: #25d366;
    border-color: #25d366;
}

.booking-buttons .contact-btn {
    background: #f9b702;
    border-color: #f9b702;
    color: #0B0B0B;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .app-feature {
        gap: 20px;
    }

    .app-feature li {
        flex-direction: column;
        text-align: center;
        justify-content: flex-start;
    }

    .booking-buttons {
        gap: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .app-feature {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .app-feature li {
        align-items: center;
    }

    .app-feature li h3 {
        font-size: 14px;
    }

    .booking-feature-icon {
        width: 52px;
        height: 52px;
    }

    .booking-feature-icon i {
        font-size: 23px;
    }

    .booking-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .booking-buttons .default-btn {
        width: 100%;
        flex: auto;
    }

}

/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works-section {
    background: #fff;
    overflow: hidden;
}

.how-it-works-section .section-heading {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-section .section-heading h2 span {
    color: #ffb900;
}

.how-it-works-section .section-heading p {
    color: #70747a;
    margin-top: 15px;
}


/* =========================================
   MAIN GRID
========================================= */

.how-it-works-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================
   STEP
========================================= */

.how-step {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* =========================================
   CONTENT
========================================= */

.how-step-content {
    width: 100%;
    height: 210px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.how-step-content h3 {
    font-size: 25px;
    line-height: 1.3;
    margin: 0 0 15px;
    font-weight: 600;
    color: #0B0B0B;
}

.how-step-content p {
    color: #70747a;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}


/* =========================================
   IMAGE
========================================= */

.how-step-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    margin: 0;
    border-radius: 16px;
}

.how-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   ALTERNATING LAYOUT
========================================= */

/* Step 1 & 3
   Content
   Gap
   Image
*/

.how-step:nth-child(odd) .how-step-image {
    margin-top: 80px;
}


/* Step 2 & 4
   Image
   Gap
   Content
*/

.how-step:nth-child(even) {
    flex-direction: column;
}

.how-step:nth-child(even) .how-step-content {
    order: 2;
    margin-top: 80px;
}

.how-step:nth-child(even) .how-step-image {
    order: 1;
}


/* =========================================
   STEP CIRCLE
========================================= */

.how-step-number {
    position: absolute;

    top: 215px;
    left: 50%;

    transform: translateX(-50%);

    width: 70px;
    height: 70px;

    border: 5px solid #ffb900;
    border-radius: 50%;

    background: #fff;

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

    z-index: 3;
}

.how-step-number span {
    width: 18px;
    height: 18px;
    background: #0B0B0B;
    border-radius: 50%;
    display: block;
}


/* =========================================
   CONNECTING LINE
========================================= */

.how-it-works-grid::before {
    content: "";

    position: absolute;

    top: 250px;
    left: 8%;
    right: 8%;

    height: 3px;

    background: #dedede;

    z-index: 1;
}


/* Keep circles above line */

.how-step-number {
    z-index: 5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }

    .how-it-works-grid::before {
        display: none;
    }

    .how-step {
        height: auto;
        min-height: 500px;
    }

    .how-step:nth-child(even) .how-step-content {
        margin-top: 80px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .how-it-works-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .how-it-works-grid::before {
        display: none;
    }

    .how-step {
        height: auto;
        min-height: 0;
        flex-direction: column-reverse;
    }

    .how-step-content {
        height: auto;
        padding: 0;
        margin-top: 25px !important;
    }

    .how-step-content h3 {
        font-size: 23px;
    }

    .how-step-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .how-step-image {
        height: 220px;
        margin-top: 0 !important;
        width: 100%;
    }

    .how-step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        margin-top: -35px;
        width: 50px;
        height: 50px;
        display: none;
    }

    /* Mobile: keep normal order */
    .how-step:nth-child(even) {
        flex-direction: column;
    }

    .how-step:nth-child(even) .how-step-image {
        order: 1;
    }

    .how-step:nth-child(even) .how-step-content {
        order: 2;
    }

}

/* =========================================
   HOW IT WORKS ANIMATIONS
========================================= */

.how-step-image {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.how-step:hover .how-step-image {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.how-step:hover .how-step-image img {
    transform: scale(1.05);
}


/* Step circle hover */

.how-step-number {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.how-step:hover .how-step-number {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 185, 0, 0.25);
}

.how-step-number span {
    transition: transform 0.3s ease;
}

.how-step:hover .how-step-number span {
    transform: scale(1.2);
}
.how-it-works-grid::before {
    transform: scaleX(0);
    transform-origin: left center;
    animation: howLine 1.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes howLine {
    to {
        transform: scaleX(1);
    }
}
.how-step-image img {
    transition: transform 0.6s ease;
}


/* =========================================
   FIXED WHATSAPP - INSTANT BOOKING
========================================= */

.fixed-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 80px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}


/* WhatsApp Circle */
.whatsapp-icon {
    position: relative;

    width: 58px;
    height: 58px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

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

    font-size: 29px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease;
}


/* Expanding Ring */
.whatsapp-icon::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 2px solid #25D366;

    animation: whatsapp-ring 6s infinite;
}


/* Second subtle ring */
.whatsapp-icon::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 2px solid #25D366;

    animation: whatsapp-ring 6s infinite;
    animation-delay: 3s;
}


/* Label */
.whatsapp-label {
    background: #222;
    color: #fff;

    padding: 10px 15px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}


/* Hover */
.fixed-whatsapp:hover .whatsapp-icon {
    transform: scale(1.12);
}

.fixed-whatsapp:hover .whatsapp-label {
    transform: translateX(-3px);
    background: #111;
}


/* =========================================
   GENTLE POP ANIMATION
========================================= */

@keyframes whatsapp-ring {

    0% {
        transform: scale(1);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    20% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .whatsapp-label {
        display: none;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 27px;
    }
}

/* =========================================
   404 ERROR PAGE
========================================= */

.error-404-page {
    background: #f8f8f8;
}

.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.error-404-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

/* 404 Number */

.error-404-number {
    font-size: 180px;
    line-height: 0.9;
    font-weight: 800;
    color: #fdbb00;
    letter-spacing: -8px;
    margin-bottom: 25px;
}

/* Subtitle */

.error-404-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #171717;
    margin-bottom: 15px;
}

/* Heading */

/* Description */
.error-404-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* =========================================
   RELATED SERVICES
========================================= */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-service-card {
    background: #fff;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.related-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.05);
}

.related-service-content {
    padding: 25px;
}

.related-service-content h3 {
    margin: 0 0 12px;
}

.related-service-content h3 a {
    color: inherit;
    text-decoration: none;
}

.related-service-content p {
    margin-bottom: 20px;
}

/* =========================================
   SEARCH RESULTS - LIST VIEW
========================================= */

.search-results-section {
    background: #fff;
}


/* HEADING */

.search-results-section .section-heading h2 {
    margin-bottom: 8px;
}

.search-results-section .section-heading h2 strong {
    color: #fdbb00;
}

.search-count {
    color: #777;
    margin: 0;
}


/* RESULT ITEM */

.search-result-item {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #e9e9e9;
    transition: all 0.3s ease;
}

.search-result-item:first-child {
    border-top: 1px solid #e9e9e9;
}


/* IMAGE */

.search-result-image {
    width: 280px;
    min-width: 280px;
    height: 190px;
    overflow: hidden;
    background: #f5f5f5;
}

.search-result-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.search-result-item:hover .search-result-image img {
    transform: scale(1.05);
}


/* PLACEHOLDER */

.search-result-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #fdbb00;
    font-size: 60px;
}


/* CONTENT */

.search-result-content {
    flex: 1;
    padding: 5px 0;
}


/* META */

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.search-result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fdbb00;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.search-result-meta i {
    font-size: 16px;
}

.search-result-date {
    color: #888 !important;
    text-transform: none !important;
    font-weight: 400 !important;
}


/* TITLE */

.search-result-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.3;
}

.search-result-content h3 a {
    color: #171717;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-content h3 a:hover {
    color: #fdbb00;
}


/* DESCRIPTION */

.search-result-content p {
    margin: 0 0 15px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* READ MORE */

.search-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #171717;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-read-more i {
    color: #fdbb00;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.search-read-more:hover {
    color: #fdbb00;
}

.search-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================
   NO RESULTS
========================================= */

.search-no-results {
    max-width: 650px;
    margin: 0 auto;
    padding: 70px 30px;
    background: #f7f7f7;
}

.search-no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    border-radius: 50%;
    color: #fdbb00;
    font-size: 35px;
}

.search-no-results h2 {
    margin-bottom: 10px;
}

.search-no-results p {
    color: #777;
    margin-bottom: 25px;
}


/* =========================================
   PAGINATION
========================================= */

.search-results-section .pagination-wrap {
    margin-top: 35px;
    text-align: center;
}

.search-results-section .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.search-results-section .nav-links a,
.search-results-section .nav-links span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    color: #171717;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-results-section .nav-links a:hover,
.search-results-section .nav-links .current {
    background: #fdbb00;
    border-color: #fdbb00;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .search-results-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .search-result-item {
        display: block;
        padding: 20px 0;
    }

    .search-result-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
        margin-bottom: 20px;
    }

    .search-result-content {
        padding: 0;
    }

    .search-result-content h3 {
        font-size: 21px;
    }

    .search-result-meta {
        gap: 12px;
        flex-wrap: wrap;
    }

}
