/* ==========================================
   DRIVORA HEADER TOP
========================================== */

.header_top {
    position: relative;

    background: #17202a;

    color: #ffffff;

    font-size: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header_top_inner {
    min-height: 36px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* ==========================================
   TOP BAR LINKS
========================================== */

.header_top_email,
.header_top_phone {
    display: flex;

    align-items: center;

    gap: 6px;

    white-space: nowrap;
}

.header_top_email i,
.header_top_phone i {
    color: #f5c400;

    font-size: 11px;
}

.header_top a {
    color: rgba(255, 255, 255, 0.92);

    text-decoration: none;

    transition: color 0.2s ease;
}

.header_top a:hover {
    color: #f5c400;
}

.header_top_sms {
    margin-left: 2px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
}


/* ==========================================
   NAVIGATION
========================================== */

.navigation {
    position: relative;

    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

.navigation_inner {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ==========================================
   LOGO
========================================== */

.navigation_logo {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #1f2937;

    text-decoration: none;

    flex-shrink: 0;
}

.navigation_logo:hover {
    color: #1f2937;
}

.navigation_logo_icon {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #f59e0b
        );

    box-shadow:
        0 5px 14px rgba(245, 196, 0, 0.22);

    font-size: 19px;
}

.navigation_logo_text {
    color: #252525;

    font-size: 25px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* ==========================================
   MOBILE TOGGLE
========================================== */

.navigation_toggle {
    width: 43px;
    height: 43px;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #e5e7eb;

    border-radius: 7px;

    color: #1f2937;

    background: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.navigation_toggle:hover,
.navigation_toggle:focus {
    color: #ffffff;

    border-color: #f5c400;

    background: #f5c400;

    outline: none;
}


/* ==========================================
   MENU WRAPPER
========================================== */

.navigation_menu_wrap {
    margin-left: auto;
}


/* ==========================================
   MENU
========================================== */

.navigation_menu {
    display: flex;

    align-items: stretch;

    justify-content: flex-end;

    margin: 0;

    padding: 0;

    list-style: none;
}

.navigation_item {
    margin: 0;

    padding: 0;
}


/* ==========================================
   MENU LINKS
========================================== */

.navigation_link {
    min-height: 72px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 0 14px;

    color: #52606d;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    border-left: 1px solid transparent;

    border-right: 1px solid transparent;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.navigation_link i {
    color: #697586;

    font-size: 11px;

    transition: color 0.2s ease;
}

.navigation_link:hover {
    color: #252525;

    background: #fff9df;

    border-color: #f5edc6;
}

.navigation_link:hover i {
    color: #d99f00;
}


/* ==========================================
   ACTIVE MENU
========================================== */

.navigation_link.active {
    color: #252525;

    background: #f5c400;

    border-color: #f5c400;
}

.navigation_link.active i {
    color: #252525;
}


/* ==========================================
   DESKTOP MENU OVERRIDE
========================================== */

/*
   Important:
   Bootstrap's .collapse is display:none by default.
   This explicitly makes the navigation visible on
   desktop while preserving Bootstrap collapse on mobile.
*/

@media (min-width: 992px) {

    .navigation_menu_wrap.collapse {
        display: block !important;

        height: auto !important;

        visibility: visible !important;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .header_top_inner {
        min-height: 35px;
    }

    .navigation_inner {
        min-height: 68px;

        position: relative;
    }

    .navigation_toggle {
        display: flex;
    }


    /* -------------------------------
       MOBILE MENU WRAPPER
    -------------------------------- */

    .navigation_menu_wrap {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        margin: 0;

        border-top: 1px solid #e5e7eb;

        background: #ffffff;

        box-shadow:
            0 12px 25px rgba(15, 23, 42, 0.10);
    }


    /* -------------------------------
       MOBILE MENU
    -------------------------------- */

    .navigation_menu {
        display: block;

        padding: 8px 0;
    }

    .navigation_item {
        width: 100%;
    }


    /* -------------------------------
       MOBILE LINKS
    -------------------------------- */

    .navigation_link {
        min-height: 48px;

        display: flex;

        align-items: center;

        padding: 0 20px;

        border: 0;

        border-left: 3px solid transparent;

        font-size: 13px;
    }

    .navigation_link:hover {
        border-left-color: #f5c400;

        background: #fffaf0;
    }

    .navigation_link.active {
        border-left-color: #f5c400;

        background: #fff8dc;
    }


    /* -------------------------------
       MOBILE ANIMATION
    -------------------------------- */

    .navigation_menu_wrap.collapsing {
        overflow: hidden;

        transition:
            height 0.3s ease;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .header_top_inner {
        min-height: auto;

        padding: 7px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }

    .header_top_email,
    .header_top_phone {
        font-size: 11px;
    }

    .header_top_phone {
        align-self: flex-start;
    }

    .header_top_sms {
        font-size: 10px;
    }


    /* NAVIGATION */

    .navigation_inner {
        min-height: 64px;
    }

    .navigation_logo_icon {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .navigation_logo_text {
        font-size: 22px;

        letter-spacing: 1.2px;
    }

    .navigation_toggle {
        width: 41px;
        height: 41px;
    }


    /* MENU */

    .navigation_menu_wrap {
        left: 0;
        right: 0;
    }

    .navigation_link {
        min-height: 50px;

        padding: 0 18px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .header_top_inner {
        padding-left: 5px;
        padding-right: 5px;
    }

    .header_top_email,
    .header_top_phone {
        font-size: 10px;
    }

    .navigation_logo_text {
        font-size: 20px;
    }

}

/* ==========================================
   DRIVORA HERO SLIDER
========================================== */

.our_slider {
    position: relative;

    overflow: hidden;

    background: #111827;
}


/* ==========================================
   SLIDE
========================================== */

.our_slider_slide {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


/* ==========================================
   OVERLAY
========================================== */

.our_slider_overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 25, 0.88) 0%,
            rgba(8, 15, 25, 0.68) 38%,
            rgba(8, 15, 25, 0.35) 70%,
            rgba(8, 15, 25, 0.5) 100%
        );
}


/* ==========================================
   CONTENT
========================================== */

.our_slider .container {
    position: relative;

    z-index: 2;
}

.our_slider_content {
    max-width: 760px;

    padding: 80px 0 95px;

    color: #ffffff;
}


/* ==========================================
   BADGE
========================================== */

.our_slider_badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 30px;

    color: rgba(255, 255, 255, 0.9);

    background: rgba(15, 23, 42, 0.35);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.3px;

    backdrop-filter: blur(7px);
}

.our_slider_badge i {
    color: #f5c400;

    font-size: 13px;
}


/* ==========================================
   HEADING
========================================== */

.our_slider_content h1 {
    max-width: 800px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -1.8px;

    text-transform: uppercase;
}

.our_slider_content h1 span {
    display: block;

    color: #f5c400;
}


/* ==========================================
   DESCRIPTION
========================================== */

.our_slider_content p {
    max-width: 610px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.7;
}


/* ==========================================
   BUTTONS
========================================== */

.our_slider_buttons {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;
}

.our_slider_btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 21px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* PRIMARY */

.our_slider_btn_primary {
    color: #1f2937;

    background: #f5c400;

    box-shadow:
        0 8px 24px rgba(245, 196, 0, 0.22);
}

.our_slider_btn_primary:hover {
    color: #1f2937;

    background: #ffd21a;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(245, 196, 0, 0.3);
}


/* LIGHT */

.our_slider_btn_light {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);
}

.our_slider_btn_light:hover {
    color: #1f2937;

    border-color: #ffffff;

    background: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================
   SLIDER CONTROLS
========================================== */

.our_slider_control {
    width: 70px;

    z-index: 5;

    opacity: 1;
}

.our_slider_arrow {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    color: #ffffff;

    background: rgba(15, 23, 42, 0.35);

    font-size: 17px;

    backdrop-filter: blur(7px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.our_slider_control:hover .our_slider_arrow {
    border-color: #f5c400;

    color: #1f2937;

    background: #f5c400;

    transform: scale(1.08);
}


/* ==========================================
   INDICATORS
========================================== */

.our_slider_indicators {
    z-index: 6;

    bottom: 25px;

    margin: 0;

    gap: 7px;
}

.our_slider_indicators button {
    width: 9px;
    height: 9px;

    margin: 0;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.85);

    border-radius: 50%;

    background: transparent;

    opacity: 1;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        border-radius 0.3s ease;
}

.our_slider_indicators button.active {
    width: 30px;

    border-color: #f5c400;

    border-radius: 10px;

    background: #f5c400;
}


/* ==========================================
   SLIDE TRANSITION
========================================== */

.our_slider .carousel-fade .carousel-item {
    transition-property: opacity;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .our_slider_slide {
        min-height: 510px;
    }

    .our_slider_content {
        max-width: 650px;

        padding: 70px 0 85px;
    }

    .our_slider_content h1 {
        font-size: clamp(38px, 6vw, 56px);
    }

    .our_slider_content p {
        font-size: 16px;
    }

    .our_slider_control {
        width: 55px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .our_slider_slide {
        min-height: 560px;

        background-position: center;
    }

    .our_slider_overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 15, 25, 0.65) 0%,
                rgba(8, 15, 25, 0.82) 100%
            );
    }

    .our_slider_content {
        padding: 70px 25px 95px;

        text-align: center;

        margin: 0 auto;
    }

    .our_slider_badge {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .our_slider_content h1 {
        font-size: clamp(34px, 10vw, 48px);

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .our_slider_content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 14px;

        line-height: 1.65;
    }

    .our_slider_buttons {
        justify-content: center;
    }

    .our_slider_btn {
        min-height: 45px;

        padding: 0 17px;

        font-size: 12px;
    }


    /* Hide arrows on touch screens */

    .our_slider_control {
        display: none;
    }

    .our_slider_indicators {
        bottom: 22px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .our_slider_slide {
        min-height: 530px;
    }

    .our_slider_content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .our_slider_content h1 {
        font-size: 32px;
    }

    .our_slider_content p {
        font-size: 13px;
    }

    .our_slider_buttons {
        flex-direction: column;

        width: 100%;
    }

    .our_slider_btn {
        width: 100%;
    }

}

/* ==========================================
   DRIVORA INTRO / QUICK BOOKING
========================================== */

.our_intro {
    position: relative;

    padding: 90px 0 95px;

    overflow: hidden;

    background: #ffffff;
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.our_intro::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -230px;
    left: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 196, 0, 0.10),
            transparent 70%
        );

    pointer-events: none;
}

.our_intro::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(15, 23, 42, 0.05),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================
   HEADING
========================================== */

.our_intro_heading {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto 48px;

    text-align: center;
}

.our_intro_label {
    display: inline-block;

    margin-bottom: 10px;

    color: #c29300;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.our_intro_heading h2 {
    margin: 0;

    color: #17202a;

    font-size: clamp(31px, 3vw, 43px);

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.7px;
}

.our_intro_heading h2 span {
    color: #e0ae00;
}


/* ==========================================
   HEADING LINE
========================================== */

.our_intro_line {
    position: relative;

    width: 78px;
    height: 4px;

    margin: 18px auto 21px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #f5c400,
            #e0a900
        );
}

.our_intro_line::after {
    content: "";

    position: absolute;

    width: 26px;
    height: 8px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #ffffff;

    border-left: 2px solid #f5c400;

    border-right: 2px solid #e0a900;
}


/* ==========================================
   DESCRIPTION
========================================== */

.our_intro_lead {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
   BOOKING OPTIONS
========================================== */

.our_intro_options {
    position: relative;

    z-index: 2;
}


/* ==========================================
   CARD
========================================== */

.our_intro_card {
    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.our_intro_card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 196, 0, 0.5);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12);
}


/* ==========================================
   CARD TOP
========================================== */

.our_intro_card_top {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    min-height: 205px;

    padding: 30px 27px;
}


/* ==========================================
   CARD ACCENT
========================================== */

.our_intro_card_top::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #f5c400,
            #f59e0b
        );
}


/* ==========================================
   ICON
========================================== */

.our_intro_icon {
    width: 67px;
    height: 67px;

    flex: 0 0 67px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #1f2937;

    background:
        linear-gradient(
            135deg,
            #fff8d7,
            #fff1a8
        );

    font-size: 28px;

    box-shadow:
        inset 0 0 0 1px rgba(245, 196, 0, 0.12);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.our_intro_card:hover .our_intro_icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #f5c400,
            #f59e0b
        );

    transform: rotate(-3deg) scale(1.05);
}


/* ==========================================
   CARD CONTENT
========================================== */

.our_intro_card_content {
    flex: 1;
}

.our_intro_card_number {
    display: block;

    margin-bottom: 5px;

    color: #c29300;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.our_intro_card_content h3 {
    margin: 0 0 9px;

    color: #17202a;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 650;
}

.our_intro_card_content p {
    margin: 0;

    color: #64748b;

    font-size: 12.5px;

    line-height: 1.7;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.our_intro_card_bottom {
    margin-top: auto;

    padding: 14px 20px;

    border-top: 1px solid #edf0f2;

    background: #17202a;
}


/* ==========================================
   ACTION
========================================== */

.our_intro_action {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}

.our_intro_action i {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: #17202a;

    background: #f5c400;

    font-size: 12px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.our_intro_action:hover {
    color: #ffffff;
}

.our_intro_action:hover i {
    background: #ffd21a;

    transform: translateX(3px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .our_intro {
        padding: 75px 0 80px;
    }

    .our_intro_heading {
        margin-bottom: 40px;
    }

    .our_intro_card_top {
        min-height: 210px;

        padding: 26px 22px;

        gap: 15px;
    }

    .our_intro_icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        font-size: 24px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .our_intro {
        padding: 60px 0 70px;
    }

    .our_intro_heading {
        padding: 0 18px;

        margin-bottom: 35px;
    }

    .our_intro_heading h2 {
        font-size: 29px;
    }

    .our_intro_lead {
        font-size: 13px;

        line-height: 1.75;
    }

    .our_intro_options {
        padding: 0 8px;
    }

    .our_intro_card_top {
        min-height: auto;

        padding: 27px 22px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .our_intro_heading h2 {
        font-size: 26px;
    }

    .our_intro_options {
        padding: 0;
    }

    .our_intro_card_top {
        gap: 13px;

        padding: 24px 18px;
    }

    .our_intro_icon {
        width: 54px;
        height: 54px;

        flex-basis: 54px;

        font-size: 22px;
    }

    .our_intro_card_content h3 {
        font-size: 18px;
    }

    .our_intro_card_content p {
        font-size: 12px;
    }

}

/* ==========================================
   DRIVORA ABOUT US
========================================== */

.about_us {
    position: relative;

    padding: 95px 0;

    overflow: hidden;

    background: #f8fafc;
}


/* ==========================================
   BACKGROUND
========================================== */

.about_us::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 196, 0, 0.10),
            transparent 70%
        );

    pointer-events: none;
}

.about_us::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(15, 23, 42, 0.04),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================
   MAIN CONTENT
========================================== */

.about_us_main {
    position: relative;

    z-index: 2;
}


/* ==========================================
   24/7 SERVICE VISUAL
========================================== */

.about_us_service_visual {
    min-height: 370px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #17202a,
            #263342
        );

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.14);

    overflow: hidden;
}


/* Decorative circles */

.about_us_service_visual::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border: 1px solid rgba(245, 196, 0, 0.15);

    border-radius: 50%;
}

.about_us_service_visual::after {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 50%;
}


/* ==========================================
   SERVICE CIRCLE
========================================== */

.about_us_service_circle {
    position: relative;

    z-index: 2;

    width: 265px;
    height: 265px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 2px solid rgba(245, 196, 0, 0.65);

    border-radius: 50%;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 0 0 10px rgba(245, 196, 0, 0.04),
        0 0 0 22px rgba(245, 196, 0, 0.025);
}

.about_us_service_small {
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.about_us_service_circle strong {
    color: #f5c400;

    font-size: 76px;

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;
}

.about_us_service_text {
    margin-top: 5px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 3px;
}

.about_us_service_icon {
    position: absolute;

    right: 20px;
    bottom: 30px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #17202a;

    background: #f5c400;

    font-size: 18px;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.2);
}


/* ==========================================
   LABEL
========================================== */

.about_us_label {
    display: inline-block;

    margin-bottom: 10px;

    color: #b28700;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ==========================================
   HEADING
========================================== */

.about_us_content h2 {
    margin: 0;

    color: #17202a;

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -0.8px;
}

.about_us_content h2 span {
    color: #d8a900;
}


/* ==========================================
   HEADING LINE
========================================== */

.about_us_line {
    width: 65px;
    height: 4px;

    margin: 17px 0 22px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #f5c400,
            #e0a900
        );
}


/* ==========================================
   TEXT
========================================== */

.about_us_content p {
    margin: 0 0 15px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.8;
}


/* ==========================================
   BUTTON
========================================== */

.about_us_button {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 8px;

    padding: 12px 18px;

    border-radius: 7px;

    color: #17202a;

    background: #f5c400;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(245, 196, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.about_us_button:hover {
    color: #17202a;

    background: #ffd21a;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(245, 196, 0, 0.25);
}


/* ==========================================
   TRUST / PAYMENT
========================================== */

.about_us_trust {
    padding: 27px 22px;

    border: 1px solid #e4e8ed;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);
}

.about_us_trust_label {
    display: block;

    margin-bottom: 7px;

    color: #b28700;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.about_us_trust h3 {
    margin: 0 0 8px;

    color: #17202a;

    font-size: 19px;

    font-weight: 650;
}

.about_us_trust > p {
    margin: 0 0 20px;

    color: #64748b;

    font-size: 11.5px;

    line-height: 1.7;
}


/* ==========================================
   PAYMENT GRID
========================================== */

.about_us_payment_grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
}

.about_us_payment {
    min-height: 68px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    border: 1px solid #edf0f2;

    border-radius: 8px;

    color: #64748b;

    background: #f8fafc;

    font-size: 10px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.about_us_payment i {
    color: #d2a700;

    font-size: 18px;
}

.about_us_payment:hover {
    border-color: rgba(245, 196, 0, 0.45);

    color: #17202a;

    background: #fffbea;
}


/* ==========================================
   FEATURES
========================================== */

.about_us_features {
    position: relative;

    z-index: 2;

    margin-top: 55px;
}

.about_us_feature {
    min-height: 95px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 20px;

    border: 1px solid #e5e9ee;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about_us_feature:hover {
    transform: translateY(-4px);

    border-color: rgba(245, 196, 0, 0.45);

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.08);
}


/* ==========================================
   FEATURE ICON
========================================== */

.about_us_feature_icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #1f2937;

    background: #fff6ce;

    font-size: 18px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.about_us_feature:hover .about_us_feature_icon {
    color: #ffffff;

    background: #f5c400;
}


/* ==========================================
   FEATURE TEXT
========================================== */

.about_us_feature h3 {
    margin: 0 0 4px;

    color: #17202a;

    font-size: 13px;

    font-weight: 650;
}

.about_us_feature p {
    margin: 0;

    color: #7b8794;

    font-size: 10.5px;

    line-height: 1.55;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .about_us {
        padding: 75px 0 80px;
    }

    .about_us_service_visual {
        min-height: 330px;
    }

    .about_us_service_circle {
        width: 230px;
        height: 230px;
    }

    .about_us_service_circle strong {
        font-size: 65px;
    }

    .about_us_content h2 {
        font-size: 32px;
    }

    .about_us_trust {
        padding: 23px 18px;
    }

    .about_us_features {
        margin-top: 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .about_us {
        padding: 60px 0 65px;
    }

    .about_us_service_visual {
        min-height: 300px;

        max-width: 450px;

        margin: 0 auto;
    }

    .about_us_service_circle {
        width: 215px;
        height: 215px;
    }

    .about_us_service_circle strong {
        font-size: 60px;
    }

    .about_us_service_text {
        font-size: 13px;
    }

    .about_us_content {
        padding-top: 15px;

        text-align: center;
    }

    .about_us_line {
        margin-left: auto;
        margin-right: auto;
    }

    .about_us_content p {
        font-size: 12.5px;
    }

    .about_us_trust {
        margin-top: 5px;
    }

    .about_us_features {
        margin-top: 35px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .about_us_service_visual {
        min-height: 270px;
    }

    .about_us_service_circle {
        width: 190px;
        height: 190px;
    }

    .about_us_service_circle strong {
        font-size: 53px;
    }

    .about_us_service_small {
        font-size: 8px;
    }

    .about_us_service_text {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .about_us_service_icon {
        width: 36px;
        height: 36px;

        right: 12px;
        bottom: 22px;

        font-size: 15px;
    }

}

/* ==========================================
   DRIVORA BOOK NOW CTA
========================================== */

.book_now {
    position: relative;

    overflow: hidden;

    background: #f5c400;
}


/* ==========================================
   BACKGROUND
========================================== */

.book_now_background {
    position: relative;

    background:
        linear-gradient(
            90deg,
            #edb900 0%,
            #f5c400 45%,
            #f8ca14 100%
        );
}


/* ==========================================
   DECORATIVE PATTERN
========================================== */

.book_now_background::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.035),
        0 0 0 140px rgba(255, 255, 255, 0.025);

    pointer-events: none;
}


/* ==========================================
   INNER
========================================== */

.book_now_inner {
    position: relative;

    min-height: 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


/* ==========================================
   CONTENT
========================================== */

.book_now_content {
    position: relative;

    z-index: 3;

    max-width: 650px;

    padding: 45px 20px;

    text-align: center;
}

.book_now_label {
    display: inline-block;

    margin-bottom: 8px;

    color: rgba(23, 32, 42, 0.65);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* ==========================================
   HEADING
========================================== */

.book_now_content h2 {
    margin: 0 0 10px;

    color: #17202a;

    font-size: clamp(27px, 3vw, 38px);

    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -0.6px;
}

.book_now_content h2 span {
    color: #ffffff;
}


/* ==========================================
   DESCRIPTION
========================================== */

.book_now_content p {
    max-width: 520px;

    margin: 0 auto 20px;

    color: rgba(23, 32, 42, 0.7);

    font-size: 12px;

    line-height: 1.65;
}


/* ==========================================
   ACTIONS
========================================== */

.book_now_actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* ==========================================
   BOOK BUTTON
========================================== */

.book_now_button {
    min-height: 43px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 19px;

    border-radius: 7px;

    color: #ffffff;

    background: #17202a;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(23, 32, 42, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.book_now_button:hover {
    color: #ffffff;

    background: #263442;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(23, 32, 42, 0.25);
}


/* ==========================================
   PHONE
========================================== */

.book_now_phone {
    min-height: 43px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0 14px;

    border: 1px solid rgba(23, 32, 42, 0.2);

    border-radius: 7px;

    color: #17202a;

    background: rgba(255, 255, 255, 0.15);

    font-size: 10px;

    text-align: left;

    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.book_now_phone > i {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #f5c400;

    background: #17202a;

    font-size: 10px;
}

.book_now_phone span {
    display: flex;

    flex-direction: column;

    gap: 1px;
}

.book_now_phone strong {
    color: #17202a;

    font-size: 12px;
}

.book_now_phone:hover {
    color: #17202a;

    border-color: rgba(23, 32, 42, 0.35);

    background: rgba(255, 255, 255, 0.3);
}


/* ==========================================
   SIDE VISUALS
========================================== */

.book_now_visual {
    position: absolute;

    z-index: 1;

    width: 330px;
    height: 210px;

    display: flex;

    align-items: center;

    opacity: 0.16;

    pointer-events: none;
}

.book_now_visual_left {
    left: -30px;

    justify-content: flex-start;
}

.book_now_visual_right {
    right: -30px;

    justify-content: flex-end;
}


/* ==========================================
   CAR ICON
========================================== */

.book_now_car_shape {
    width: 300px;
    height: 135px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 5px solid #17202a;

    border-radius: 65% 65% 18% 18%;

    color: #17202a;

    font-size: 105px;

    transform: perspective(500px) rotateY(-8deg);
}

.book_now_visual_right .book_now_car_shape {
    transform:
        perspective(500px)
        rotateY(8deg);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .book_now_inner {
        min-height: 225px;
    }

    .book_now_visual {
        width: 250px;

        opacity: 0.10;
    }

    .book_now_car_shape {
        width: 230px;
        height: 110px;

        font-size: 80px;
    }

    .book_now_content {
        max-width: 620px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .book_now_inner {
        min-height: auto;
    }

    .book_now_content {
        max-width: 100%;

        padding: 50px 18px;
    }

    .book_now_content h2 {
        font-size: 28px;
    }

    .book_now_content p {
        font-size: 12px;
    }

    .book_now_visual {
        display: none;
    }

    .book_now_actions {
        flex-direction: column;

        width: 100%;
    }

    .book_now_button,
    .book_now_phone {
        width: 100%;

        justify-content: center;
    }

    .book_now_phone {
        justify-content: center;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .book_now_content {
        padding: 42px 15px;
    }

    .book_now_content h2 {
        font-size: 25px;
    }

}


/* ==========================================
   DRIVORA FOOTER
========================================== */

.our_footer {
    position: relative;

    padding: 65px 0 55px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #111820 0%,
            #17202a 55%,
            #202b36 100%
        );
}


/* ==========================================
   BACKGROUND DECORATION
========================================== */

.our_footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 196, 0, 0.10),
            transparent 70%
        );

    pointer-events: none;
}

.our_footer::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -220px;
    bottom: -270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.04),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================
   CONTAINER
========================================== */

.our_footer .container {
    position: relative;

    z-index: 2;
}


/* ==========================================
   FOOTER COLUMN
========================================== */

.our_footer_column {
    position: relative;
}


/* ==========================================
   HEADING
========================================== */

.our_footer_heading {
    position: relative;

    display: inline-block;

    margin-bottom: 25px;

    padding-bottom: 10px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 600;
}

.our_footer_heading::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 10px;

    background: #f5c400;
}


/* ==========================================
   FOOTER LINKS
========================================== */

.our_footer_links {
    margin: 0;

    padding: 0;

    list-style: none;
}

.our_footer_links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.our_footer_links li:last-child {
    border-bottom: 0;
}

.our_footer_links a {
    min-height: 39px;

    display: flex;

    align-items: center;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.our_footer_links a::before {
    content: "\F285";

    margin-right: 8px;

    color: #f5c400;

    font-family: "bootstrap-icons";

    font-size: 8px;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.our_footer_links a:hover {
    color: #ffffff;

    padding-left: 5px;
}

.our_footer_links a:hover::before {
    opacity: 1;

    transform: translateX(0);
}


/* ==========================================
   CONTACT
========================================== */

.our_footer_contact_info {
    display: flex;

    flex-direction: column;

    gap: 17px;
}

.our_footer_contact_item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.our_footer_contact_item > i {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: #f5c400;

    background: rgba(245, 196, 0, 0.10);

    font-size: 13px;
}

.our_footer_contact_item strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;
}

.our_footer_contact_item span {
    display: block;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;

    line-height: 1.6;
}

.our_footer_contact_item a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.our_footer_contact_item a:hover {
    color: #f5c400;
}


/* ==========================================
   SOCIAL
========================================== */

.our_footer_social {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;
}

.our_footer_social a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 7px;

    color: rgba(255, 255, 255, 0.65);

    background: rgba(255, 255, 255, 0.04);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.our_footer_social a:hover {
    color: #17202a;

    border-color: #f5c400;

    background: #f5c400;

    transform: translateY(-3px);
}


/* ==========================================
   COPYRIGHT
========================================== */

.copyright {
    position: relative;

    background: #0c1116;

    color: rgba(255, 255, 255, 0.5);

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright_inner {
    min-height: 68px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* ==========================================
   COPYRIGHT TEXT
========================================== */

.copyright_text {
    font-size: 11px;
}

.copyright_text strong {
    color: #f5c400;

    font-weight: 600;
}


/* ==========================================
   COPYRIGHT LINKS
========================================== */

.copyright_links {
    display: flex;

    align-items: center;

    gap: 20px;
}

.copyright_links a {
    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.copyright_links a:hover {
    color: #f5c400;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .our_footer {
        padding: 55px 0 45px;
    }

    .our_footer_heading {
        margin-bottom: 20px;
    }

    .copyright_inner {
        min-height: 62px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .our_footer {
        padding: 50px 0 40px;
    }

    .our_footer_heading {
        font-size: 17px;
    }

    .our_footer_column {
        max-width: 500px;

        margin: 0 auto;
    }

    .our_footer_links a {
        min-height: 37px;
    }

    .our_footer_contact {
        padding-top: 5px;
    }

    .copyright_inner {
        min-height: auto;

        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;

        gap: 10px;
    }

    .copyright_links {
        gap: 15px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .our_footer {
        padding: 45px 0 35px;
    }

    .copyright_text {
        font-size: 10px;
    }

    .copyright_links a {
        font-size: 9px;
    }

}