/* =========================================================
   MSR DROP TAXI - PREMIUM ROUTE PAGE CSS
   File: assets/css/route.css
========================================================= */

:root {
    --msr-yellow: #ffc400;
    --msr-yellow-light: #ffd84d;
    --msr-black: #101010;
    --msr-dark: #171717;
    --msr-grey: #f6f6f6;
    --msr-text: #555;
    --msr-white: #fff;
    --msr-radius: 22px;
    --msr-shadow: 0 18px 50px rgba(0,0,0,.10);
}

/* =========================================================
   GLOBAL
========================================================= */

.route-hero *,
.route-main-section *,
.route-benefits *,
.route-cta *,
.route-floating * {
    box-sizing: border-box;
}

.route-hero img,
.route-main-section img {
    max-width: 100%;
    height: auto;
}

.route-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #0b0b0b 0%,
            #171717 55%,
            #252525 100%
        );
    isolation: isolate;
}

.route-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    right: -130px;
    top: -130px;
    background: rgba(255,196,0,.10);
    filter: blur(2px);
    animation: routeFloat 6s ease-in-out infinite;
}

.route-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    left: -100px;
    bottom: -130px;
    border: 1px solid rgba(255,196,0,.22);
    animation: routePulse 5s ease-in-out infinite;
}

.route-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.96),
            rgba(0,0,0,.70),
            rgba(0,0,0,.40)
        );
}

.route-hero .container {
    position: relative;
    z-index: 2;
}

.route-hero-content {
    max-width: 900px;
    padding: 90px 0;
    animation: routeHeroIn .9s ease both;
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: var(--msr-yellow);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(255,196,0,.20);
}

.route-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #111;
    border-radius: 50%;
    animation: routeBlink 1.5s infinite;
}

.route-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.route-hero h1 span {
    color: var(--msr-yellow);
    font-size: .48em;
    font-weight: 600;
    margin: 0 8px;
    vertical-align: middle;
    letter-spacing: 0;
}

.route-hero p {
    max-width: 700px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.8;
}

.route-hero p strong {
    color: #fff;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 0 27px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.route-btn.primary {
    background: var(--msr-yellow);
    color: #111;
    box-shadow: 0 12px 30px rgba(255,196,0,.18);
}

.route-btn.secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}

.route-btn:hover {
    transform: translateY(-4px);
}

.route-btn.primary:hover {
    color: #111;
    background: var(--msr-yellow-light);
    box-shadow: 0 18px 40px rgba(255,196,0,.28);
}

.route-btn.secondary:hover {
    color: #111;
    background: #fff;
}

/* =========================================================
   ROUTE MAIN
========================================================= */

.route-main-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.route-main-section::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: 50px;
    border-radius: 50%;
    background: rgba(255,196,0,.08);
    pointer-events: none;
}

.route-image-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--msr-radius);
    background: #111;
    box-shadow: var(--msr-shadow);
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease;
}

.route-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(0,0,0,.16);
}

.route-image-box img {
    display: block;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.route-image-box:hover img {
    transform: scale(1.055);
}

.route-image-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border-radius: 12px;
    background: rgba(0,0,0,.82);
    color: #fff;
    backdrop-filter: blur(10px);
}

.route-image-badge strong {
    color: var(--msr-yellow);
    font-size: 20px;
    font-weight: 900;
}

.route-image-badge span {
    font-size: 13px;
    font-weight: 600;
}

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

.route-content {
    padding-left: 35px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 13px;
    color: #8b6a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.route-content h2 {
    margin: 0 0 22px;
    color: #151515;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.route-content h2 span {
    display: block;
    color: #b08a00;
}

.route-content > p {
    margin: 0;
    color: var(--msr-text);
    font-size: 16px;
    line-height: 1.9;
}

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

.route-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 13px;
    margin-top: 28px;
}

.route-features div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.route-features div:hover {
    transform: translateX(5px);
    border-color: rgba(255,196,0,.60);
    background: #fffdf2;
}

.route-features i {
    color: #d39f00;
    font-size: 21px;
}

/* =========================================================
   PRICE BOX
========================================================= */

.route-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    padding: 18px 22px;
    border-radius: 14px;
    background: #111;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.route-price-box span {
    color: rgba(255,255,255,.70);
    font-size: 13px;
    font-weight: 600;
}

.route-price-box strong {
    color: var(--msr-yellow);
    font-size: 27px;
    font-weight: 800;
}

/* =========================================================
   BOOK BUTTON
========================================================= */

.route-book-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    text-decoration: none !important;
    transition: all .3s ease;
}

.route-book-btn:hover {
    transform: translateY(-4px);
}

/* =========================================================
   BENEFITS
========================================================= */

.route-benefits {
    position: relative;
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.route-benefits::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -280px;
    top: -200px;
    border-radius: 50%;
    border: 70px solid rgba(255,196,0,.07);
}

.route-benefits .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

.route-benefits .section-heading > span {
    display: inline-block;
    margin-bottom: 9px;
    color: #9c7800;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.route-benefits .section-heading h2 {
    margin: 0;
    color: #151515;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
}

.route-benefits .section-heading p {
    margin-top: 10px;
    color: #777;
}

/* =========================================================
   BENEFIT CARDS
========================================================= */

.benefit-card {
    position: relative;
    height: 100%;
    padding: 34px 27px;
    margin-bottom: 25px;
    border-radius: 18px;
    border: 1px solid #e9e9e9;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.045);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.benefit-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    background: rgba(255,196,0,.12);
    transition: transform .4s ease;
}

.benefit-card:hover {
    transform: translateY(-9px);
    border-color: rgba(255,196,0,.45);
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.benefit-card:hover::after {
    transform: scale(2.2);
}

.benefit-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #111;
    color: var(--msr-yellow);
    font-size: 27px;
    transition: transform .3s ease;
}

.benefit-card:hover > i {
    transform: rotate(-5deg) scale(1.08);
}

.benefit-card h3 {
    margin: 0 0 11px;
    color: #161616;
    font-size: 20px;
    font-weight: 800;
}

.benefit-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   CTA
========================================================= */

.route-cta {
    padding: 80px 0;
    background: #fff;
}

.route-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 48px 55px;
    border-radius: 25px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #101010,
            #202020
        );
    box-shadow: 0 22px 55px rgba(0,0,0,.15);
}

.route-cta-inner::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -130px;
    border-radius: 50%;
    border: 45px solid rgba(255,196,0,.08);
}

.route-cta-inner > div {
    position: relative;
    z-index: 2;
}

.route-cta-inner span {
    color: var(--msr-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.route-cta-inner h2 {
    margin: 9px 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 43px);
    font-weight: 800;
}

.route-cta-inner p {
    margin: 0;
    color: rgba(255,255,255,.68);
}

.route-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-call,
.cta-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 11px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    transition: .3s ease;
}

.cta-call {
    gap: 8px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.20);
}

.cta-book {
    color: #111;
    background: var(--msr-yellow);
}

.cta-call:hover {
    color: #111;
    background: #fff;
    transform: translateY(-3px);
}

.cta-book:hover {
    color: #111;
    background: var(--msr-yellow-light);
    transform: translateY(-3px);
}

/* =========================================================
   FOOTER FIX
========================================================= */

.route-main-section + .route-benefits {
    margin-top: 0;
}

.footer-section {
    position: relative;
}

.footer-section a {
    transition: color .25s ease;
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */

.route-floating {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 23px;
    box-shadow: 0 8px 25px rgba(0,0,0,.20);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.route-floating a:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 13px 30px rgba(0,0,0,.28);
}

.route-call {
    background: #111;
}

.route-whatsapp {
    background: #1da851;
}

.route-floating a::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: .25;
    animation: routeRing 2s infinite;
}

/* =========================================================
   PRELOADER
========================================================= */

.site-preloader {
    z-index: 999999;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes routeHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes routeFloat {

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

    50% {
        transform: translateY(25px);
    }

}

@keyframes routePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }

}

@keyframes routeBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}

@keyframes routeRing {

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

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

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

}

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

@media (max-width: 991px) {

    .route-hero {
        min-height: 470px;
    }

    .route-hero-content {
        padding: 75px 0;
    }

    .route-content {
        padding-left: 0;
        margin-top: 45px;
    }

    .route-main-section {
        padding: 75px 0;
    }

    .route-benefits {
        padding: 75px 0;
    }

    .route-cta-inner {
        padding: 40px;
    }

}

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

@media (max-width: 767px) {

    .route-hero {
        min-height: auto;
    }

    .route-hero-content {
        padding: 65px 0;
    }

    .route-hero h1 {
        font-size: 41px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .route-hero h1 span {
        display: inline-block;
        font-size: 18px;
        margin: 0 4px;
    }

    .route-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .route-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .route-btn {
        width: 100%;
    }

    .route-main-section {
        padding: 60px 0;
    }

    .route-image-box {
        border-radius: 17px;
    }

    .route-image-box img {
        min-height: 260px;
    }

    .route-content {
        margin-top: 35px;
    }

    .route-content h2 {
        font-size: 32px;
    }

    .route-features {
        grid-template-columns: 1fr;
    }

    .route-price-box {
        padding: 16px;
    }

    .route-price-box strong {
        font-size: 22px;
    }

    .route-benefits {
        padding: 60px 0;
    }

    .route-benefits .section-heading {
        margin-bottom: 30px;
    }

    .benefit-card {
        padding: 27px 22px;
    }

    .route-cta {
        padding: 55px 0;
    }

    .route-cta-inner {
        display: block;
        padding: 32px 24px;
        border-radius: 19px;
    }

    .route-cta-buttons {
        margin-top: 25px;
        flex-direction: column;
    }

    .cta-call,
    .cta-book {
        width: 100%;
    }

    .route-floating {
        right: 13px;
        bottom: 15px;
    }

    .route-floating a {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .route-floating a::before {
        width: 50px;
        height: 50px;
    }

}

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

@media (max-width: 400px) {

    .route-hero h1 {
        font-size: 35px;
    }

    .route-badge {
        font-size: 10px;
        padding: 8px 14px;
    }

    .route-price-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}

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

.route-booking-section {
    position: relative;
    padding: 95px 0;
    background: #101010;
    overflow: hidden;
}

.route-booking-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    top: -180px;
    border-radius: 50%;
    border: 80px solid rgba(255,196,0,.06);
}

.route-booking-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(255,196,0,.07);
}

.route-booking-section .container {
    position: relative;
    z-index: 2;
}

.route-booking-wrapper {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px;
    align-items: center;
}

/* =========================================================
   BOOKING HEADING
========================================================= */

.route-booking-heading {
    color: #fff;
}

.booking-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(255,196,0,.12);
    border: 1px solid rgba(255,196,0,.25);
    color: #ffc400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.route-booking-heading h2 {
    margin: 18px 0 17px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.route-booking-heading h2 span {
    display: block;
    color: #ffc400;
}

.route-booking-heading > p {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   ROUTE DISPLAY
========================================================= */

.booking-route-display {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(10px);
}

.booking-location {
    flex: 1;
    min-width: 0;
}

.booking-location small {
    display: block;
    margin-bottom: 5px;
    color: #ffc400;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.booking-location strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffc400;
    color: #111;
    font-size: 18px;
}

/* =========================================================
   FORM BOX
========================================================= */

.route-booking-form {
    position: relative;
    padding: 35px;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0,0,0,.28);
}

.route-booking-form::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
    border-radius: 50%;
    background: #ffc400;
    opacity: .10;
}

/* =========================================================
   FORM GRID
========================================================= */

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}

.booking-field label {
    display: block;
    margin-bottom: 8px;
    color: #252525;
    font-size: 12px;
    font-weight: 800;
}

.booking-input {
    position: relative;
}

.booking-input > i {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    color: #a27c00;
    font-size: 19px;
    transform: translateY(-50%);
}

.booking-input input {
    width: 100%;
    height: 52px;
    padding: 0 14px 0 45px;
    border: 1px solid #e3e3e3;
    border-radius: 11px;
    outline: none;
    background: #fafafa;
    color: #222;
    font-size: 14px;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.booking-input input:focus {
    border-color: #ffc400;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,196,0,.10);
}

.booking-input input::placeholder {
    color: #aaa;
}

.booking-readonly input {
    background: #f4f4f4;
    color: #555;
    cursor: not-allowed;
}

/* =========================================================
   SUBMIT
========================================================= */

.booking-submit-row {
    margin-top: 25px;
}

.route-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    background: #ffc400;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(255,196,0,.20);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.route-submit-btn span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.route-submit-btn > i {
    font-size: 21px;
    transition: transform .3s ease;
}

.route-submit-btn:hover {
    background: #ffd84d;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(255,196,0,.28);
}

.route-submit-btn:hover > i {
    transform: translateX(5px);
}

/* =========================================================
   TRUST
========================================================= */

.booking-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #eee;
}

.booking-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
}

.booking-trust i {
    color: #b48600;
    font-size: 16px;
}

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

@media (max-width: 991px) {

    .route-booking-section {
        padding: 75px 0;
    }

    .route-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .route-booking-heading > p {
        max-width: 650px;
    }

}

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

@media (max-width: 767px) {

    .route-booking-section {
        padding: 60px 0;
    }

    .route-booking-wrapper {
        gap: 30px;
    }

    .route-booking-heading h2 {
        font-size: 32px;
    }

    .booking-route-display {
        padding: 14px;
    }

    .booking-location strong {
        font-size: 13px;
    }

    .booking-arrow {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .route-booking-form {
        padding: 22px 17px;
        border-radius: 17px;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-input input {
        height: 50px;
    }

    .booking-trust {
        gap: 10px;
    }

    .booking-trust span {
        font-size: 10px;
    }

}