* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", sans-serif;
    color: #172033;
    background: #fff;
    overflow-x: hidden
}

img {
    width: 100%;
    display: block;
    object-fit: cover
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: #101a33;
    color: #dce6ff;
    font-size: 13px
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-inner>div {
    display: flex;
    gap: 18px
}

.topbar a {
    color: #fff
}

.header {
    height: 100px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: .35s;
    border-bottom: 1px solid transparent
}

.header.scrolled {
    height: 80px;
    box-shadow: 0 10px 35px rgba(16, 26, 51, .09);
    border-color: #edf0f6
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 23px;
    font-family: "Playfair Display";
    font-weight: 800;
    background: linear-gradient(135deg, #ff6a00, #ffb703);
    box-shadow: 0 10px 22px rgba(255, 106, 0, .25)
}

.logo strong {
    display: block;
    font-size: 20px;
    letter-spacing: 1px
}

.logo span {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #69738a
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: #586176;
    position: relative;
    padding: 8px 0
}

.nav a:after {
    content: "";
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ff6a00;
    transition: .25s
}

.nav a:hover,
.nav a.active {
    color: #172033
}

.nav a:hover:after,
.nav a.active:after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px
}

.mini-call {
    font-size: 13px;
    font-weight: 800;
    color: #24304a
}

.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 13px;
    padding: 15px 22px;
    font-weight: 800;
    font-size: 14px;
    transition: .3s
}

.btn-primary {
    background: linear-gradient(135deg, #ff6500, #ff9800);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 106, 0, .23)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(255, 106, 0, .3)
}

.btn-white {
    background: #fff;
    color: #172033
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    width: 42px;
    height: 42px
}

.menu-btn i {
    display: block;
    height: 2px;
    background: #172033;
    margin: 6px 0;
    width: 26px;
    transition: .3s
}
/* =====================================================
   PREMIUM HERO ENHANCEMENT
===================================================== */

.hero {
    position: relative;
    min-height: 780px;
    overflow: visible;
    background: #0d1528;
}


/* HERO SLIDER */

.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}


.slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;

    overflow: hidden;
}


.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* HERO IMAGE */

.slide > img {
    width: 100%;
    height: 100%;

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

    transform: scale(1.08);

    transition: transform 8s ease;
}


.slide.active > img {
    transform: scale(1);
}


/* DARK OVERLAY */

.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 24, .90) 0%,
            rgba(7, 16, 33, .72) 38%,
            rgba(8, 18, 35, .30) 68%,
            rgba(8, 18, 35, .12) 100%
        );

    z-index: 1;
}


.hero-shade.warm {
    background:
        linear-gradient(
            90deg,
            rgba(39, 14, 3, .88),
            rgba(65, 27, 6, .62),
            rgba(60, 28, 7, .20)
        );
}


.hero-shade.cool {
    background:
        linear-gradient(
            90deg,
            rgba(3, 19, 37, .92),
            rgba(5, 43, 68, .64),
            rgba(7, 67, 92, .20)
        );
}


/* COLOR GLOW */

.hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(255, 105, 0, .18);

    filter: blur(100px);

    z-index: 1;

    pointer-events: none;
}


.glow-orange {
    background: rgba(255, 111, 0, .25);
}


.glow-blue {
    background: rgba(0, 162, 255, .20);
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    z-index: 5;
}


.hero-copy {
    max-width: 760px;

    padding-top: 20px;
}


/* TOP LINE */

.hero-top-line {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}


.slide-number {
    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.35);

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);
}


/* HERO TAG */

.hero .tag-light {
    margin: 0;

    padding: 10px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(15px);

    color: #fff;

    font-size: 10px;

    letter-spacing: 1.6px;
}


/* HERO HEADING */

.hero-copy h1 {
    color: #fff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    max-width: 780px;

    margin-bottom: 22px;

    text-shadow:
        0 10px 35px rgba(0,0,0,.28);
}


.hero-copy h1 em {
    display: block;

    font-style: normal;

    background:
        linear-gradient(
            90deg,
            #ff7a00,
            #ffc15a
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* HERO DESCRIPTION */

.hero-description {
    max-width: 610px;

    color: rgba(255,255,255,.88);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 32px;

    text-shadow:
        0 4px 20px rgba(0,0,0,.30);
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 34px;
}


.hero .btn-primary {
    min-height: 55px;

    padding: 0 24px;

    border-radius: 14px;
}


.btn-glass {
    min-height: 55px;

    padding: 0 24px;

    border-radius: 14px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.32);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(15px);
}


.btn-glass:hover {
    background: #fff;

    color: #15213b;

    transform: translateY(-3px);
}


/* HERO HIGHLIGHTS */

.hero-highlights {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.hero-highlight {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 245px;

    padding: 13px 16px;

    border-radius: 16px;

    background: rgba(8,16,31,.35);

    border: 1px solid rgba(255,255,255,.14);

    backdrop-filter: blur(16px);
}


.highlight-icon {
    width: 38px;
    height: 38px;

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

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ff6500,
            #ffae00
        );

    color: #fff;

    flex-shrink: 0;
}


.hero-highlight strong {
    display: block;

    font-size: 12px;

    color: #fff;

    margin-bottom: 3px;
}


.hero-highlight small {
    display: block;

    color: rgba(255,255,255,.62);

    font-size: 10px;
}


/* VERTICAL SIDE TEXT */

.hero-side-text {
    position: absolute;

    right: 35px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(90deg);

    transform-origin: right center;

    z-index: 5;
}


.hero-side-text span {
    color: rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 800;
}


/* =====================================================
   PREMIUM SLIDER NAVIGATION
===================================================== */

.slider-navigation {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 125px;

    z-index: 10;

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

    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


.slider-counter {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 12px;

    font-weight: 800;
}


.slider-counter i {
    width: 45px;
    height: 1px;

    background: rgba(255,255,255,.45);
}


/* CONTROLS */

.slider-controls {
    position: static;

    transform: none;

    display: flex;
    align-items: center;

    gap: 15px;
}


.slider-controls button {
    width: 46px;
    height: 46px;

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

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.30);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    color: #fff;

    cursor: pointer;

    transition: .3s;
}


.slider-controls button:hover {
    background: #ff6a00;

    border-color: #ff6a00;

    transform: scale(1.08);
}


/* DOTS */

.dots {
    display: flex;
    align-items: center;

    gap: 7px;
}


.dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.45);
}


.dots button.active {
    width: 26px;

    border-radius: 20px;

    background: #ff7900;
}


/* =====================================================
   PREMIUM TRIP SEARCH BOX
===================================================== */

.hero-search-wrap {
    position: absolute;

    left: 0;
    right: 0;

    bottom: -70px;

    z-index: 20;
}


.quick-search {
    min-height: 140px;

    display: grid;

    grid-template-columns:
        1.1fr
        1.3fr
        1fr
        1fr
        auto;

    align-items: center;

    gap: 10px;

    padding: 18px;

    border-radius: 24px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 25px 70px
        rgba(17,31,57,.20);

    backdrop-filter: blur(20px);
}


/* SEARCH INTRO */

.search-intro {
    padding: 10px 20px;
}


.search-intro span {
    display: block;

    color: #ff6500;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}


.search-intro strong {
    font-family: "Playfair Display", serif;

    color: #172033;

    font-size: 19px;

    line-height: 1.25;
}


/* SEARCH FIELD */

.search-field {
    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 74px;

    padding: 12px 16px;

    border-left: 1px solid #e8ecf2;
}


.field-icon {
    width: 38px;
    height: 38px;

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

    border-radius: 12px;

    background: #fff2e9;

    font-size: 17px;
}


.search-field > div {
    flex: 1;
}


.search-field label {
    display: block;

    font-size: 9px;

    color: #8a94a6;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 6px;
}


.search-field select,
.search-field input {
    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: #25314a;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;
}


.search-submit {
    min-height: 65px;

    min-width: 180px;

    border-radius: 16px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .quick-search {
        grid-template-columns:
            1fr
            1fr
            1fr;
    }

    .search-intro {
        grid-column: span 3;

        padding-bottom: 0;
    }

    .search-field {
        border-left: 0;
        border-top: 1px solid #edf0f4;
    }

    .search-submit {
        grid-column: span 3;
    }

}


@media (max-width: 768px) {

    .hero {
        min-height: 850px;
    }

    .hero-slider {
        height: 680px;
    }

    .hero-copy h1 {
        font-size: 52px;
    }

    .hero-side-text {
        display: none;
    }

    .hero-highlights {
        display: none;
    }

    .slider-navigation {
        bottom: 115px;
    }

    .hero-search-wrap {
        bottom: -165px;
    }

    .quick-search {
        grid-template-columns: 1fr;

        padding: 16px;
    }

    .search-intro {
        grid-column: auto;

        text-align: center;
    }

    .search-field {
        border-left: 0;

        border-top: 1px solid #edf0f4;
    }

    .search-submit {
        grid-column: auto;

        width: 100%;
    }

}


@media (max-width: 520px) {

    .hero-slider {
        height: 650px;
    }

    .hero-copy {
        padding-top: 30px;
    }

    .hero-top-line {
        gap: 10px;
    }

    .slide-number {
        width: 40px;
        height: 40px;
    }

    .hero .tag-light {
        font-size: 8px;

        letter-spacing: 1px;
    }

    .hero-copy h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .slider-navigation {
        width: calc(100% - 30px);

        bottom: 125px;
    }

    .slider-counter {
        display: none;
    }

    .slider-navigation {
        justify-content: center;
    }

    .hero-search-wrap {
        bottom: -210px;
    }

}
.quick-search {
    min-height: 105px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(18, 29, 53, .16);
    padding: 18px;
    display: grid;
    grid-template-columns: 1.45fr 1fr .9fr auto;
    gap: 10px
}

.quick-search>div {
    padding: 7px 15px;
    border-right: 1px solid #e8ebf0
}

.quick-search>div:nth-last-child(2) {
    border: 0
}

.quick-search label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #8b93a4;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 6px
}

.quick-search select,
.quick-search input {
    border: 0;
    outline: 0;
    width: 100%;
    font: 700 14px "DM Sans";
    color: #24304a;
    background: transparent
}

.quick-search .btn {
    align-self: center;
    min-width: 155px
}

.stats {
    padding: 10px 0 20px;
    background: #fbfcff
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stats-grid div {
    text-align: center;
    border-right: 1px solid #e7ebf2
}

.stats-grid div:last-child {
    border: 0
}

.stats strong {
    display: block;
    font-family: "Playfair Display";
    font-size: 42px;
    color: #15213b
}

.stats span {
    font-size: 13px;
    color: #7a8395
}

.section {
    padding: 50px 0
}

.intro-grid,
.testimonial-wrap,
.contact-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.intro-images {
    min-height: 560px;
    position: relative;
    padding: 0 80px 55px 0
}

.img-main {
    height: 510px;
    border-radius: 24px
}

.img-small {
    position: absolute;
    width: 230px;
    height: 250px;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(18, 29, 53, .2)
}

.experience {
    position: absolute;
    left: 30px;
    bottom: 25px;
    background: #15213b;
    color: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2)
}

.experience strong,
.experience span {
    display: block
}

.experience strong {
    font-size: 18px
}

.experience span {
    font-size: 12px;
    color: #ffb15a;
    margin-top: 4px
}

.intro-copy h2,
.section-head h2,
.center-head h2,
.testimonial-copy h2,
.faq-grid h2,
.contact-info h2 {
    font-size: clamp(38px, 4vw, 56px);
    letter-spacing: -1.5px
}

.intro-copy p,
.testimonial-copy p,
.faq-grid>div p,
.contact-info>p {
    color: #717b8f;
    line-height: 1.8;
    margin: 24px 0
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px
}

.check-grid span {
    font-size: 14px;
    font-weight: 700;
    color: #303a4f
}

.text-link {
    font-weight: 800;
    color: #e95700
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px
}

.section-head>p {
    max-width: 360px;
    color: #7a8395;
    line-height: 1.7
}

.packages {
    background: linear-gradient(180deg, #fff 0, #f7f9ff 100%)
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.package-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(19, 31, 55, .05);
    transition: .35s
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(19, 31, 55, .13)
}

.package-image {
    height: 260px;
    position: relative;
    overflow: hidden
}

.package-image img {
    height: 100%;
    transition: .6s
}

.package-card:hover img {
    transform: scale(1.08)
}

.package-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(7, 12, 24, .65))
}

.duration,
.price {
    position: absolute;
    z-index: 1
}

.duration {
    left: 15px;
    top: 15px;
    background: rgba(255, 255, 255, .94);
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800
}

.price {
    right: 15px;
    bottom: 15px;
    color: #fff;
    font-weight: 800;
    font-size: 21px
}

.price small {
    font-size: 10px;
    font-weight: 500
}

.package-body {
    padding: 25px
}

.location {
    font-size: 10px;
    color: #e65a00;
    letter-spacing: 1.5px;
    font-weight: 800
}

.package-body h3 {
    font-size: 23px;
    margin: 8px 0
}

.package-body p {
    font-size: 13px;
    line-height: 1.7;
    color: #747d8e;
    min-height: 68px
}

.card-foot {
    border-top: 1px solid #edf0f4;
    margin-top: 18px;
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #7b8494
}

.card-foot a {
    color: #e75b00;
    font-weight: 800
}

.popular {
    position: absolute;
    z-index: 3;
    right: 15px;
    top: 0;
    background: #ff6500;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 0 0 10px 10px
}

.center-head {
    text-align: center;
    margin-bottom: 45px
}

.destinations {
    background: #111b31;
    color: #fff
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 270px;
    gap: 18px
}

.destination {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0
}

.destination.tall {
    grid-row: span 2
}

.destination.wide {
    grid-column: span 2
}

.destination:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(4, 10, 21, .85))
}

.destination img {
    height: 100%;
    transition: .6s
}

.destination:hover img {
    transform: scale(1.08)
}

.destination div {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 22px
}

.destination span {
    font-size: 11px;
    color: #ffb15a;
    font-weight: 800
}

.destination h3 {
    font-size: 28px;
    margin: 5px 0
}

.destination p {
    font-size: 12px;
    color: #e4e9f2
}

.services {
    background: #fff
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 430px;
    color: #fff
}

.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(8, 16, 31, .92))
}

.service-card img {
    height: 100%;
    transition: .6s
}

.service-card:hover img {
    transform: scale(1.09)
}

.service-card>div {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 25px
}

.service-card span {
    color: #ffb15a;
    font-weight: 800
}

.service-card h3 {
    font-size: 27px;
    margin: 7px 0
}

.service-card p {
    font-size: 13px;
    line-height: 1.65;
    color: #dce4ef
}

.cta-band {
    background: linear-gradient(120deg, #101a33, #213a6b);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta-band:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ff6a00;
    filter: blur(120px);
    opacity: .25;
    right: -100px;
    top: -200px
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.cta-content h2 {
    font-size: clamp(38px, 5vw, 60px)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-auto-rows: 210px;
    gap: 15px
}

.gallery-grid figure {
    overflow: hidden;
    border-radius: 16px
}

.gallery-grid img {
    height: 100%;
    transition: .6s
}

.gallery-grid figure:hover img {
    transform: scale(1.08)
}

.g1 {
    grid-row: span 2
}

.g2 {
    grid-column: span 2
}

.g4 {
    grid-column: span 2
}

.testimonials {
    background: #f7f9ff
}

.testimonial-copy {
    padding-right: 40px
}

.testimonial-nav {
    display: flex;
    gap: 10px
}

.testimonial-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid #dfe4ee;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px
}

.testimonial-box {
    background: #15213b;
    color: #fff;
    border-radius: 24px;
    padding: 55px;
    min-height: 360px;
    position: relative;
    overflow: hidden
}

.quote-mark {
    font-family: "Playfair Display";
    font-size: 120px;
    line-height: .5;
    color: #ff7900;
    opacity: .8
}

.testimonial {
    display: none
}

.testimonial.active {
    display: block;
    animation: fadeUp .45s ease
}

.stars {
    color: #ffae00;
    letter-spacing: 3px;
    margin: 8px 0 20px
}

.testimonial p {
    font-family: "Playfair Display";
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 25px
}

.testimonial h4 {
    font-size: 15px
}

.testimonial span {
    font-size: 12px;
    color: #aebbd0
}

.faq {
    background: #fff
}

.faq-list {
    display: grid;
    gap: 12px
}

.faq-item {
    border: 1px solid #e6eaf1;
    border-radius: 14px;
    overflow: hidden
}

.faq-item button {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font: 700 15px "DM Sans";
    color: #25314a;
    cursor: pointer
}

.faq-item button b {
    font-size: 22px;
    color: #e65a00;
    transition: .3s
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .35s;
    color: #727c8e;
    line-height: 1.7;
    font-size: 14px
}

.faq-answer::first-line {}

.faq-item .faq-answer {
    padding: 0 20px
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    padding: 0 20px 20px
}

.faq-item.open button b {
    transform: rotate(45deg)
}

.contact {
    background: #fbfcff
}

.contact-grid {
    align-items: start
}

.contact-details {
    display: grid;
    gap: 13px
}

.contact-details a,
.contact-details>div {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid #e6eaf1
}

.contact-details b {
    font-size: 12px;
    color: #e75b00;
    margin-bottom: 5px
}

.contact-details span {
    font-size: 15px;
    font-weight: 700;
    color: #344058
}

.contact-form {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 20px 55px rgba(25, 37, 61, .08)
}

.form-head span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #e75b00
}

.form-head h3 {
    font-size: 27px;
    margin: 6px 0 22px
}

.contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #677186;
    margin-bottom: 14px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid #e1e5ec;
    border-radius: 10px;
    padding: 13px;
    font: 500 14px "DM Sans";
    outline: none;
    color: #28334a;
    transition: .2s
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff7900;
    box-shadow: 0 0 0 3px rgba(255, 121, 0, .09)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.submit-btn {
    width: 100%;
    margin-top: 3px
}

footer {
    background: #101a33;
    color: #fff;
    padding-top: 70px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 45px;
    padding-bottom: 55px
}

.footer-logo strong {
    color: #fff
}

.footer-logo span {
    color: #9aa8c1
}

.footer-grid p {
    font-size: 13px;
    line-height: 1.7;
    color: #aab5c9;
    margin-top: 17px
}

.footer-grid h4 {
    font-size: 14px;
    margin-bottom: 17px
}

.footer-grid>div:not(:first-child) a {
    display: block;
    font-size: 13px;
    color: #b9c4d7;
    margin: 10px 0
}

.footer-call {
    font-size: 20px !important;
    font-weight: 800;
    color: #ff9d50 !important
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #93a0b6
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    background: #20c76b;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(32, 199, 107, .35);
    animation: pulse 2.5s infinite
}

.whatsapp-float:first-letter {
    font-size: 19px
}

.back-top {
    position: fixed;
    right: 26px;
    bottom: 88px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #15213b;
    color: #fff;
    z-index: 89;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: none
}

.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1000;
    display: grid;
    place-items: center;
    transition: .6s
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 4px solid #e8ecf1;
    border-top-color: #ff6500;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {
    50% {
        transform: scale(1.06);
        box-shadow: 0 12px 38px rgba(32, 199, 107, .55)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left {
    transform: translateX(-45px)
}

.reveal-right {
    transform: translateX(45px)
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: none
}

@media(max-width:1050px) {
    .nav {
        gap: 17px
    }

    .nav-cta .mini-call {
        display: none
    }

    .intro-grid,
    .testimonial-wrap,
    .contact-grid,
    .faq-grid {
        gap: 45px
    }

    .package-grid,
    .service-grid {
        gap: 17px
    }

    .footer-grid {
        gap: 28px
    }

    .hero-slider {
        height: 620px
    }
}

@media(max-width:850px) {
    .topbar-inner {
        justify-content: center
    }

    .topbar-inner p {
        display: none
    }

    .header {
        height: 117px
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        width: 100%;
        box-shadow: 0 18px 35px rgba(0, 0, 0, .1);
        transform: translateY(-140%);
        opacity: 0;
        transition: .35s
    }

    .nav.open {
        transform: none;
        opacity: 1
    }

    .nav a {
        padding: 12px
    }

    .menu-btn {
        display: block
    }

    .nav-cta {
        margin-left: auto
    }

    .nav-cta .btn {
        display: none
    }

    .quick-search {
        grid-template-columns: 1fr 1fr
    }

    .quick-search .btn {
        grid-column: span 2
    }

    .quick-search>div:nth-child(2) {
        border: 0
    }

    .hero-search-wrap {
        bottom: -120px
    }

    .stats {
        padding-top: 185px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }

    .stats-grid div:nth-child(2) {
        border: 0
    }

    .intro-grid,
    .testimonial-wrap,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .intro-copy {
        order: -1
    }

    .package-grid {
        grid-template-columns: 1fr 1fr
    }

    .package-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 8px)
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        height: 300px
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .footer-grid>div:last-child {
        grid-column: span 3
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }

    .g2,
    .g4 {
        grid-column: span 1
    }

    .g1 {
        grid-row: span 2
    }

    .section {
        padding: 80px 0
    }
}

@media(max-width:580px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .topbar {
        display: none
    }

    .header,
    .header.scrolled {
        height: 90px
    }

    .nav {
        top: 68px
    }

    .logo-icon {
        width: 43px;
        height: 43px
    }

    .logo strong {
        font-size: 18px
    }

    .mini-call {
        display: none
    }

    .hero-slider {
        height: 620px
    }

    .hero-copy {
        padding-bottom: 100px
    }

    .hero-copy h1 {
        font-size: 46px;
        letter-spacing: -1px
    }

    .hero-copy p {
        font-size: 15px
    }

    .hero-trust {
        display: grid;
        gap: 8px
    }

    .slider-controls {
        bottom: 135px
    }

    .hero-search-wrap {
        bottom: -173px
    }

    .quick-search {
        grid-template-columns: 1fr;
        padding: 14px
    }

    .quick-search>div {
        border: 0;
        border-bottom: 1px solid #edf0f4;
        padding: 8px
    }

    .quick-search .btn {
        grid-column: auto;
        width: 100%
    }

    .stats {
        padding-top: 20px
    }

    .stats strong {
        font-size: 34px
    }

    .stats span {
        font-size: 11px
    }

    .section {
        padding: 65px 0
    }

    .section-head,
    .cta-content {
        display: block
    }

    .section-head>p {
        margin-top: 15px
    }

    .intro-images {
        min-height: 410px;
        padding: 0 45px 40px 0
    }

    .img-main {
        height: 360px
    }

    .img-small {
        width: 145px;
        height: 155px
    }

    .experience {
        left: 12px;
        bottom: 0;
        padding: 13px
    }

    .intro-copy h2,
    .section-head h2,
    .center-head h2,
    .testimonial-copy h2,
    .faq-grid h2,
    .contact-info h2 {
        font-size: 39px
    }

    .check-grid {
        grid-template-columns: 1fr;
        font-size: 13px
    }

    .package-grid {
        grid-template-columns: 1fr
    }

    .package-card:last-child {
        grid-column: auto;
        max-width: none
    }

    .package-image {
        height: 240px
    }

    .destination-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px
    }

    .destination.tall,
    .destination.wide {
        grid-row: auto;
        grid-column: auto
    }

    .destination {
        height: 240px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 145px
    }

    .g1 {
        grid-row: span 2
    }

    .testimonial-box {
        padding: 35px 25px;
        min-height: 380px
    }

    .testimonial p {
        font-size: 20px
    }

    .cta-content .btn {
        margin-top: 25px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 24px 17px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:first-child,
    .footer-grid>div:last-child {
        grid-column: span 2
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        padding: 13px
    }

    .whatsapp-float span {
        display: none
    }

    .back-top {
        right: 17px;
        bottom: 75px
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(30px)
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

/* =====================================================
   PREMIUM TRAVEL SHOWCASE GALLERY
   UNIQUE CLASSES
===================================================== */

.travel-showcase-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}


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

.travel-showcase-heading {
    max-width: 720px;
    margin: 55px auto 50px;
    text-align: center;
}


.travel-showcase-heading h2 {
    margin: 14px 0 14px;
}


.travel-showcase-heading p {
    max-width: 560px;
    margin: 0 auto;
}


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

.travel-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;

    width: 100%;
}


/* =====================================================
   UNIFORM CARD
===================================================== */

.travel-showcase-card {
    position: relative;

    width: 100%;
    height: 330px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border-radius: 18px;

    background: #edf1f5;

    box-shadow:
        0 12px 30px rgba(18, 35, 60, 0.10);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


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

.travel-showcase-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: inherit;
}


.travel-showcase-image img {
    display: block;

    width: 100%;
    height: 100%;

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

    transition:
        transform 0.7s cubic-bezier(.2, .8, .2, 1),
        filter 0.5s ease;
}


/* =====================================================
   HOVER OVERLAY
===================================================== */

.travel-showcase-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 102, 0, 0.18),
            rgba(15, 32, 55, 0.30)
        );

    opacity: 0;

    transition: opacity 0.45s ease;

    pointer-events: none;
}


/* =====================================================
   PREMIUM HOVER EFFECT
===================================================== */

.travel-showcase-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(18, 35, 60, 0.20);
}


.travel-showcase-card:hover img {
    transform: scale(1.12);

    filter: brightness(0.88);
}


.travel-showcase-card:hover .travel-showcase-image::after {
    opacity: 1;
}


/* =====================================================
   RESPONSIVE
===================================================== */


/* Laptop / Small Desktop */

@media (max-width: 1200px) {

    .travel-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .travel-showcase-card {
        height: 310px;
    }

}


/* Tablet */

@media (max-width: 768px) {

    .travel-showcase-heading {
        margin-bottom: 35px;
    }

    .travel-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .travel-showcase-card {
        height: 280px;
        border-radius: 16px;
    }

}


/* Mobile */

@media (max-width: 520px) {

    .travel-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .travel-showcase-card {
        height: 280px;
        border-radius: 15px;
    }

}

/* =========================================
   VOYAGE HERO SECTION
========================================= */

.voyage-hero-section {
    position: relative;
    min-height: 810px;
    background: #0c1426;
}


/* =========================================
   SLIDER
========================================= */

.voyage-hero-slider {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}


.voyage-hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;

    z-index: 1;
}


.voyage-hero-slide.voyage-active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


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

.voyage-slide-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

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

    transform: scale(1.08);

    transition: transform 7s ease;
}


.voyage-hero-slide.voyage-active .voyage-slide-image {
    transform: scale(1);
}


/* =========================================
   OVERLAY
========================================= */

.voyage-slide-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 27, 0.92) 0%,
            rgba(7, 18, 38, 0.78) 38%,
            rgba(7, 18, 38, 0.38) 70%,
            rgba(7, 18, 38, 0.18) 100%
        );
}


.voyage-overlay-warm {
    background:
        linear-gradient(
            90deg,
            rgba(45, 17, 4, 0.92),
            rgba(79, 34, 8, 0.68),
            rgba(48, 20, 6, 0.25)
        );
}


.voyage-overlay-blue {
    background:
        linear-gradient(
            90deg,
            rgba(2, 21, 39, 0.94),
            rgba(4, 52, 76, 0.70),
            rgba(6, 80, 104, 0.22)
        );
}


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

.voyage-slide-content {
    position: relative;

    width: 100%;
    height: 100%;

    z-index: 5;

    display: flex;
    align-items: center;
}


.voyage-content-box {
    position: relative;

    max-width: 760px;

    color: #ffffff;

    padding-bottom: 45px;

    animation: voyageContentEnter 0.9s ease both;
}


.voyage-hero-slide:not(.voyage-active) .voyage-content-box {
    animation: none;
}


@keyframes voyageContentEnter {

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

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

}


/* =========================================
   TOP BADGE
========================================= */

.voyage-top-badge {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 24px;
}


.voyage-slide-count {
    width: 46px;
    height: 46px;

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

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);

    font-size: 13px;
    font-weight: 800;
}


.voyage-location-tag {
    padding: 10px 17px;

    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


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

.voyage-content-box h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -2px;

    text-shadow:
        0 10px 35px rgba(0,0,0,0.25);
}


.voyage-content-box h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ff7b00,
            #ffc45b
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.voyage-content-box > p {
    max-width: 620px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.88);

    font-size: 17px;

    line-height: 1.8;
}


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

.voyage-action-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 32px;
}


.voyage-main-button,
.voyage-outline-button {
    min-height: 55px;

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

    gap: 12px;

    padding: 0 24px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.35s ease;
}


.voyage-main-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6200,
            #ff9d00
        );

    box-shadow:
        0 15px 30px rgba(255,100,0,0.25);
}


.voyage-main-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(255,100,0,0.35);
}


.voyage-outline-button {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.35);

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);
}


.voyage-outline-button:hover {
    color: #172033;

    background: #ffffff;

    transform: translateY(-4px);
}


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

.voyage-trust-row {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


.voyage-trust-card {
    min-width: 240px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;

    background: rgba(5,15,30,0.28);

    backdrop-filter: blur(14px);
}


.voyage-trust-card > strong {
    width: 40px;
    height: 40px;

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

    flex-shrink: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ff6500,
            #ffae00
        );
}


.voyage-trust-card b {
    display: block;

    color: #ffffff;

    font-size: 12px;

    margin-bottom: 4px;
}


.voyage-trust-card small {
    color: rgba(255,255,255,0.65);

    font-size: 10px;
}


/* =========================================
   SLIDER BOTTOM NAVIGATION
========================================= */

.voyage-slider-bottom {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 115px;

    z-index: 20;
}


.voyage-navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.voyage-slide-status {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
}


.voyage-slide-status i {
    width: 45px;
    height: 1px;

    background: rgba(255,255,255,0.50);
}


.voyage-slider-buttons {
    display: flex;
    align-items: center;

    gap: 14px;
}


.voyage-slider-buttons button {
    width: 46px;
    height: 46px;

    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);

    cursor: pointer;

    font-size: 20px;

    transition: 0.3s ease;
}


.voyage-slider-buttons button:hover {
    background: #ff7000;

    border-color: #ff7000;

    transform: scale(1.08);
}


.voyage-slider-dots {
    display: flex;
    align-items: center;

    gap: 7px;
}


.voyage-dot {
    width: 7px !important;
    height: 7px !important;

    min-height: auto !important;

    padding: 0 !important;

    border: none !important;
    border-radius: 50% !important;

    background: rgba(255,255,255,0.45) !important;

    cursor: pointer;

    transition: 0.3s ease;
}


.voyage-dot.voyage-dot-active {
    width: 28px !important;

    border-radius: 20px !important;

    background: #ff7000 !important;
}


/* =========================================
   TRIP PLANNER
========================================= */

.voyage-trip-planner {
    position: absolute;

    left: 0;
    right: 0;

    bottom: -75px;

    z-index: 30;
}


.voyage-trip-form {
    display: grid;

    grid-template-columns:
        1.15fr
        1.25fr
        1fr
        1fr
        auto;

    align-items: center;

    gap: 8px;

    min-height: 135px;

    padding: 18px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(18,32,55,0.20);
}


/* =========================================
   FORM TITLE
========================================= */

.voyage-trip-title {
    padding: 10px 18px;
}


.voyage-trip-title span {
    display: block;

    margin-bottom: 8px;

    color: #ff6500;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.voyage-trip-title strong {
    color: #172033;

    font-size: 20px;

    line-height: 1.25;
}


/* =========================================
   FORM FIELD
========================================= */

.voyage-input-group {
    display: flex;
    align-items: center;

    gap: 11px;

    min-height: 70px;

    padding: 10px 15px;

    border-left: 1px solid #e7ebf0;
}


.voyage-input-icon {
    width: 38px;
    height: 38px;

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

    flex-shrink: 0;

    border-radius: 12px;

    background: #fff1e8;

    font-size: 17px;
}


.voyage-input-group > div {
    flex: 1;
}


.voyage-input-group label {
    display: block;

    margin-bottom: 6px;

    color: #8b94a5;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.voyage-input-group select,
.voyage-input-group input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #243047;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   SEARCH BUTTON
========================================= */

.voyage-search-button {
    min-width: 175px;
    min-height: 65px;

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

    gap: 10px;

    border: none;
    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6200,
            #ff9d00
        );

    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    transition: 0.3s ease;

    box-shadow:
        0 12px 25px rgba(255,100,0,0.20);
}


.voyage-search-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(255,100,0,0.30);
}


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

@media (max-width: 1100px) {

    .voyage-trip-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .voyage-trip-title {
        grid-column: span 3;
    }

    .voyage-input-group {
        border-left: none;
        border-top: 1px solid #edf0f4;
    }

    .voyage-search-button {
        grid-column: span 3;

        width: 100%;
    }

}


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

@media (max-width: 768px) {

    .voyage-hero-section {
        min-height: 890px;
    }

    .voyage-hero-slider {
        height: 690px;
    }

    .voyage-content-box {
        padding-bottom: 80px;
    }

    .voyage-content-box h1 {
        font-size: 52px;
    }

    .voyage-trust-row {
        display: none;
    }

    .voyage-slider-bottom {
        bottom: 110px;
    }

    .voyage-trip-planner {
        bottom: -180px;
    }

    .voyage-trip-form {
        grid-template-columns: 1fr;

        padding: 16px;
    }

    .voyage-trip-title {
        grid-column: auto;

        text-align: center;
    }

    .voyage-input-group {
        border-left: none;
        border-top: 1px solid #edf0f4;
    }

    .voyage-search-button {
        grid-column: auto;

        width: 100%;
    }

}


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

@media (max-width: 520px) {

    .voyage-hero-section {
        min-height: 930px;
    }

    .voyage-hero-slider {
        height: 670px;
    }

    .voyage-content-box {
        padding-bottom: 110px;
    }

    .voyage-top-badge {
        gap: 10px;
    }

    .voyage-slide-count {
        width: 40px;
        height: 40px;
    }

    .voyage-location-tag {
        padding: 9px 12px;

        font-size: 8px;

        letter-spacing: 1px;
    }

    .voyage-content-box h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .voyage-content-box > p {
        font-size: 14px;

        line-height: 1.7;
    }

    .voyage-action-buttons {
        flex-direction: column;
    }

    .voyage-main-button,
    .voyage-outline-button {
        width: 100%;
    }

    .voyage-slide-status {
        display: none;
    }

    .voyage-navigation-inner {
        justify-content: center;
    }

    .voyage-slider-bottom {
        bottom: 120px;
    }

    .voyage-trip-planner {
        bottom: -225px;
    }

}

/* =========================================
   JOURNEY PREMIUM BOOKING PANEL
========================================= */

.journey-booking-panel {
    position: absolute;

    left: 0;
    right: 0;

    bottom: -82px;

    z-index: 50;
}


/* =========================================
   MAIN CARD
========================================= */

.journey-booking-card {
    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;

    min-height: 120px;

    padding: 10px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.98),
            rgba(249,252,255,0.98)
        );

    border: 1px solid rgba(255,255,255,0.85);

    box-shadow:
        0 25px 70px rgba(13, 28, 52, 0.18);

    overflow: hidden;
}


/* Decorative Color Glow */

.journey-booking-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    background: rgba(255, 116, 0, 0.10);

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================
   INTRO
========================================= */

.journey-booking-intro {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 13px;

    width: 245px;

    padding: 18px 20px;

    border-radius: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #102a43,
            #173f63
        );

    overflow: hidden;
}


.journey-booking-intro::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
}


.journey-intro-icon {
    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

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

    flex-shrink: 0;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #ff6a00,
            #ffb000
        );

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);

    font-size: 22px;
}


.journey-intro-text {
    position: relative;
    z-index: 2;
}


.journey-intro-text span {
    display: block;

    margin-bottom: 5px;

    color: #ffbd66;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.journey-intro-text h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.25;
}


.journey-intro-text h3 strong {
    color: #ff9f32;
}


/* =========================================
   BOOKING FIELDS AREA
========================================= */

.journey-booking-fields {
    position: relative;

    z-index: 2;

    flex: 1;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: center;

    gap: 10px;

    padding: 10px 18px;
}


/* =========================================
   INDIVIDUAL FIELD
========================================= */

.journey-booking-field {
    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 78px;

    padding: 12px 14px;

    border: 1px solid #edf0f4;

    border-radius: 18px;

    background: #ffffff;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.journey-booking-field:hover,
.journey-booking-field:focus-within {
    border-color: rgba(255, 112, 0, 0.50);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(17, 39, 65, 0.08);
}


/* =========================================
   FIELD ICON
========================================= */

.journey-field-symbol {
    width: 43px;
    height: 43px;

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

    flex-shrink: 0;

    border-radius: 14px;

    background: #fff3e8;

    font-size: 18px;
}


.journey-field-content {
    flex: 1;

    min-width: 0;
}


.journey-field-content label {
    display: block;

    margin-bottom: 6px;

    color: #9aa3b1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.journey-field-content select,
.journey-field-content input {
    width: 100%;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #172033;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


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

.journey-booking-submit {
    position: relative;

    z-index: 2;

    min-width: 185px;

    margin: 10px;

    padding: 0 22px;

    border: none;

    border-radius: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff5b00,
            #ff9d00
        );

    box-shadow:
        0 15px 30px rgba(255, 104, 0, 0.28);

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

    gap: 16px;

    cursor: pointer;

    font-family: inherit;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.journey-booking-submit:hover {
    transform: translateY(-4px);

    box-shadow:
        0 22px 40px rgba(255, 104, 0, 0.38);
}


.journey-booking-submit span {
    text-align: left;

    font-size: 13px;

    font-weight: 800;
}


.journey-booking-submit small {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,0.72);

    font-size: 9px;

    font-weight: 500;
}


.journey-booking-submit b {
    width: 38px;
    height: 38px;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    font-size: 19px;

    transition: transform 0.3s ease;
}


.journey-booking-submit:hover b {
    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1150px) {

    .journey-booking-card {
        flex-wrap: wrap;
    }

    .journey-booking-intro {
        width: 100%;
    }

    .journey-booking-fields {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .journey-booking-submit {
        width: calc(100% - 20px);

        min-height: 65px;
    }

}


@media (max-width: 768px) {

    .journey-booking-panel {
        bottom: -330px;
    }

    .journey-booking-card {
        padding: 12px;

        border-radius: 22px;
    }

    .journey-booking-intro {
        padding: 20px;
    }

    .journey-booking-fields {
        grid-template-columns: 1fr;

        padding: 12px 0;
    }

    .journey-booking-field {
        min-height: 70px;
    }

    .journey-booking-submit {
        min-height: 70px;
    }

}


@media (max-width: 480px) {

    .journey-booking-panel {
        bottom: -340px;
    }

    .journey-intro-text h3 {
        font-size: 16px;
    }

    .journey-booking-field {
        padding: 10px;
    }

    .journey-field-symbol {
        width: 40px;
        height: 40px;
    }

}

/* =========================================
   PREMIUM PARTH TOURS FOOTER
========================================= */

.parth-footer-area {
    position: relative;
    overflow: hidden;

    padding: 90px 0 25px;

    color: #dce5f0;

    background:
        linear-gradient(
            135deg,
            #071523 0%,
            #0b2436 55%,
            #071a2a 100%
        );
}


/* =========================================
   DECORATIVE BACKGROUND
========================================= */

.parth-footer-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    opacity: 0.18;
}


.parth-footer-glow-one {
    top: -180px;
    left: -100px;

    background: #ff7000;
}


.parth-footer-glow-two {
    right: -120px;
    bottom: -180px;

    background: #008cff;
}


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

.parth-footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.35fr;

    gap: 50px;

    padding-bottom: 55px;
}


/* =========================================
   BRAND
========================================= */

.parth-footer-brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #ffffff;

    text-decoration: none;
}


.parth-footer-brand-icon {
    width: 54px;
    height: 54px;

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

    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff5b00,
            #ffad00
        );

    box-shadow:
        0 12px 30px rgba(255, 103, 0, 0.25);

    font-size: 25px;
    font-weight: 900;
}


.parth-footer-brand-text {
    display: flex;
    flex-direction: column;
}


.parth-footer-brand-text strong {
    color: #ffffff;

    font-size: 21px;

    font-weight: 900;

    letter-spacing: 2px;

    line-height: 1;
}


.parth-footer-brand-text span {
    margin-top: 7px;

    color: #ffad4b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.parth-footer-description {
    max-width: 390px;

    margin: 0 0 24px;

    color: rgba(220,229,240,0.72);

    font-size: 14px;

    line-height: 1.8;
}


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

.parth-footer-trust {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.parth-footer-trust-item {
    display: flex;
    align-items: center;

    gap: 9px;
}


.parth-footer-trust-item span {
    width: 20px;
    height: 20px;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #071523;

    background: #ffad00;

    font-size: 10px;
    font-weight: 900;
}


.parth-footer-trust-item p {
    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 12px;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.parth-footer-column h4,
.parth-footer-contact h4 {
    position: relative;

    margin: 7px 0 24px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;
}


.parth-footer-column h4::after,
.parth-footer-contact h4::after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 11px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #ff6200,
            #ffae00
        );
}


/* =========================================
   FOOTER LINKS
========================================= */

.parth-footer-links {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.parth-footer-links a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: rgba(220,229,240,0.70);

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s ease;
}


.parth-footer-links a span {
    color: #ff8a22;

    font-size: 14px;

    transition: 0.3s ease;
}


.parth-footer-links a:hover {
    color: #ffffff;

    transform: translateX(5px);
}


.parth-footer-links a:hover span {
    color: #ffb000;
}


/* =========================================
   CONTACT TEXT
========================================= */

.parth-footer-contact-text {
    margin: 0 0 22px;

    color: rgba(220,229,240,0.68);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   PHONE
========================================= */

.parth-footer-phone {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 15px;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s ease;
}


.parth-footer-phone:hover {
    transform: translateX(4px);
}


.parth-footer-contact-icon {
    width: 46px;
    height: 46px;

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

    flex-shrink: 0;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6200,
            #ffad00
        );

    font-size: 17px;
}


.parth-footer-phone small,
.parth-footer-hours small {
    display: block;

    margin-bottom: 5px;

    color: #ffad4b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.parth-footer-phone strong {
    font-size: 16px;
}


/* =========================================
   WHATSAPP
========================================= */

.parth-footer-whatsapp {
    min-height: 50px;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    padding: 0 16px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;

    color: #ffffff;

    background: rgba(255,255,255,0.06);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}


.parth-footer-whatsapp i {
    color: #25d366;

    font-size: 20px;
}


.parth-footer-whatsapp b {
    margin-left: auto;

    color: #ff9c31;

    font-size: 17px;
}


.parth-footer-whatsapp:hover {
    border-color: #ff7000;

    background: rgba(255,112,0,0.13);

    transform: translateY(-3px);
}


/* =========================================
   TRAVEL ASSISTANCE
========================================= */

.parth-footer-hours {
    display: flex;
    align-items: center;

    gap: 11px;
}


.parth-footer-hours > span {
    color: #ff9c31;

    font-size: 20px;
}


.parth-footer-hours strong {
    color: rgba(255,255,255,0.82);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   DIVIDER
========================================= */

.parth-footer-divider {
    position: relative;

    z-index: 2;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.16),
            transparent
        );
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.parth-footer-bottom {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 25px;

    padding-top: 24px;
}


/* COPYRIGHT */

.parth-footer-copyright p {
    margin: 0;

    color: rgba(220,229,240,0.55);

    font-size: 11px;
}


.parth-footer-copyright strong {
    color: rgba(255,255,255,0.85);
}


/* =========================================
   DEVELOPED BY WEBSITE SOLUTION INDIA
========================================= */

.parth-footer-developer {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 4px;

    text-align: center;
}


.parth-footer-developer span {
    color: rgba(255,255,255,0.45);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.parth-footer-developer-name {
    color: #ff9c31;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;
}


.parth-footer-developer-name:hover {
    color: #ffffff;
}


.parth-footer-dev-email {
    color: rgba(220,229,240,0.58);

    font-size: 9px;

    text-decoration: none;

    transition: 0.3s ease;
}


.parth-footer-dev-email:hover {
    color: #ff9c31;
}


/* =========================================
   SOCIAL MEDIA BUTTONS
========================================= */

.parth-footer-social-bottom {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;
}


.parth-footer-social-bottom a {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 11px;

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    background: rgba(255,255,255,0.05);

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}


.parth-footer-social-bottom a:hover {
    transform: translateY(-4px);

    border-color: #ff7800;

    background:
        linear-gradient(
            135deg,
            #ff5b00,
            #ff9d00
        );
}


/* Back To Top */

.parth-footer-social-bottom .parth-footer-top-button {
    margin-left: 5px;

    color: #071523;

    border: none;

    background:
        linear-gradient(
            135deg,
            #ffb000,
            #ff7200
        );

    font-size: 14px;

    font-weight: 800;
}


.parth-footer-social-bottom .parth-footer-top-button:hover {
    color: #ffffff;

    transform: translateY(-4px);
}


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

@media (max-width: 1100px) {

    .parth-footer-main {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px;

    }

}


/* =========================================
   FOOTER BOTTOM TABLET
========================================= */

@media (max-width: 900px) {

    .parth-footer-bottom {

        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

        gap: 18px;

    }


    .parth-footer-social-bottom {

        justify-content: center;

    }

}


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

@media (max-width: 650px) {

    .parth-footer-area {

        padding: 65px 0 22px;

    }


    .parth-footer-main {

        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 42px;

    }


    .parth-footer-description {

        max-width: 100%;

        font-size: 13px;

    }


    .parth-footer-brand-icon {

        width: 50px;
        height: 50px;

    }

}


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

@media (max-width: 420px) {

    .parth-footer-social-bottom {

        gap: 7px;

    }


    .parth-footer-social-bottom a {

        width: 35px;
        height: 35px;

        font-size: 13px;

    }


    .parth-footer-copyright p {

        font-size: 10px;

    }

}
/* =========================================
   PARTH PREMIUM TRAVEL BANNER
========================================= */

.parth-premium-banner {
    position: relative;

    overflow: hidden;

    padding:
        110px
        0
        80px;

    background:
        linear-gradient(
            135deg,
            #071a2d 0%,
            #102f4b 50%,
            #071d31 100%
        );
}


/* =========================================
   BACKGROUND EFFECTS
========================================= */

.parth-premium-banner::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    opacity: 0.35;
}


.parth-banner-orb {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.14;

    pointer-events: none;
}


.parth-orb-one {
    top: -250px;
    left: -150px;

    background: #ff6b00;
}


.parth-orb-two {
    right: -180px;
    bottom: -250px;

    background: #008cff;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.parth-banner-layout {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;
}


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

.parth-banner-content {
    max-width: 650px;
}


/* =========================================
   BADGES
========================================= */

.parth-banner-badges {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 26px;
}


.parth-banner-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px
        15px;

    border:
        1px solid
        rgba(255,255,255,0.15);

    border-radius: 50px;

    color: rgba(255,255,255,0.8);

    background:
        rgba(255,255,255,0.07);

    backdrop-filter:
        blur(12px);

    font-size: 12px;

    font-weight: 700;
}


.parth-banner-badge i {
    color: #ff9b3d;
}


.parth-rating-badge {
    color: #ffd6a8;

    border-color:
        rgba(255,132,0,0.45);

    background:
        rgba(255,102,0,0.12);
}


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

.parth-banner-content h1 {
    max-width: 700px;

    margin:
        0
        0
        22px;

    color: #ffffff;

    font-size:
        clamp(38px, 4.3vw, 65px);

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -2px;
}


.parth-banner-content h1 strong {
    display: block;

    margin-top: 5px;

    color: #ff8a32;

    font-weight: 800;
}


/* =========================================
   DESCRIPTION
========================================= */

.parth-banner-description {
    max-width: 620px;

    margin: 0;

    color:
        rgba(225,235,245,0.72);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   OFFER BOX
========================================= */

.parth-banner-offer {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;

    padding:
        13px
        20px
        13px
        13px;

    border:
        1px solid
        rgba(255,145,50,0.3);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,112,0,0.15),
            rgba(255,255,255,0.04)
        );
}


.parth-offer-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 13px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6200,
            #ff9d00
        );

    font-size: 18px;
}


.parth-banner-offer span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.55);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.1px;
}


.parth-banner-offer strong {
    color: #ffffff;

    font-size: 15px;
}


.parth-banner-offer b {
    margin-left: 5px;

    color: #ff9c38;

    font-size: 20px;
}


/* =========================================
   STATS
========================================= */

.parth-banner-stats {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 32px;

    padding:
        19px
        24px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.045);

    backdrop-filter:
        blur(15px);
}


.parth-banner-stat {
    display: flex;

    align-items: center;

    gap: 10px;
}


.parth-banner-stat strong {
    color: #ff963b;

    font-size: 24px;

    font-weight: 800;
}


.parth-banner-stat span {
    color:
        rgba(255,255,255,0.68);

    font-size: 10px;

    font-weight: 600;

    line-height: 1.45;
}


.parth-stat-line {
    width: 1px;
    height: 38px;

    background:
        rgba(255,255,255,0.14);
}


/* =========================================
   ROUTES
========================================= */

.parth-banner-routes {
    margin-top: 30px;
}


.parth-banner-routes > span {
    display: block;

    margin-bottom: 12px;

    color:
        rgba(255,255,255,0.45);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.parth-route-list {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.parth-route-list a {
    padding:
        9px
        16px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 50px;

    color:
        rgba(255,255,255,0.78);

    background:
        rgba(255,255,255,0.055);

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: 0.3s ease;
}


.parth-route-list a:hover {
    color: #ffffff;

    border-color: #ff8100;

    background: #ff7200;

    transform: translateY(-3px);
}


/* =========================================
   TRIP CALCULATOR CARD
========================================= */

.parth-trip-calculator {
    position: relative;

    padding: 26px;

    border:
        1px solid
        rgba(255,255,255,0.5);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(238,243,248,0.95)
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.28);

    animation:
        parthCardFloat
        5s ease-in-out
        infinite;
}


@keyframes parthCardFloat {

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

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================
   CARD HEADER
========================================= */

.parth-calculator-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.parth-calculator-label {
    display: block;

    margin-bottom: 6px;

    color: #ff6a00;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.parth-calculator-header h2 {
    margin: 0;

    color: #183149;

    font-size: 25px;

    line-height: 1.25;
}


.parth-calculator-header h2 strong {
    display: block;

    color: #ff6d00;
}


/* CALL BUTTON */

.parth-banner-call {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    padding:
        11px
        15px;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6800,
            #ff9300
        );

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 8px 18px
        rgba(255,105,0,0.25);

    transition: 0.3s ease;
}


.parth-banner-call:hover {
    transform: translateY(-3px);
}


/* =========================================
   TRIP TYPE BUTTONS
========================================= */

.parth-trip-type {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 5px;

    padding: 5px;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #e8edf2;
}


.parth-trip-type-btn {
    min-height: 45px;

    border: none;

    border-radius: 10px;

    color: #617080;

    background: transparent;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;
}


.parth-trip-type-btn i {
    margin-right: 6px;
}


.parth-trip-active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff5d00,
            #ff8700
        );

    box-shadow:
        0 7px 15px
        rgba(255,100,0,0.25);
}


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

.parth-trip-form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.parth-form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}


.parth-form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.parth-form-group label {
    color: #4a5c6d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.4px;
}


.parth-form-group label i {
    margin-right: 5px;

    color: #ff7000;
}


/* INPUTS */

.parth-form-group input,
.parth-form-group select {
    width: 100%;

    height: 48px;

    padding:
        0
        14px;

    outline: none;

    border:
        1px solid
        #d8e0e7;

    border-radius: 12px;

    color: #304253;

    background: #ffffff;

    font-size: 12px;

    transition: 0.3s ease;
}


.parth-form-group input:focus,
.parth-form-group select:focus {
    border-color: #ff7500;

    box-shadow:
        0 0 0 4px
        rgba(255,115,0,0.1);
}


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

.parth-trip-submit {
    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 3px;

    padding:
        0
        9px
        0
        20px;

    border: none;

    border-radius: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #152b42,
            #0b1d2e
        );

    cursor: pointer;

    transition: 0.3s ease;
}


.parth-trip-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 28px
        rgba(8,28,47,0.25);
}


.parth-trip-submit span {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 3px;

    font-size: 14px;

    font-weight: 800;
}


.parth-trip-submit small {
    color:
        rgba(255,255,255,0.55);

    font-size: 9px;

    font-weight: 500;
}


.parth-trip-submit b {
    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6200,
            #ff9700
        );

    font-size: 13px;

    transition: 0.3s ease;
}


.parth-trip-submit:hover b {
    transform: translateX(4px);
}


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

.parth-calculator-trust {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 17px;
}


.parth-calculator-trust span {
    color: #6d7b88;

    font-size: 9px;

    font-weight: 700;
}


.parth-calculator-trust i {
    margin-right: 4px;

    color: #16a66a;
}


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

@media (max-width: 1100px) {

    .parth-premium-banner {
        padding-top: 90px;
    }


    .parth-banner-layout {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .parth-banner-content {
        max-width: 800px;
    }


    .parth-trip-calculator {
        width: 100%;

        max-width: 700px;

        margin: auto;
    }

}


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

@media (max-width: 650px) {

    .parth-premium-banner {
        padding:
            75px
            0
            55px;
    }


    .parth-banner-layout {
        gap: 38px;
    }


    .parth-banner-content h1 {
        font-size: 37px;

        letter-spacing: -1.2px;
    }


    .parth-banner-description {
        font-size: 14px;
    }


    .parth-banner-badges {
        gap: 7px;
    }


    .parth-banner-badge {
        padding:
            7px
            11px;

        font-size: 9px;
    }


    .parth-banner-stats {
        gap: 12px;

        padding:
            16px
            14px;
    }


    .parth-banner-stat {
        gap: 7px;
    }


    .parth-banner-stat strong {
        font-size: 19px;
    }


    .parth-banner-stat span {
        font-size: 8px;
    }


    .parth-stat-line {
        height: 32px;
    }


    .parth-trip-calculator {
        padding: 20px;

        border-radius: 20px;

        animation: none;
    }


    .parth-calculator-header h2 {
        font-size: 20px;
    }


    .parth-banner-call span {
        display: none;
    }


    .parth-banner-call {
        width: 40px;
        height: 40px;

        padding: 0;

        justify-content: center;
    }


    .parth-form-row {
        grid-template-columns:
            1fr;
    }

}


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

@media (max-width: 420px) {

    .parth-banner-content h1 {
        font-size: 32px;
    }


    .parth-banner-offer {
        width: 100%;
    }


    .parth-banner-stats {
        justify-content: space-between;
    }


    .parth-trip-calculator {
        padding: 16px;
    }


    .parth-trip-type-btn {
        font-size: 10px;
    }


    .parth-calculator-trust {
        gap: 8px;
    }

}

/* =========================================
   PARTH TOURS - PACKAGE TABLE SECTION
========================================= */

.pt-route-package-section {
    position: relative;
    padding: 90px 0;
    background: #f6f7f9;
    overflow: hidden;
}


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

.pt-route-heading {
    max-width: 800px;
    margin: 0 auto 35px;
    text-align: center;
}


.pt-route-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #f47716;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.pt-route-heading h2 {
    margin: 0 0 10px;
    color: #253d56;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}


.pt-route-heading p {
    margin: 0 auto;
    color: #6d7b89;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   MAIN BOX
========================================= */

.pt-route-main-box {
    display: grid;
    grid-template-columns: 39% 61%;
    max-width: 1250px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(28, 50, 70, 0.10);
}


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

.pt-route-image-side {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #1d354d;
}


.pt-route-image-side > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.pt-route-image-side:hover > img {
    transform: scale(1.06);
}


/* IMAGE OVERLAY */

.pt-route-image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(13, 30, 48, 0.08) 0%,
            rgba(13, 30, 48, 0.35) 50%,
            rgba(13, 30, 48, 0.95) 100%
        );
}


/* IMAGE CONTENT */

.pt-route-image-content {
    position: absolute;

    z-index: 2;

    left: 35px;
    right: 35px;
    bottom: 135px;
}


.pt-route-image-content > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 14px;
    margin-bottom: 17px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


.pt-route-image-content > span i {
    color: #ff921d;
}


.pt-route-image-content h3 {
    margin: 0 0 15px;

    color: #fff;

    font-size: clamp(26px, 2.4vw, 37px);

    font-weight: 800;

    line-height: 1.25;
}


.pt-route-image-content h3 strong {
    display: block;
    color: #ff951e;
}


.pt-route-image-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   IMAGE BOTTOM CARD
========================================= */

.pt-route-image-info {
    position: absolute;

    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 25px;

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

    padding: 16px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(15px);
}


.pt-route-info-icon {
    width: 45px;
    height: 45px;

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

    flex-shrink: 0;

    border-radius: 12px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff9e1c
    );

    font-size: 17px;
}


.pt-route-image-info strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 13px;
}


.pt-route-image-info span {
    color: rgba(255, 255, 255, 0.70);

    font-size: 10px;
}


/* =========================================
   RIGHT TABLE AREA
========================================= */

.pt-route-table-side {
    padding: 28px 28px 22px;
    background: #fff;
}


/* =========================================
   TABLE TITLE
========================================= */

.pt-route-table-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.pt-route-table-title > div > span {
    display: block;

    margin-bottom: 5px;

    color: #f47716;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.pt-route-table-title h3 {
    margin: 0;

    color: #263f58;

    font-size: 24px;

    font-weight: 800;
}


/* ENQUIRY BUTTON */

.pt-route-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex-shrink: 0;

    padding: 11px 17px;

    border-radius: 9px;

    color: #fff;

    background: #f47716;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: 0.3s ease;
}


.pt-route-enquiry-btn:hover {
    transform: translateY(-2px);

    background: #e86708;
}


/* =========================================
   TABLE
========================================= */

.pt-route-table-scroll {
    width: 100%;
    overflow-x: auto;
}


.pt-route-price-table {
    width: 100%;
    min-width: 650px;

    border-collapse: collapse;
}


/* HEADER */

.pt-route-price-table thead {
    background: #29445f;
}


.pt-route-price-table th {
    padding: 15px 18px;

    color: #fff;

    text-align: left;

    font-size: 12px;

    font-weight: 700;
}


.pt-route-price-table th:first-child {
    border-radius: 10px 0 0 0;
}


.pt-route-price-table th:last-child {
    border-radius: 0 10px 0 0;
}


/* ROW */

.pt-route-price-table tbody tr {
    border-bottom: 1px solid #edf0f3;

    transition: 0.25s ease;
}


.pt-route-price-table tbody tr:hover {
    background: #fff8f1;
}


.pt-route-price-table td {
    padding: 13px 18px;

    color: #637382;

    font-size: 12px;

    vertical-align: middle;
}


/* =========================================
   PACKAGE NAME
========================================= */

.pt-route-package-name {
    display: flex;
    align-items: center;
    gap: 11px;
}


.pt-route-package-icon {
    width: 38px;
    height: 38px;

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

    flex-shrink: 0;

    border-radius: 10px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #f47716,
        #ff9d28
    );

    font-size: 14px;
}


/* DIFFERENT ICON COLORS */

.pt-route-green {
    background: linear-gradient(135deg, #228b5a, #54b96e);
}


.pt-route-blue {
    background: linear-gradient(135deg, #247ba0, #48a9d4);
}


.pt-route-saffron {
    background: linear-gradient(135deg, #e76f00, #ffae00);
}


.pt-route-orange {
    background: linear-gradient(135deg, #d35400, #f39c12);
}


.pt-route-temple {
    background: linear-gradient(135deg, #9b4d00, #e88900);
}


.pt-route-kashmir {
    background: linear-gradient(135deg, #287b9b, #65c4d6);
}


/* TEXT */

.pt-route-package-name strong {
    display: block;

    margin-bottom: 3px;

    color: #31465a;

    font-size: 13px;

    font-weight: 800;
}


.pt-route-package-name span {
    display: block;

    max-width: 280px;

    overflow: hidden;

    color: #8995a0;

    font-size: 10px;

    white-space: nowrap;

    text-overflow: ellipsis;
}


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

.pt-route-price strong {
    display: block;

    color: #e76308;

    font-size: 15px;

    font-weight: 800;
}


.pt-route-price span {
    display: block;

    margin-top: 3px;

    color: #929ca5;

    font-size: 9px;
}


/* =========================================
   BOTTOM
========================================= */

.pt-route-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 18px;
    padding-top: 17px;

    border-top: 1px solid #edf0f3;
}


.pt-route-bottom-text {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #7b8792;

    font-size: 10px;

    line-height: 1.5;
}


.pt-route-bottom-text i {
    color: #f47716;

    font-size: 14px;
}


.pt-route-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex-shrink: 0;

    color: #e56708;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: 0.3s ease;
}


.pt-route-bottom > a:hover {
    gap: 11px;
}


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

@media (max-width: 1050px) {

    .pt-route-main-box {
        grid-template-columns: 1fr;
    }


    .pt-route-image-side {
        min-height: 430px;
    }


    .pt-route-table-side {
        padding: 30px;
    }

}


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

@media (max-width: 650px) {

    .pt-route-package-section {
        padding: 65px 0;
    }


    .pt-route-heading {
        text-align: left;
    }


    .pt-route-heading p {
        font-size: 13px;
    }


    .pt-route-main-box {
        border-radius: 16px;
    }


    .pt-route-image-side {
        min-height: 420px;
    }


    .pt-route-image-content {
        left: 22px;
        right: 22px;

        bottom: 115px;
    }


    .pt-route-image-content h3 {
        font-size: 26px;
    }


    .pt-route-image-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }


    .pt-route-table-side {
        padding: 22px 15px;
    }


    .pt-route-table-title {
        align-items: flex-start;
        flex-direction: column;
    }


    .pt-route-table-title h3 {
        font-size: 21px;
    }


    .pt-route-enquiry-btn {
        width: 100%;
        justify-content: center;
    }


    .pt-route-bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .pt-route-bottom > a {
        margin-top: 5px;
    }

}


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

@media (max-width: 400px) {

    .pt-route-image-content h3 {
        font-size: 23px;
    }


    .pt-route-image-content p {
        font-size: 11px;
    }


    .pt-route-info-icon {
        width: 40px;
        height: 40px;
    }

}

/* =========================================
   PARTH TOURS - PREMIUM FLEET SECTION
========================================= */

.parth-fleet-section {
    position: relative;
    overflow: hidden;
    padding: 27px 0;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(255, 119, 0, 0.09),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(18, 86, 139, 0.09),
            transparent 28%
        ),
        #f7f8fb;
}


/* BACKGROUND SHAPES */

.parth-fleet-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.parth-shape-one {
    width: 420px;
    height: 420px;
    background: rgba(255, 119, 0, 0.035);
    top: -180px;
    left: -160px;
}

.parth-shape-two {
    width: 500px;
    height: 500px;
    background: rgba(19, 53, 87, 0.04);
    bottom: -250px;
    right: -180px;
}


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

.parth-fleet-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}


.parth-fleet-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 9px 17px;

    margin-bottom: 18px;

    border-radius: 50px;

    background: #fff;
    border: 1px solid rgba(255, 119, 0, 0.18);

    color: #e96b00;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.parth-fleet-tag span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff7600;
}


.parth-fleet-heading h2 {
    margin: 0;

    color: #1e3147;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.18;

    font-weight: 800;
}


.parth-fleet-heading h2 em {
    display: block;

    font-family: Georgia, serif;
    font-weight: 500;

    color: #f47700;
}


.parth-fleet-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #687587;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   FLEET GRID - 4 PER ROW
========================================= */

.parth-fleet-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================
   VEHICLE CARD
========================================= */

.parth-vehicle-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(30, 49, 71, 0.08);

    border-radius: 22px;

    box-shadow:
        0 12px 40px rgba(25, 43, 65, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.parth-vehicle-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 119, 0, 0.3);

    box-shadow:
        0 22px 55px rgba(25, 43, 65, 0.14);
}


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

.parth-vehicle-image {
    position: relative;

    height: 190px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #edf2f7,
            #dfe7ee
        );
}


.parth-vehicle-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.parth-vehicle-card:hover
.parth-vehicle-image img {
    transform: scale(1.1);
}


.parth-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(16, 34, 54, 0.5)
        );

    pointer-events: none;
}


/* VEHICLE NUMBER */

.parth-vehicle-number {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    display: flex;

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

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: #1e3147;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);
}


/* VEHICLE BADGE */

.parth-vehicle-badge {
    position: absolute;

    left: 15px;
    bottom: 15px;

    z-index: 2;

    padding: 7px 12px;

    border-radius: 50px;

    background: #ff7600;

    color: #fff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


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

.parth-vehicle-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 23px 20px 20px;
}


.parth-vehicle-content h3 {
    margin: 0 0 12px;

    color: #22354a;

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

    font-weight: 800;
}


/* CAPACITY */

.parth-vehicle-capacity {
    display: flex;

    align-items: center;

    gap: 8px;

    padding-bottom: 18px;

    border-bottom:
        1px solid #edf0f3;

    color: #718093;

    font-size: 13px;
}


.parth-capacity-icon {
    font-size: 16px;
}


.parth-vehicle-capacity strong {
    color: #33475b;
}


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

.parth-rate-box {
    padding: 17px 0 11px;
}


.parth-rate-box small {
    display: block;

    margin-bottom: 4px;

    color: #8a96a4;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.parth-rate-box strong {
    display: block;

    color: #f06e00;

    font-size: 27px;

    font-weight: 800;

    line-height: 1.1;
}


.parth-rate-box strong span {
    color: #718093;

    font-size: 12px;

    font-weight: 700;
}


.parth-driver-info {
    margin-bottom: 18px;

    color: #718093;

    font-size: 12px;
}


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

.parth-fleet-book-btn {
    width: 100%;

    margin-top: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 13px 16px;

    border-radius: 12px;

    background: #20344b;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.parth-fleet-book-btn b {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.parth-fleet-book-btn:hover {
    background: #ff7600;

    color: #fff;
}


.parth-fleet-book-btn:hover b {
    transform: translateX(5px);
}


/* =========================================
   FEATURED CARD
========================================= */

.parth-featured-vehicle {
    border-color: rgba(255, 119, 0, 0.35);
}


.parth-popular-ribbon {
    position: absolute;

    top: 0;
    right: 18px;

    z-index: 5;

    padding: 7px 11px;

    border-radius:
        0 0 9px 9px;

    background: #ff7600;

    color: #fff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.8px;
}


/* PREMIUM LABEL */

.parth-premium-label {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 4;

    padding: 7px 11px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #1c3047,
            #3b5875
        );

    color: #fff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================
   CUSTOM CARD
========================================= */

.parth-custom-vehicle-card {
    min-height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 32px 27px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ff7a00,
            #e95300
        );

    color: #fff;

    box-shadow:
        0 18px 45px rgba(234, 99, 0, 0.22);
}


.parth-custom-car-icon {
    display: flex;

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

    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    border-radius: 17px;

    background: rgba(255, 255, 255, 0.18);

    font-size: 26px;
}


.parth-custom-vehicle-card > span {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.parth-custom-vehicle-card h3 {
    margin: 0 0 13px;

    font-size: 26px;

    line-height: 1.25;
}


.parth-custom-vehicle-card h3 em {
    display: block;

    font-family: Georgia, serif;

    font-weight: 500;
}


.parth-custom-vehicle-card p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;

    line-height: 1.7;
}


.parth-custom-vehicle-card a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    border-radius: 10px;

    background: #fff;

    color: #e95f00;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.3s ease;
}


.parth-custom-vehicle-card a:hover {
    transform: translateY(-3px);
}


/* =========================================
   BOTTOM TRUST NOTE
========================================= */

.parth-fleet-note {
    position: relative;
    z-index: 2;

    display: flex;

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

    flex-wrap: wrap;

    gap: 15px 30px;

    margin-top: 45px;

    padding: 20px;

    border-top:
        1px solid rgba(30, 49, 71, 0.08);
}


.parth-fleet-note-item {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #647386;

    font-size: 13px;
    font-weight: 600;
}


.parth-fleet-note-item span {
    display: flex;

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

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: rgba(255, 118, 0, 0.12);

    color: #f06e00;

    font-size: 11px;

    font-weight: 900;
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1200px) {

    .parth-fleet-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


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

@media (max-width: 900px) {

    .parth-fleet-section {
        padding: 85px 0;
    }


    .parth-fleet-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }


    .parth-vehicle-image {
        height: 210px;
    }

}


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

@media (max-width: 600px) {

    .parth-fleet-section {
        padding: 70px 0;
    }


    .parth-fleet-heading {
        margin-bottom: 38px;
    }


    .parth-fleet-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    .parth-fleet-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .parth-vehicle-image {
        height: 220px;
    }


    .parth-vehicle-content {
        padding: 21px 18px 18px;
    }


    .parth-fleet-note {
        justify-content: flex-start;

        margin-top: 30px;

        padding: 18px 0;
    }


    .parth-fleet-note-item {
        width: 100%;
    }


    .parth-custom-vehicle-card {
        min-height: 360px;
    }

}

/* =========================================
   PARTH STATE WISE ROUTES SECTION
========================================= */

.parth-routes-section{
    position:relative;
    padding:50px 0;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #eef3f8 50%,
            #f8f4ee 100%
        );
}


/* BACKGROUND SHAPES */

.parth-routes-bg-shape{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(10px);
    opacity:.45;
}

.parth-shape-one{
    width:420px;
    height:420px;
    background:#ff7a00;
    top:-250px;
    left:-180px;
    opacity:.08;
}

.parth-shape-two{
    width:500px;
    height:500px;
    background:#173b63;
    right:-220px;
    bottom:-250px;
    opacity:.07;
}


/* =========================================
   SECTION HEADING
========================================= */

.parth-routes-heading{
    max-width:760px;
    margin:0 auto 38px;
    text-align:center;
}

.parth-routes-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    margin-bottom:16px;
    border-radius:50px;
    background:#fff;
    color:#e76b00;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.4px;
    box-shadow:0 8px 25px rgba(24,45,68,.08);
}

.parth-routes-badge span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#ff7800;
}

.parth-routes-heading h2{
    margin:0;
    color:#1d344d;
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}

.parth-routes-heading h2 em{
    color:#f27100;
    font-style:normal;
}

.parth-routes-heading p{
    max-width:650px;
    margin:16px auto 0;
    color:#697789;
    font-size:16px;
    line-height:1.8;
}


/* =========================================
   ROUTE STATS
========================================= */

.parth-route-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    max-width:1000px;
    margin:0 auto 45px;
}

.parth-route-stat-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:13px;
    padding:18px 20px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(25,55,80,.08);
    border-radius:18px;
    backdrop-filter:blur(12px);
    box-shadow:0 10px 30px rgba(30,50,70,.06);
}

.parth-stat-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#fff2e6;
    font-size:21px;
}

.parth-route-stat-card strong{
    display:block;
    color:#263c54;
    font-size:15px;
    margin-bottom:4px;
}

.parth-route-stat-card small{
    color:#7a8795;
    font-size:12px;
}


/* =========================================
   STATE BLOCK
========================================= */

.parth-state-route-block{
    position:relative;
    margin-bottom:35px;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(24,50,75,.08);
    box-shadow:0 18px 50px rgba(24,45,65,.08);
    transition:.35s ease;
}

.parth-state-route-block:hover{
    transform:translateY(-3px);
    box-shadow:0 25px 65px rgba(24,45,65,.12);
}


/* STATE HEADER */

.parth-state-route-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:23px 30px;
    background:
        linear-gradient(
            135deg,
            #17334f,
            #274d70
        );
}

.parth-state-title{
    display:flex;
    align-items:center;
    gap:14px;
}

.parth-state-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:16px;
    font-size:25px;
}

.parth-state-title span{
    display:block;
    margin-bottom:5px;
    color:#ffae61;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
}

.parth-state-title h3{
    margin:0;
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.parth-route-count{
    padding:9px 15px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:13px;
    font-weight:600;
}


/* =========================================
   TABLE
========================================= */

.parth-route-table-wrap{
    width:100%;
    overflow-x:auto;
}

.parth-route-table{
    width:100%;
    min-width:700px;
    border-collapse:collapse;
}

.parth-route-table thead{
    background:#f5f7fa;
}

.parth-route-table th{
    padding:17px 28px;
    text-align:left;
    color:#637184;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.parth-route-table td{
    padding:20px 28px;
    border-top:1px solid #edf0f3;
    color:#435367;
    font-size:15px;
    transition:.25s ease;
}

.parth-route-table tbody tr{
    transition:.25s ease;
}

.parth-route-table tbody tr:hover{
    background:#fff8f1;
}

.parth-route-table tbody tr:hover td{
    color:#233d57;
}


/* ROUTE FROM */

.parth-route-from{
    display:inline-flex;
    align-items:center;
    padding:8px 13px;
    border-radius:8px;
    background:#eef4f8;
    color:#24445f;
    font-size:13px;
    font-weight:700;
}


/* DESTINATION */

.parth-destination-name{
    display:flex;
    align-items:center;
    gap:10px;
    color:#263e57;
    font-size:16px;
    font-weight:700;
}

.parth-location-pin{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#fff1e5;
    font-size:15px;
}


/* DISTANCE */

.parth-route-table td strong{
    color:#e96c00;
    font-size:15px;
}


/* TRIP BADGE */

.parth-trip-badge{
    display:inline-flex;
    padding:8px 15px;
    border-radius:50px;
    background:#eaf8f1;
    color:#168653;
    font-size:12px;
    font-weight:800;
}


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

.parth-routes-bottom-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:38px 42px;
    margin-top:50px;
    border-radius:24px;
    background:
        linear-gradient(
            135deg,
            #ff7300,
            #ff981f
        );
    box-shadow:0 20px 50px rgba(255,116,0,.22);
}

.parth-routes-bottom-cta span{
    color:#fff1df;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
}

.parth-routes-bottom-cta h3{
    margin:8px 0;
    color:#fff;
    font-size:27px;
}

.parth-routes-bottom-cta p{
    margin:0;
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.6;
}

.parth-routes-cta-button{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:16px 24px;
    border-radius:13px;
    background:#fff;
    color:#e56800;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:.3s ease;
}

.parth-routes-cta-button span{
    color:#e56800;
    font-size:20px;
    letter-spacing:0;
}

.parth-routes-cta-button:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(100,45,0,.2);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .parth-routes-section{
        padding:80px 0;
    }

    .parth-routes-heading h2{
        font-size:35px;
    }

    .parth-route-stats{
        grid-template-columns:1fr;
        max-width:600px;
    }

    .parth-route-stat-card{
        justify-content:flex-start;
    }

}


@media(max-width:767px){

    .parth-routes-section{
        padding:65px 0;
    }

    .parth-routes-heading{
        margin-bottom:30px;
    }

    .parth-routes-heading h2{
        font-size:29px;
    }

    .parth-routes-heading p{
        font-size:14px;
    }

    .parth-state-route-header{
        align-items:flex-start;
        flex-direction:column;
        padding:20px;
    }

    .parth-state-title h3{
        font-size:21px;
    }

    .parth-route-count{
        margin-left:66px;
    }

    .parth-route-table th,
    .parth-route-table td{
        padding:17px 18px;
    }

    .parth-routes-bottom-cta{
        align-items:flex-start;
        flex-direction:column;
        padding:30px 25px;
    }

    .parth-routes-bottom-cta h3{
        font-size:23px;
    }

}


@media(max-width:480px){

    .parth-routes-heading h2{
        font-size:26px;
    }

    .parth-routes-badge{
        font-size:10px;
    }

    .parth-route-stat-card{
        padding:15px;
    }

    .parth-state-icon{
        width:45px;
        height:45px;
        font-size:21px;
    }

    .parth-route-count{
        margin-left:0;
    }

}

/* =========================================
   PARTH TOURS - PREMIUM FLEET SECTION
========================================= */

.parth-fleet-section{
    position:relative;
    padding:105px 0;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #edf3f8 48%,
            #fff8f1 100%
        );
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.parth-fleet-decoration{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.parth-fleet-decoration-left{
    width:420px;
    height:420px;
    top:-220px;
    left:-200px;
    background:rgba(255,115,0,.08);
}

.parth-fleet-decoration-right{
    width:500px;
    height:500px;
    bottom:-300px;
    right:-230px;
    background:rgba(27,58,90,.07);
}


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

.parth-fleet-heading{
    position:relative;
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.parth-fleet-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 17px;
    margin-bottom:18px;
    border-radius:50px;
    background:#fff;
    color:#e76b00;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
    box-shadow:0 10px 25px rgba(25,45,65,.08);
}

.parth-fleet-tag-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#ff7200;
    box-shadow:0 0 0 5px rgba(255,114,0,.12);
}

.parth-fleet-heading h2{
    margin:0;
    color:#203850;
    font-size:43px;
    font-weight:800;
    line-height:1.2;
}

.parth-fleet-heading h2 em{
    color:#f27600;
    font-style:normal;
}

.parth-fleet-heading p{
    max-width:680px;
    margin:18px auto 0;
    color:#69798a;
    font-size:16px;
    line-height:1.8;
}


/* =========================================
   FLEET GRID
========================================= */

.parth-fleet-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}


/* =========================================
   FLEET CARD
========================================= */

.parth-fleet-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(25,50,75,.08);
    border-radius:24px;
    box-shadow:0 15px 40px rgba(24,45,65,.08);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.parth-fleet-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(24,45,65,.16);
}


/* FEATURED CARD */

.parth-fleet-card-featured{
    border:2px solid rgba(255,113,0,.35);
}

.parth-fleet-popular{
    position:absolute;
    z-index:5;
    top:18px;
    left:-36px;
    width:145px;
    padding:8px 0;
    text-align:center;
    transform:rotate(-45deg);
    background:#ff7300;
    color:#fff;
    font-size:9px;
    font-weight:800;
    letter-spacing:1px;
}


/* =========================================
   CARD TOP
========================================= */

.parth-fleet-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:17px 22px;
}

.parth-fleet-number{
    color:#243d56;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.parth-fleet-available{
    padding:7px 11px;
    border-radius:50px;
    background:#eaf8f0;
    color:#168856;
    font-size:10px;
    font-weight:700;
}


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

.parth-fleet-image{
    position:relative;
    height:235px;
    margin:0 14px;
    overflow:hidden;
    border-radius:18px;
    background:#e9eef2;
}

.parth-fleet-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:
        transform .7s ease;
}

.parth-fleet-card:hover .parth-fleet-image img{
    transform:scale(1.09);
}

.parth-fleet-image-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(20,35,50,.6),
            transparent 60%
        );
}

.parth-fleet-type-label{
    position:absolute;
    left:16px;
    bottom:15px;
    padding:8px 12px;
    border-radius:7px;
    background:rgba(255,255,255,.92);
    color:#e86c00;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.1px;
}


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

.parth-fleet-content{
    padding:24px;
}

.parth-fleet-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.parth-fleet-category{
    display:block;
    margin-bottom:6px;
    color:#f17700;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
}

.parth-fleet-title-row h3{
    margin:0;
    color:#203850;
    font-size:28px;
    font-weight:800;
}

.parth-fleet-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#fff3e8;
    font-size:22px;
}

.parth-fleet-content p{
    min-height:72px;
    margin:18px 0;
    color:#718092;
    font-size:14px;
    line-height:1.7;
}


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

.parth-fleet-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:22px;
}

.parth-fleet-features span{
    padding:8px 10px;
    border-radius:8px;
    background:#f5f7f9;
    color:#536476;
    font-size:10px;
    font-weight:600;
}


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

.parth-fleet-button{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:15px 19px;
    border-radius:12px;
    background:#203850;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}

.parth-fleet-button span{
    font-size:20px;
    transition:.3s ease;
}

.parth-fleet-button:hover{
    background:#f27400;
    color:#fff;
}

.parth-fleet-button:hover span{
    transform:translateX(5px);
}


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

.parth-fleet-bottom{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:45px;
    padding:24px 30px;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(25,50,75,.08);
    box-shadow:0 15px 40px rgba(24,45,65,.07);
}

.parth-fleet-bottom-icon{
    width:58px;
    height:58px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#fff0e2;
    font-size:26px;
}

.parth-fleet-bottom-content{
    flex:1;
}

.parth-fleet-bottom-content strong{
    display:block;
    margin-bottom:5px;
    color:#243d56;
    font-size:17px;
}

.parth-fleet-bottom-content span{
    color:#758394;
    font-size:13px;
}

.parth-fleet-bottom a{
    flex-shrink:0;
    padding:14px 20px;
    border-radius:10px;
    background:#ff7300;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:.3s ease;
}

.parth-fleet-bottom a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(255,115,0,.25);
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media(max-width:991px){

    .parth-fleet-section{
        padding:80px 0;
    }

    .parth-fleet-heading h2{
        font-size:36px;
    }

    .parth-fleet-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .parth-fleet-card:last-child{
        grid-column:span 2;
        max-width:500px;
        width:100%;
        margin:auto;
    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media(max-width:767px){

    .parth-fleet-section{
        padding:65px 0;
    }

    .parth-fleet-heading{
        margin-bottom:38px;
    }

    .parth-fleet-heading h2{
        font-size:29px;
    }

    .parth-fleet-heading p{
        font-size:14px;
    }

    .parth-fleet-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .parth-fleet-card:last-child{
        grid-column:auto;
        max-width:none;
    }

    .parth-fleet-image{
        height:220px;
    }

    .parth-fleet-bottom{
        align-items:flex-start;
        flex-direction:column;
        padding:22px;
    }

    .parth-fleet-bottom a{
        width:100%;
        text-align:center;
    }

}


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

@media(max-width:480px){

    .parth-fleet-heading h2{
        font-size:26px;
    }

    .parth-fleet-content{
        padding:20px;
    }

    .parth-fleet-image{
        height:200px;
    }

    .parth-fleet-title-row h3{
        font-size:25px;
    }

    .parth-fleet-card-top{
        padding:15px 18px;
    }

}

/* =========================================
   4 CARS IN ONE ROW
========================================= */

.parth-fleet-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:22px;
    align-items:stretch;
}


/* CARD */

.parth-fleet-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
}


/* IMAGE */

.parth-fleet-image{
    height:200px;
    margin:0 12px;
}

.parth-fleet-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:10px;
}


/* CONTENT */

.parth-fleet-content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.parth-fleet-content p{
    min-height:68px;
    font-size:13px;
}


/* BUTTON ALWAYS AT BOTTOM */

.parth-fleet-button{
    margin-top:auto;
}


/* TITLE */

.parth-fleet-title-row h3{
    font-size:22px;
}

.parth-fleet-icon{
    width:42px;
    height:42px;
    font-size:19px;
}


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

@media(max-width:1199px){

    .parth-fleet-grid{
        grid-template-columns:repeat(3, 1fr);
    }

}


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

@media(max-width:991px){

    .parth-fleet-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .parth-fleet-card:last-child{
        grid-column:auto;
        max-width:none;
        margin:0;
    }

}


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

@media(max-width:600px){

    .parth-fleet-grid{
        grid-template-columns:1fr;
    }

    .parth-fleet-image{
        height:220px;
    }

    .parth-fleet-title-row h3{
        font-size:24px;
    }

}

/* =========================================================
   PARTH POPULAR ROUTES & ESTIMATED FARES
========================================================= */

.parth-routes-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:
        linear-gradient(135deg,#f7f8fb 0%,#eef2f7 50%,#f8f5f1 100%);
}


/* BACKGROUND DECORATION */

.parth-routes-bg-shape{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(5px);
}

.parth-routes-shape-one{
    width:400px;
    height:400px;
    background:rgba(255,115,0,.07);
    top:-150px;
    left:-150px;
}

.parth-routes-shape-two{
    width:450px;
    height:450px;
    background:rgba(28,57,88,.07);
    right:-200px;
    bottom:-200px;
}


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

.parth-routes-heading{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.parth-routes-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:9px 17px;

    background:#fff;
    color:#ed6900;

    border:1px solid rgba(237,105,0,.15);
    border-radius:50px;

    font-size:12px;
    font-weight:800;
    letter-spacing:1.3px;

    box-shadow:0 8px 25px rgba(20,40,60,.06);
}

.parth-routes-tag i{
    font-size:13px;
}

.parth-routes-heading h2{
    margin:16px 0 10px;

    font-size:42px;
    line-height:1.15;

    color:#243c57;
    font-weight:800;
}

.parth-routes-heading h2 em{
    color:#f06c00;
    font-style:normal;
}

.parth-routes-heading p{
    margin:0;

    color:#69778a;
    font-size:16px;
    line-height:1.7;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.parth-routes-layout{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:420px 1fr;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 25px 70px rgba(28,47,68,.12);

    border:1px solid rgba(25,50,75,.06);
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.parth-routes-visual{
    padding:28px;

    background:
        linear-gradient(160deg,#f9fbfd,#edf2f7);

    border-right:1px solid #e5eaf0;

    display:flex;
    flex-direction:column;
}


.parth-routes-image-wrap{
    position:relative;

    height:270px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(31,50,71,.08);
}

.parth-routes-image-wrap img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .6s ease;
}

.parth-routes-visual:hover
.parth-routes-image-wrap img{
    transform:scale(1.06);
}


/* IMAGE GRADIENT */

.parth-routes-image-wrap::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(25,42,61,.55),
            transparent 55%
        );
}


.parth-routes-car-badge{
    position:absolute;

    z-index:3;

    top:16px;
    left:16px;

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

    padding:9px 13px;

    border-radius:50px;

    background:#f06c00;

    color:#fff;

    font-size:10px;
    font-weight:800;

    letter-spacing:.7px;

    box-shadow:0 8px 20px rgba(240,108,0,.3);
}


/* LEFT CONTENT */

.parth-routes-visual-content{
    padding:26px 4px 18px;
}

.parth-routes-visual-content > span{
    display:flex;
    align-items:center;
    gap:8px;

    color:#f06c00;

    font-size:11px;
    font-weight:800;

    letter-spacing:1px;
}

.parth-routes-visual-content h3{
    margin:12px 0 10px;

    font-size:28px;

    color:#263d57;

    line-height:1.25;
}

.parth-routes-visual-content h3 strong{
    display:block;
    color:#f06c00;
}

.parth-routes-visual-content p{
    margin:0;

    color:#718093;

    font-size:14px;

    line-height:1.7;
}


/* MINI STATS */

.parth-routes-mini-stats{
    margin-top:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:10px;
}

.parth-routes-mini-stats div{
    text-align:center;

    padding:16px 8px;

    background:#fff;

    border-radius:13px;

    border:1px solid #e8edf2;
}

.parth-routes-mini-stats strong{
    display:block;

    color:#f06c00;

    font-size:18px;
    font-weight:800;
}

.parth-routes-mini-stats span{
    display:block;

    margin-top:4px;

    color:#718093;

    font-size:11px;
}


/* =========================================================
   TABLE AREA
========================================================= */

.parth-routes-table-area{
    padding:28px;
    min-width:0;
}


/* TABLE TOP */

.parth-routes-table-top{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding-bottom:24px;
}

.parth-routes-table-top > div > span{
    color:#f06c00;

    font-size:11px;
    font-weight:800;

    letter-spacing:1px;
}

.parth-routes-table-top h3{
    margin:6px 0 0;

    font-size:24px;

    color:#263d57;
}

.parth-routes-table-top h3 strong{
    color:#f06c00;
}


.parth-routes-enquiry-btn{
    display:inline-flex;

    align-items:center;
    gap:12px;

    white-space:nowrap;

    padding:13px 20px;

    border-radius:10px;

    background:#243c57;

    color:#fff;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.3s ease;
}

.parth-routes-enquiry-btn:hover{
    background:#f06c00;
    transform:translateY(-2px);
}

.parth-routes-enquiry-btn span{
    font-size:18px;
}


/* =========================================================
   TABLE
========================================================= */

.parth-routes-table-wrap{
    width:100%;
    overflow-x:auto;

    border-radius:16px;

    border:1px solid #e6ebf0;
}


.parth-routes-table{
    width:100%;

    min-width:700px;

    border-collapse:collapse;
}


/* TABLE HEADER */

.parth-routes-table thead{
    background:#294664;
}

.parth-routes-table th{
    padding:17px 18px;

    text-align:left;

    color:#fff;

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

    white-space:nowrap;
}

.parth-routes-table th:not(:first-child),
.parth-routes-table td:not(:first-child){
    text-align:center;
}


/* TABLE BODY */

.parth-routes-table tbody tr{
    border-bottom:1px solid #e8edf2;

    transition:.25s ease;
}

.parth-routes-table tbody tr:last-child{
    border-bottom:none;
}

.parth-routes-table tbody tr:hover{
    background:#fff8f2;
}

.parth-routes-table td{
    padding:16px 18px;

    color:#667586;

    font-size:14px;

    white-space:nowrap;
}


/* ROUTE NAME */

.parth-route-name{
    display:flex;

    align-items:center;
    gap:11px;
}

.parth-route-pin{
    width:32px;
    height:32px;

    flex:none;

    display:flex;

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

    border-radius:9px;

    background:#fff3e9;

    color:#f06c00;
}

.parth-route-name strong{
    color:#30465d;

    font-size:14px;
}


/* FARES */

.parth-fare{
    color:#e26000 !important;

    font-weight:800;
}

.parth-fare-premium{
    color:#b94d00 !important;
}


/* =========================================================
   TABLE FOOTER
========================================================= */

.parth-routes-note{
    margin-top:18px;

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

    gap:20px;

    padding:15px 17px;

    background:#f5f8fb;

    border-radius:12px;
}

.parth-routes-note > div{
    display:flex;
    align-items:center;

    gap:9px;

    color:#718093;

    font-size:12px;
}

.parth-routes-note > div i{
    color:#f06c00;

    font-size:15px;
}

.parth-routes-note a{
    color:#294664;

    font-size:12px;
    font-weight:800;

    text-decoration:none;

    white-space:nowrap;

    transition:.3s ease;
}

.parth-routes-note a:hover{
    color:#f06c00;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .parth-routes-layout{
        grid-template-columns:340px 1fr;
    }

}


@media(max-width:900px){

    .parth-routes-section{
        padding:75px 0;
    }

    .parth-routes-layout{
        grid-template-columns:1fr;
    }

    .parth-routes-visual{
        border-right:none;
        border-bottom:1px solid #e5eaf0;
    }

    .parth-routes-image-wrap{
        height:300px;
    }

}


@media(max-width:600px){

    .parth-routes-section{
        padding:60px 0;
    }

    .parth-routes-heading{
        margin-bottom:35px;
    }

    .parth-routes-heading h2{
        font-size:30px;
    }

    .parth-routes-heading p{
        font-size:14px;
    }

    .parth-routes-layout{
        border-radius:18px;
    }

    .parth-routes-visual,
    .parth-routes-table-area{
        padding:18px;
    }

    .parth-routes-image-wrap{
        height:220px;
    }

    .parth-routes-visual-content h3{
        font-size:23px;
    }

    .parth-routes-table-top{
        align-items:flex-start;
        flex-direction:column;
    }

    .parth-routes-table-top h3{
        font-size:20px;
    }

    .parth-routes-enquiry-btn{
        width:100%;
        justify-content:center;
    }

    .parth-routes-note{
        align-items:flex-start;
        flex-direction:column;
    }

    .parth-routes-note a{
        padding-top:5px;
    }

}


@media(max-width:400px){

    .parth-routes-mini-stats strong{
        font-size:15px;
    }

    .parth-routes-mini-stats span{
        font-size:10px;
    }

}

/* =========================================================
   PARTH CAB SERVICE PREMIUM BANNER
========================================================= */

.parth-cab-banner-section{
    position:relative;
    padding:90px 0;
    overflow:hidden;
    background:#f4f6f8;
}


/* Background */

.parth-cab-banner-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255,119,25,.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(33,55,78,.08),
            transparent 30%
        );
    pointer-events:none;
}


.parth-cab-banner-shape{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    right:-250px;
    top:-180px;
    background:rgba(255,119,25,.08);
    pointer-events:none;
}


.parth-cab-banner-section .container{
    position:relative;
    z-index:2;
}


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

.parth-cab-banner-grid{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(450px,1fr);
    gap:55px;
    align-items:center;

    position:relative;

    padding:55px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #203a56 0%,
            #172c43 55%,
            #13273b 100%
        );

    box-shadow:
        0 30px 80px rgba(19,39,59,.18);

    overflow:hidden;
}


/* Decorative Pattern */

.parth-cab-banner-grid::before{
    content:"";

    position:absolute;

    width:400px;
    height:400px;

    border:1px solid rgba(255,255,255,.05);

    border-radius:50%;

    left:-220px;
    bottom:-230px;

    pointer-events:none;
}


.parth-cab-banner-grid::after{
    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border:1px solid rgba(255,255,255,.05);

    border-radius:50%;

    left:-130px;
    bottom:-170px;

    pointer-events:none;
}


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

.parth-cab-banner-content{
    position:relative;
    z-index:2;

    color:#fff;
}


/* Badges */

.parth-cab-banner-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:28px;
}


.parth-cab-banner-badges span{
    display:inline-flex;
    align-items:center;
    gap:7px;

    padding:9px 14px;

    border-radius:50px;

    background:rgba(255,255,255,.09);

    border:1px solid rgba(255,255,255,.13);

    color:#dce5ed;

    font-size:12px;
    font-weight:700;
}


.parth-cab-banner-badges i{
    color:#ff861f;

    font-size:12px;
}


/* Heading */

.parth-cab-banner-content h2{
    margin:0;

    color:#fff;

    font-size:clamp(38px,4vw,58px);

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1.5px;
}


.parth-cab-banner-content h2 span{
    display:block;

    color:#ff861f;
}


.parth-cab-banner-content h3{
    margin:10px 0 18px;

    color:#dce5ed;

    font-size:clamp(20px,2vw,27px);

    font-weight:600;

    line-height:1.35;
}


.parth-cab-banner-content h3 em{
    color:#ff9b48;

    font-style:normal;

    font-weight:800;
}


/* Description */

.parth-cab-banner-content > p{
    max-width:650px;

    margin:0;

    color:rgba(255,255,255,.72);

    font-size:16px;

    line-height:1.75;
}


/* =========================================================
   STATS
========================================================= */

.parth-cab-banner-stats{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:10px;

    margin-top:28px;
}


.parth-cab-stat-box{
    padding:18px 10px;

    text-align:center;

    border-radius:15px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    transition:.3s ease;
}


.parth-cab-stat-box:hover{
    transform:translateY(-5px);

    background:rgba(255,255,255,.13);
}


.parth-cab-stat-box strong{
    display:block;

    margin-bottom:6px;

    color:#ff9a45;

    font-size:23px;

    font-weight:800;
}


.parth-cab-stat-box span{
    display:block;

    color:rgba(255,255,255,.62);

    font-size:11px;

    font-weight:600;

    line-height:1.4;
}


/* =========================================================
   ALERT BOX
========================================================= */

.parth-cab-banner-alert{
    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

    padding:16px 18px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #fff8f1,
            #fff
        );

    color:#20354c;

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);
}


.parth-cab-alert-icon{
    display:flex;

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

    width:43px;
    height:43px;

    flex-shrink:0;

    border-radius:12px;

    background:#fff0e4;

    color:#f47716;

    font-size:18px;
}


.parth-cab-banner-alert strong{
    display:block;

    margin-bottom:3px;

    color:#9b470a;

    font-size:15px;
}


.parth-cab-banner-alert span{
    display:block;

    color:#6d625b;

    font-size:12px;

    line-height:1.5;
}


/* =========================================================
   POPULAR ROUTES
========================================================= */

.parth-cab-popular-routes{
    margin-top:25px;
}


.parth-cab-routes-title{
    display:block;

    margin-bottom:12px;

    color:rgba(255,255,255,.48);

    font-size:11px;

    font-weight:800;

    letter-spacing:1.4px;
}


.parth-cab-route-tags{
    display:flex;

    flex-wrap:wrap;

    gap:9px;
}


.parth-cab-route-tags a{
    display:inline-flex;

    align-items:center;

    padding:9px 13px;

    border-radius:50px;

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    text-decoration:none;

    font-size:12px;

    transition:.3s ease;
}


.parth-cab-route-tags a:hover{
    background:#ff7600;

    border-color:#ff7600;

    transform:translateY(-3px);
}


/* =========================================================
   RIGHT BOOKING BOX
========================================================= */

.parth-cab-booking-box{
    position:relative;
    z-index:5;

    padding:28px;

    border-radius:24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f7f9
        );

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}


/* Header */

.parth-cab-booking-header{
    display:flex;

    align-items:flex-start;
    justify-content:space-between;

    gap:15px;

    padding-bottom:20px;

    border-bottom:1px solid #e7ebef;
}


.parth-cab-booking-header h3{
    margin:0 0 5px;

    color:#20354c;

    font-size:21px;

    font-weight:800;
}


.parth-cab-booking-header p{
    margin:0;

    color:#748292;

    font-size:13px;
}


.parth-cab-call-button{
    display:inline-flex;

    align-items:center;

    gap:7px;

    padding:11px 15px;

    border-radius:10px;

    background:#f47716;

    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:800;

    white-space:nowrap;

    transition:.3s ease;
}


.parth-cab-call-button:hover{
    background:#d95f00;

    color:#fff;

    transform:translateY(-2px);
}


/* =========================================================
   TRIP SWITCH
========================================================= */

.parth-cab-trip-switch{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:4px;

    margin:20px 0;

    padding:4px;

    border-radius:12px;

    background:#e9edf1;
}


.parth-trip-option{
    border:none;

    padding:13px 10px;

    border-radius:9px;

    background:transparent;

    color:#667485;

    font-size:13px;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;
}


.parth-trip-option.active{
    background:#f47716;

    color:#fff;

    box-shadow:
        0 6px 15px rgba(244,119,22,.25);
}


.parth-trip-option i{
    margin-right:6px;
}


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

.parth-cab-booking-form{
    width:100%;
}


.parth-cab-form-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:17px;
}


.parth-cab-form-group{
    width:100%;

    margin-bottom:17px;
}


.parth-cab-form-group label{
    display:block;

    margin-bottom:7px;

    color:#536273;

    font-size:12px;

    font-weight:700;
}


/* Inputs */

.parth-cab-input-wrap{
    position:relative;

    display:flex;

    align-items:center;
}


.parth-cab-input-wrap > i{
    position:absolute;

    left:14px;

    color:#f47716;

    font-size:14px;

    pointer-events:none;
}


.parth-cab-input-wrap input,
.parth-cab-input-wrap select{
    width:100%;

    height:48px;

    padding:0 14px 0 40px;

    border:1px solid #dbe1e7;

    border-radius:11px;

    outline:none;

    background:#fff;

    color:#34475b;

    font-family:inherit;

    font-size:13px;

    transition:.25s ease;
}


.parth-cab-input-wrap select{
    cursor:pointer;
}


.parth-cab-input-wrap input:focus,
.parth-cab-input-wrap select:focus{
    border-color:#f47716;

    box-shadow:
        0 0 0 4px rgba(244,119,22,.10);
}


/* Full Width */

.parth-cab-full-field{
    width:100%;
}


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

.parth-cab-submit-btn{
    width:100%;

    height:52px;

    display:flex;

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

    gap:14px;

    border:none;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #1f3349,
            #142638
        );

    color:#fff;

    font-family:inherit;

    font-size:14px;

    font-weight:800;

    cursor:pointer;

    transition:.3s ease;
}


.parth-cab-submit-btn:hover{
    background:
        linear-gradient(
            135deg,
            #f47716,
            #e95f00
        );

    transform:translateY(-2px);

    box-shadow:
        0 12px 25px rgba(244,119,22,.22);
}


.parth-cab-submit-btn i{
    font-size:16px;

    transition:.3s ease;
}


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


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

.parth-cab-form-trust{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:17px;
}


.parth-cab-form-trust span{
    display:flex;

    align-items:center;

    gap:5px;

    color:#7a8794;

    font-size:10px;

    font-weight:600;
}


.parth-cab-form-trust i{
    color:#18a562;

    font-size:11px;
}


/* =========================================================
   LARGE SCREEN
========================================================= */

@media(min-width:1200px){

    .parth-cab-banner-grid{
        min-height:650px;
    }

}


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

@media(max-width:1100px){

    .parth-cab-banner-grid{
        grid-template-columns:1fr;

        gap:40px;

        padding:45px;
    }


    .parth-cab-banner-content{
        max-width:800px;
    }


    .parth-cab-booking-box{
        max-width:850px;

        width:100%;

        margin:auto;
    }

}


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

@media(max-width:768px){

    .parth-cab-banner-section{
        padding:60px 0;
    }


    .parth-cab-banner-grid{
        padding:32px;

        border-radius:22px;
    }


    .parth-cab-banner-content h2{
        font-size:42px;
    }


    .parth-cab-banner-stats{
        grid-template-columns:repeat(2,1fr);
    }

}


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

@media(max-width:575px){

    .parth-cab-banner-section{
        padding:35px 0;
    }


    .parth-cab-banner-grid{
        padding:24px 16px;

        gap:30px;

        border-radius:18px;
    }


    /* Badges */

    .parth-cab-banner-badges{
        gap:7px;

        margin-bottom:20px;
    }


    .parth-cab-banner-badges span{
        padding:7px 10px;

        font-size:10px;
    }


    /* Heading */

    .parth-cab-banner-content h2{
        font-size:35px;

        letter-spacing:-.8px;
    }


    .parth-cab-banner-content h3{
        font-size:18px;
    }


    .parth-cab-banner-content > p{
        font-size:14px;
    }


    /* Stats */

    .parth-cab-banner-stats{
        gap:8px;

        margin-top:22px;
    }


    .parth-cab-stat-box{
        padding:14px 7px;
    }


    .parth-cab-stat-box strong{
        font-size:20px;
    }


    .parth-cab-stat-box span{
        font-size:10px;
    }


    /* Alert */

    .parth-cab-banner-alert{
        padding:14px;

        gap:11px;
    }


    .parth-cab-alert-icon{
        width:38px;
        height:38px;

        font-size:15px;
    }


    .parth-cab-banner-alert strong{
        font-size:13px;
    }


    .parth-cab-banner-alert span{
        font-size:10px;
    }


    /* Routes */

    .parth-cab-route-tags a{
        padding:8px 10px;

        font-size:10px;
    }


    /* Booking Box */

    .parth-cab-booking-box{
        padding:20px 14px;

        border-radius:18px;
    }


    .parth-cab-booking-header{
        align-items:center;

        padding-bottom:16px;
    }


    .parth-cab-booking-header h3{
        font-size:17px;
    }


    .parth-cab-booking-header p{
        font-size:10px;
    }


    .parth-cab-call-button{
        padding:9px 10px;

        font-size:10px;
    }


    /* Form */

    .parth-cab-form-grid{
        grid-template-columns:1fr;

        gap:0;
    }


    .parth-cab-form-group{
        margin-bottom:13px;
    }


    .parth-cab-input-wrap input,
    .parth-cab-input-wrap select{
        height:46px;

        font-size:12px;
    }


    /* Trip Switch */

    .parth-trip-option{
        padding:11px 5px;

        font-size:11px;
    }


    /* Button */

    .parth-cab-submit-btn{
        height:50px;

        font-size:12px;
    }


    .parth-cab-form-trust{
        gap:9px;
    }


    .parth-cab-form-trust span{
        font-size:9px;
    }

}




