/* =====================================================
   SOT TRAVELS — INDEX PAGE
   MODERN TRAVEL UI
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --primary: #0b6b68;
    --primary-dark: #07504e;
    --primary-light: #e7f5f3;

    --accent: #d99b4c;

    --dark: #10201f;
    --dark-2: #18302e;

    --text: #273635;
    --muted: #6c7b79;

    --white: #ffffff;
    --light: #f6f8f7;
    --light-2: #eef3f1;

    --border: #dfe7e4;

    --shadow-sm:
        0 8px 25px rgba(16, 32, 31, 0.06);

    --shadow:
        0 20px 60px rgba(16, 32, 31, 0.10);

    --shadow-lg:
        0 30px 80px rgba(16, 32, 31, 0.16);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1240px;

    --transition:
        all 0.3s ease;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


body.loaded {
    opacity: 1;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4 {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    line-height: 1.15;

}


h1 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
}


h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}


h3 {
    font-size: 1.25rem;
}


p {
    color: var(--muted);
}


/* =====================================================
   SECTION
===================================================== */

section {
    position: relative;
}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 0.76rem;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    margin-bottom: 16px;

}


.section-heading {

    max-width: 680px;

    margin-bottom: 55px;

}


.section-heading.centered {

    text-align: center;

    margin-inline: auto;

}


.section-heading h2 {
    margin-bottom: 16px;
}


.section-heading p {
    font-size: 1.05rem;
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    transition: var(--transition);

}


.header.sticky {

    position: fixed;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow-sm);

    padding: 14px 0;

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.logo-mark {

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--white);

    color: var(--primary);

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;

    font-weight: 800;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.logo-text strong {

    font-family: "Manrope", sans-serif;

    font-size: 1.05rem;

    font-weight: 800;

}


.logo-text small {

    font-size: 0.65rem;

    opacity: 0.65;

    margin-top: 4px;

}


/* Hero header logo */

.header:not(.sticky) .logo-text strong,
.header:not(.sticky) .logo-text small {

    color: var(--white);

}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-menu a {

    position: relative;

    color: rgba(255, 255, 255, 0.86);

    font-size: 0.9rem;

    font-weight: 600;

    transition: var(--transition);

}


.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: currentColor;

    transition: var(--transition);

}


.nav-menu a:hover,
.nav-menu a.active {

    color: var(--white);

}


.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}


.header.sticky .nav-menu a {

    color: var(--text);

}


.header.sticky .nav-menu a:hover,
.header.sticky .nav-menu a.active {

    color: var(--primary);

}


/* =====================================================
   NAV ACTIONS
===================================================== */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;

}


.nav-login {

    color: var(--white);

    font-size: 0.88rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 7px;

}


.header.sticky .nav-login {

    color: var(--text);

}


.nav-book {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: var(--white);

    color: var(--primary);

    padding: 12px 18px;

    border-radius: 999px;

    font-size: 0.85rem;

    font-weight: 800;

    transition: var(--transition);

}


.nav-book:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);

}


.header.sticky .nav-book {

    background: var(--primary);

    color: var(--white);

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 12px;

    background: var(--white);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 20px;

    height: 2px;

    background: var(--dark);

    transition: var(--transition);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 850px;

    padding: 150px 0 100px;

    display: flex;

    align-items: center;

    background: var(--dark);

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(6, 29, 28, 0.96) 0%,
            rgba(6, 29, 28, 0.76) 45%,
            rgba(6, 29, 28, 0.38) 100%
        ),

        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2000&q=80")
        center / cover no-repeat;

    transform: scale(1.02);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(217, 155, 76, 0.18),
            transparent 30%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 520px);

    align-items: center;

    gap: 70px;

}


.hero-content {

    color: var(--white);

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    margin-bottom: 24px;

}


.hero h1 {

    max-width: 800px;

    color: var(--white);

    letter-spacing: -0.045em;

    margin-bottom: 24px;

}


.hero-content > p {

    max-width: 650px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 1.08rem;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 40px;

}


.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 0.9rem;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    background: var(--accent);

    color: var(--dark);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(217, 155, 76, 0.25);

}


.btn-outline {

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: var(--white);

    background: rgba(255, 255, 255, 0.06);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--dark);

}


/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.8rem;

}


.trust-item i {

    color: var(--accent);

}


/* =====================================================
   BOOKING CARD
===================================================== */

.booking-card {

    background: rgba(255, 255, 255, 0.98);

    border-radius: var(--radius-lg);

    padding: 30px;

    box-shadow: var(--shadow-lg);

}


.booking-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

}


.booking-label {

    color: var(--primary);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.booking-header h2 {

    font-size: 1.65rem;

    margin-top: 5px;

}


.booking-step {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 0.75rem;

    font-weight: 800;

}


/* =====================================================
   TRIP TYPE
===================================================== */

.trip-type {

    display: flex;

    gap: 8px;

    padding: 5px;

    background: var(--light);

    border-radius: 12px;

    margin-bottom: 20px;

}


.trip-option {

    flex: 1;

    position: relative;

    cursor: pointer;

}


.trip-option input {

    position: absolute;

    opacity: 0;

}


.trip-option span {

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--muted);

    transition: var(--transition);

}


.trip-option input:checked + span {

    background: var(--white);

    color: var(--primary);

    box-shadow: var(--shadow-sm);

}


/* =====================================================
   BOOKING GRID
===================================================== */

.booking-grid {

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: end;

    gap: 10px;

    margin-bottom: 14px;

}


.booking-grid.two {

    grid-template-columns: 1fr 1fr;

}


.booking-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.booking-field label {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 0.74rem;

    font-weight: 800;

    color: var(--dark);

}


.booking-field label i {

    color: var(--primary);

}


.booking-field input,
.booking-field select {

    width: 100%;

    height: 50px;

    border: 1px solid var(--border);

    border-radius: 11px;

    padding: 0 13px;

    outline: none;

    background: var(--white);

    color: var(--text);

    font-size: 0.82rem;

    transition: var(--transition);

}


.booking-field input:focus,
.booking-field select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(11, 107, 104, 0.08);

}


.booking-swap {

    padding-bottom: 5px;

}


.booking-swap button {

    width: 34px;
    height: 34px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    color: var(--primary);

    transition: var(--transition);

}


.booking-swap button:hover {

    background: var(--primary);

    color: var(--white);

    transform: rotate(180deg);

}


/* =====================================================
   BOOKING SUBMIT
===================================================== */

.booking-submit {

    width: 100%;

    height: 54px;

    margin-top: 8px;

    border: 0;

    border-radius: 12px;

    background: var(--primary);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 800;

    font-size: 0.9rem;

    transition: var(--transition);

}


.booking-submit:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(11, 107, 104, 0.22);

}


.booking-note {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

    margin-top: 13px;

    font-size: 0.68rem;

    color: var(--muted);

}


.booking-note i {

    color: var(--primary);

}


/* =====================================================
   HERO SCROLL
===================================================== */

.hero-scroll {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

}


.hero-scroll i {

    animation: bounce 1.6s infinite;

}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    background: var(--white);

    border-bottom: 1px solid var(--border);

}


.stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat-card {

    min-height: 125px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-right: 1px solid var(--border);

}


.stat-card:last-child {
    border-right: 0;
}


.stat-icon {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary);

}


.stat-card h2 {

    font-size: 1.65rem;

    margin-bottom: 2px;

}


.stat-card p {

    font-size: 0.73rem;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    padding: 120px 0;

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;

}


.about-visual {

    position: relative;

}


.about-image-card {

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

}


.about-image-placeholder {

    min-height: 570px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: var(--white);

    background:

        linear-gradient(
            rgba(8, 56, 54, 0.28),
            rgba(8, 56, 54, 0.60)
        ),

        url("https://images.unsplash.com/photo-1507699622108-4be3abd695ad?auto=format&fit=crop&w=1000&q=85")
        center / cover no-repeat;

}


.about-image-placeholder i {

    font-size: 3rem;

}


.about-image-placeholder span {

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}


.experience-badge {

    position: absolute;

    right: -25px;

    bottom: 35px;

    min-width: 180px;

    padding: 20px;

    border-radius: 18px;

    background: var(--accent);

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;

    gap: 12px;

}


.experience-badge strong {

    font-family: "Manrope", sans-serif;

    font-size: 2rem;

    color: var(--dark);

}


.experience-badge span {

    color: var(--dark);

    font-size: 0.72rem;

    font-weight: 700;

    line-height: 1.35;

}


.about-content h2 {

    margin-bottom: 22px;

}


.about-mission {

    font-size: 1.05rem;

    line-height: 1.85;

    margin-bottom: 35px;

}


.about-points {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 30px;

}


.about-point {

    display: flex;

    gap: 15px;

}


.about-point > span {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);

}


.about-point h3 {

    font-size: 0.98rem;

    margin-bottom: 3px;

}


.about-point p {

    font-size: 0.8rem;

    line-height: 1.6;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-weight: 800;

    font-size: 0.85rem;

}


.text-link i {

    transition: var(--transition);

}


.text-link:hover i {

    transform: translateX(5px);

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    padding: 120px 0;

    background: var(--light);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    position: relative;

    padding: 35px;

    min-height: 310px;

    border-radius: var(--radius);

    background: var(--white);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.service-number {

    position: absolute;

    top: 25px;

    right: 28px;

    font-family: "Manrope", sans-serif;

    font-size: 0.72rem;

    font-weight: 800;

    color: #b5c0be;

}


.service-icon {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 1.25rem;

    margin-bottom: 35px;

}


.service-card h3 {

    margin-bottom: 12px;

}


.service-card p {

    font-size: 0.88rem;

    line-height: 1.75;

}


.service-link {

    position: absolute;

    bottom: 28px;

    left: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 0.78rem;

    font-weight: 800;

}


/* =====================================================
   ROUTES
===================================================== */

.routes-section {

    padding: 120px 0;

    background: var(--dark);

}


.routes-section h2 {

    color: var(--white);

}


.routes-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

}


.routes-header .section-eyebrow {

    color: var(--accent);

}


.routes-header > p {

    max-width: 380px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 0.9rem;

}


.routes-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.route-card {

    background: var(--white);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);

}


.route-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}


.route-card-content {

    padding: 27px;

}


.route-label {

    color: var(--primary);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.route-card h3 {

    margin: 8px 0 25px;

    font-size: 1.25rem;

}


.route-locations {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 10px;

    align-items: center;

}


.route-locations small {

    display: block;

    color: var(--muted);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    margin-bottom: 4px;

}


.route-locations strong {

    display: block;

    font-size: 0.78rem;

    line-height: 1.4;

}


.route-arrow {

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 0.8rem;

}


.route-price {

    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

}


.route-price small {

    color: var(--muted);

    font-size: 0.7rem;

}


.route-price strong {

    color: var(--dark);

    font-family: "Manrope", sans-serif;

    font-size: 1.4rem;

}


.route-loading {

    grid-column: 1 / -1;

    text-align: center;

    padding: 50px;

    color: rgba(255, 255, 255, 0.65);

}


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-section {

    padding: 120px 0;

    background: var(--white);

}


.steps-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.step-card {

    position: relative;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

}


.step-number {

    position: absolute;

    top: 25px;

    right: 28px;

    color: #ccd5d2;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

}


.step-icon {

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background: var(--primary);

    color: var(--white);

    font-size: 1.2rem;

    margin-bottom: 30px;

}


.step-card h3 {

    margin-bottom: 12px;

}


.step-card p {

    font-size: 0.87rem;

    line-height: 1.7;

}


/* =====================================================
   VISION
===================================================== */

.vision-section {

    padding: 100px 0;

    background: var(--light);

}


.vision-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.vision-card {

    position: relative;

    padding: 45px;

    border-radius: var(--radius-lg);

    overflow: hidden;

}


.vision-card.mission {

    background: var(--primary);

}


.vision-card.vision {

    background: var(--accent);

}


.vision-card .section-eyebrow {

    margin-top: 20px;

}


.vision-card.mission .section-eyebrow {

    color: rgba(255, 255, 255, 0.65);

}


.vision-card p {

    font-family: "Manrope", sans-serif;

    font-size: 1.1rem;

    line-height: 1.75;

    margin-top: 8px;

}


.vision-card.mission p {

    color: rgba(255, 255, 255, 0.85);

}


.vision-card.vision p {

    color: var(--dark);

}


.vision-icon {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.13);

    color: var(--white);

}


.vision-card.vision .vision-icon {

    background: rgba(16, 32, 31, 0.10);

    color: var(--dark);

}


/* =====================================================
   FAQ
===================================================== */

.faq-section {

    padding: 120px 0;

    background: var(--white);

}


.faq-grid {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 100px;

    align-items: start;

}


.faq-intro {

    position: sticky;

    top: 120px;

}


.faq-intro h2 {

    margin-bottom: 18px;

}


.faq-intro > p {

    font-size: 0.92rem;

    line-height: 1.8;

    margin-bottom: 25px;

}


.faq-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.faq-item {

    border: 1px solid var(--border);

    border-radius: 14px;

    overflow: hidden;

    background: var(--white);

}


.faq-question {

    width: 100%;

    border: 0;

    background: transparent;

    padding: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    color: var(--dark);

    font-weight: 800;

}


.faq-question i {

    color: var(--primary);

    transition: var(--transition);

}


.faq-answer {

    display: none;

    padding: 0 22px 22px;

}


.faq-answer p {

    font-size: 0.85rem;

    line-height: 1.8;

}


.faq-item.active .faq-answer {

    display: block;

}


.faq-item.active .faq-question i {

    transform: rotate(45deg);

}


.faq-loading {

    padding: 30px;

    text-align: center;

    color: var(--muted);

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    padding: 100px 0;

    background: var(--primary);

    overflow: hidden;

}


.cta-container {

    position: relative;

}


.cta-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

}


.cta-section .section-eyebrow {

    color: rgba(255, 255, 255, 0.65);

}


.cta-section h2 {

    color: var(--white);

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    letter-spacing: -0.04em;

    margin-bottom: 20px;

}


.cta-section p {

    color: rgba(255, 255, 255, 0.72);

    margin-bottom: 30px;

}


.cta-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn-light {

    background: var(--white);

    color: var(--primary);

}


.btn-light:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow);

}


.btn-ghost {

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.3);

}


.btn-ghost:hover {

    background: rgba(255, 255, 255, 0.1);

}


.cta-decoration {

    position: absolute;

    right: -50px;

    top: 50%;

    transform: translateY(-50%);

    width: 430px;
    height: 430px;

}


.cta-decoration span {

    position: absolute;

    inset: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

}


.cta-decoration span:nth-child(2) {

    inset: 55px;

}


.cta-decoration span:nth-child(3) {

    inset: 110px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding-top: 75px;

    background: #091716;

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;

}


.footer .logo-mark {

    background: var(--primary);

    color: var(--white);

}


.footer-logo {

    margin-bottom: 20px;

}


.footer-logo .logo-text strong {

    color: var(--white);

}


.footer-logo .logo-text small {

    color: rgba(255, 255, 255, 0.55);

}


.footer-brand > p {

    max-width: 330px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.82rem;

    line-height: 1.8;

    margin-bottom: 22px;

}


.footer-social {

    display: flex;

    gap: 8px;

}


.footer-social a {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.7);

    transition: var(--transition);

}


.footer-social a:hover {

    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h3 {

    color: var(--white);

    font-size: 0.85rem;

    margin-bottom: 8px;

}


.footer-column a,
.footer-column p {

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.78rem;

    line-height: 1.7;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--white);

}


.footer-column a i {

    width: 18px;

    color: var(--primary);

}


.footer-booking p {

    margin-bottom: 8px;

}


.footer-book-btn {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    border-radius: 999px;

    background: var(--accent);

    color: var(--dark) !important;

    font-weight: 800;

}


.footer-bottom {

    min-height: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.68rem;

}


/* =====================================================
   SCROLL TOP
===================================================== */

.scrollTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 46px;
    height: 46px;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 900;

    box-shadow: var(--shadow);

}


.scrollTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.scrollTop:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1100px) {


    .nav-menu {

        gap: 18px;

    }


    .nav-actions {

        gap: 10px;

    }


    .nav-login {

        display: none;

    }


    .hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 450px);

        gap: 40px;

    }


    .hero {

        min-height: 800px;

    }


    .about-grid {

        gap: 50px;

    }


    .faq-grid {

        gap: 50px;

    }

}


/* =====================================================
   RESPONSIVE — MOBILE MENU
===================================================== */

@media (max-width: 900px) {


    .nav-menu {

        position: fixed;

        top: 0;
        right: -100%;

        width: min(320px, 85%);

        height: 100vh;

        padding: 100px 30px 30px;

        background: var(--white);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        box-shadow: var(--shadow-lg);

        transition: right 0.35s ease;

    }


    .nav-menu.active {

        right: 0;

    }


    .nav-menu a,
    .header:not(.sticky) .nav-menu a {

        color: var(--dark);

        font-size: 1rem;

    }


    .nav-menu a:hover,
    .nav-menu a.active {

        color: var(--primary);

    }


    .menu-toggle {

        display: flex;

        position: relative;

        z-index: 1100;

    }


    .nav-actions {

        margin-left: auto;

    }


    .nav-book {

        padding: 10px 15px;

    }


    .hero-container {

        grid-template-columns: 1fr;

    }


    .hero {

        padding-top: 130px;

        padding-bottom: 70px;

    }


    .booking-card {

        max-width: 650px;

        width: 100%;

    }


    .hero-scroll {

        display: none;

    }


    .stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-card:nth-child(2) {

        border-right: 0;

    }


    .stat-card:nth-child(-n+2) {

        border-bottom: 1px solid var(--border);

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-image-placeholder {

        min-height: 450px;

    }


    .services-grid,
    .routes-grid,
    .steps-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .vision-grid {

        grid-template-columns: 1fr;

    }


    .faq-grid {

        grid-template-columns: 1fr;

    }


    .faq-intro {

        position: static;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =====================================================
   RESPONSIVE — SMALL MOBILE
===================================================== */

@media (max-width: 600px) {


    .container {

        width: min(
            calc(100% - 28px),
            var(--container)
        );

    }


    .header {

        padding: 14px 0;

    }


    .logo-mark {

        width: 40px;
        height: 40px;

    }


    .logo-text strong {

        font-size: 0.92rem;

    }


    .logo-text small {

        display: none;

    }


    .nav-book {

        display: none;

    }


    .hero {

        min-height: auto;

        padding: 110px 0 45px;

    }


    .hero-background {

        background-position: 62% center;

    }


    .hero h1 {

        font-size: 2.65rem;

    }


    .hero-content > p {

        font-size: 0.94rem;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-trust {

        flex-direction: column;

        gap: 10px;

    }


    .booking-card {

        padding: 20px;

        border-radius: 20px;

    }


    .booking-header h2 {

        font-size: 1.35rem;

    }


    .booking-grid,
    .booking-grid.two {

        grid-template-columns: 1fr;

    }


    .booking-swap {

        display: none;

    }


    .stats {

        grid-template-columns: 1fr;

    }


    .stat-card {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }


    .stat-card:last-child {

        border-bottom: 0;

    }


    .about-section,
    .services-section,
    .routes-section,
    .how-section,
    .faq-section {

        padding: 80px 0;

    }


    .about-image-placeholder {

        min-height: 350px;

    }


    .experience-badge {

        right: 15px;

        bottom: 20px;

        min-width: 155px;

        padding: 15px;

    }


    .experience-badge strong {

        font-size: 1.65rem;

    }


    .services-grid,
    .routes-grid,
    .steps-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 280px;

    }


    .routes-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .route-locations {

        grid-template-columns:
            1fr;

        gap: 8px;

    }


    .route-arrow {

        transform: rotate(90deg);

    }


    .vision-section {

        padding: 70px 0;

    }


    .vision-card {

        padding: 30px;

    }


    .cta-section {

        padding: 75px 0;

    }


    .cta-section h2 {

        font-size: 2.5rem;

    }


    .cta-decoration {

        opacity: 0.35;

        right: -180px;

    }


    .footer {

        padding-top: 55px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;

    }


    .footer-bottom {

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .scrollTop {

        right: 15px;

        bottom: 15px;

        width: 42px;
        height: 42px;

    }

}

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.logo-img{
    height:115px;
    width:auto;
    object-fit:contain;
    display:block;
    filter:drop-shadow(0 4px 12px rgba(0,0,0,.30));
    transition:.3s;
}

.logo-img:hover{
    transform:scale(1.05);
}


@media (max-width:768px){

.logo-img{
    height:65px;
}

}


.whiteSpace {
    white-space: pre-line;
}

/* =====================================================
   QUICK BOOKING - FULL WIDTH ROUTE
   ===================================================== */

.booking-route-field {
    grid-column: 1 / -1;
    width: 100%;
}

/* =====================================================
   QUICK BOOKING FARE
   ===================================================== */

.booking-fare {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;

    border-radius: 12px;

    background: #f5f9f9;
}

.booking-fare-label {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 600;
}

.booking-fare-label i {
    font-size: 14px;
}

.booking-fare strong {
    font-size: 18px;
    font-weight: 700;
}

/* =====================================================
   BOOKING PAGE - HEADER FIX
===================================================== */

.booking-page {
    padding-top: 100px;
    padding-bottom: 80px;
}


/* Header should stay above booking content */

header,
.site-header,
.navbar {
    position: relative;
    z-index: 1000;
}


/* Logo size */

header img,
.site-header img,
.navbar img {
    max-width: 180px;
    width: 180px;
    height: auto;
    display: block;
}


/* Navigation container */

header nav,
.site-header nav,
.navbar nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Navigation links */

header nav a,
.site-header nav a,
.navbar nav a {
    text-decoration: none;
}


/* =====================================================
   BOOKING CONTENT
===================================================== */

.booking-page .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Header inside booking page */

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.booking-header h1 {
    margin: 0;
}

.booking-header p {
    max-width: 430px;
    margin: 10px 0 0;
    line-height: 1.6;
}


/* =====================================================
   JOURNEY / CUSTOMER SECTIONS
===================================================== */

.booking-section {
    margin-bottom: 45px;
}

.booking-section h2 {
    margin-bottom: 25px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
}


/* =====================================================
   BUTTONS
===================================================== */

.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.booking-actions button {
    cursor: pointer;
}


/* =====================================================
   AVAILABILITY SECTION
===================================================== */

.availability-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.availability-header {
    margin-bottom: 30px;
}

.available-vehicle-card {
    border: 1px solid #e1e1e1;
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vehicle-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.vehicle-result-row small,
.vehicle-result-footer small {
    display: block;
    margin-bottom: 6px;
    color: #777;
}

.vehicle-result-row strong,
.vehicle-result-footer strong {
    font-size: 18px;
}

.vehicle-result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicle-available-badge {
    padding: 8px 15px;
    border-radius: 30px;
    background: #dff5e8;
    color: #167a43;
    font-weight: 600;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .booking-page {
        padding-top: 80px;
    }

    .booking-header {
        display: block;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-result-row {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   BOOKING PAGE NAVBAR
===================================================== */

body {
    margin: 0;
}

/* Header */
.booking-page ~ .footer {
    margin-top: 0;
}

.header {
    position: relative;
    width: 100%;
    /* height: 92px; */
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    z-index: 1000;
}

/* Navbar container */
.header .nav-container {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header .logo-img {
    width: 138px;
    height: auto;
    display: block;
}

/* Navigation */
.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 45px;
}

.header .nav-menu a {
    text-decoration: none;
    color: #142624;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.header .nav-menu a:hover {
    color: #087f7b;
}

/* Right side */
.header .nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Login */
.header .nav-login {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #142624;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* Book button */
.header .nav-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 30px;
    background: #087f7b;
    color: #ffffff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.header .nav-book:hover {
    background: #066d69;
}

/* =====================================================
   BOOKING PAGE TOP SPACING
===================================================== */

.booking-page {
    padding-top: 55px;
}
/* =========================================================
   BOOKING PAGE - MODERN UI OVERRIDES
   ========================================================= */

body.booking-body {
    background: #f7f9f8;
}


/* =========================================================
   BOOKING MAIN
   ========================================================= */

body.booking-body .booking-page {
    padding: 65px 0 80px;
}

body.booking-body .booking-page .container {
    max-width: 1180px;
}


/* =========================================================
   BOOKING HERO
   ========================================================= */

body.booking-body .booking-header {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 60px;

    margin-bottom: 48px;
    padding: 20px 0 10px;
}

body.booking-body .booking-header h1 {
    margin: 0;

    max-width: 700px;

    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -2.5px;

    color: #102020;
}

body.booking-body .booking-header p {
    margin: 0 0 7px;

    max-width: 390px;

    font-size: 16px;
    line-height: 1.7;

    color: #667573;
}


/* =========================================================
   BOOKING SECTIONS
   ========================================================= */

body.booking-body .booking-section {
    margin-bottom: 28px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e4ebe9;
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(16, 32, 32, 0.045);
}

body.booking-body .booking-section h2 {
    margin: 0 0 24px;

    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.8px;

    color: #102020;
}


/* =========================================================
   FORM GRID
   ========================================================= */

body.booking-body .booking-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px 24px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

body.booking-body .form-group {
    gap: 8px;
}

body.booking-body .form-group label {
    font-size: 13px;
    font-weight: 700;

    color: #52615f;
}


/* =========================================================
   INPUTS
   ========================================================= */

body.booking-body .form-group input {
    min-height: 52px;

    padding: 0 15px;

    border: 1px solid #dce5e3;
    border-radius: 10px;

    background: #f9fbfa;

    font-size: 15px;
    color: #172525;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.booking-body .form-group input:hover {
    border-color: #c7d4d1;
}

body.booking-body .form-group input:focus {
    border-color: #117b78;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(17, 123, 120, 0.08);
}


/* Readonly journey fields */

body.booking-body .form-group input[readonly] {
    background: #f5f8f7;

    color: #263634;

    cursor: default;
}


/* =========================================================
   CONTINUE BUTTON
   ========================================================= */

body.booking-body .booking-actions {
    margin-top: 28px;

    display: flex;
    align-items: center;
}

body.booking-body #continueBookingBtn {
    min-height: 54px;

    padding: 0 26px;

    border: 0;
    border-radius: 999px;

    background: #e5a644;
    color: #102020;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 22px rgba(229, 166, 68, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.booking-body #continueBookingBtn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(229, 166, 68, 0.28);
}


/* =========================================================
   AVAILABILITY
   ========================================================= */

body.booking-body .availability-section {
    max-width: 1180px;

    margin: 0 auto;

    padding:
        25px 24px 90px;
}

body.booking-body .availability-header {
    margin-bottom: 28px;
}

body.booking-body .availability-header > span {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #117b78;
}

body.booking-body .availability-header h2 {
    margin: 0 0 8px;

    font-size: clamp(38px, 4vw, 54px);

    letter-spacing: -1.5px;
}

body.booking-body .availability-header p {
    margin: 0;

    font-size: 15px;

    color: #687777;
}


/* =========================================================
   VEHICLE CARD
   ========================================================= */

body.booking-body .available-vehicle-card {
    padding: 30px;

    background: #ffffff;

    border: 1px solid #e1e8e6;
    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(16, 32, 32, 0.07);
}

body.booking-body .vehicle-result-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid #edf1f0;
}

body.booking-body .vehicle-result-row small,
body.booking-body .vehicle-result-footer small {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    color: #7a8887;
}

body.booking-body .vehicle-result-row strong {
    font-size: 17px;

    color: #142525;
}


/* =========================================================
   FARE + BUTTON
   ========================================================= */

body.booking-body .vehicle-result-footer {
    display: grid;

    grid-template-columns: 1fr auto auto;

    align-items: center;

    gap: 25px;
}

body.booking-body .vehicle-result-footer strong {
    display: block;

    font-size: 23px;

    color: #102020;
}

body.booking-body .vehicle-available-badge {
    min-height: 38px;

    padding: 0 16px;

    border-radius: 999px;

    background: #e1f6e9;
    color: #168044;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   CONTINUE TO BOOKING
   ========================================================= */

body.booking-body #continueToBooking {
    min-height: 48px;

    padding: 0 22px;

    border: 0;
    border-radius: 999px;

    background: #e5a644;
    color: #102020;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.booking-body #continueToBooking:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(229, 166, 68, 0.25);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    body.booking-body .booking-header {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 38px;
    }

    body.booking-body .booking-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.booking-body .vehicle-result-footer {
        grid-template-columns: 1fr auto;
    }

    body.booking-body #continueToBooking {
        grid-column: 1 / -1;

        justify-self: start;
    }
}


@media (max-width: 650px) {

    body.booking-body .booking-page {
        padding: 40px 0 60px;
    }

    body.booking-body .booking-page .container {
        padding: 0 18px;
    }

    body.booking-body .booking-header h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    body.booking-body .booking-header p {
        font-size: 15px;
    }

    body.booking-body .booking-section {
        padding: 22px 18px;

        border-radius: 16px;
    }

    body.booking-body .booking-section h2 {
        font-size: 27px;
    }

    body.booking-body .booking-grid {
        grid-template-columns: 1fr;
    }

    body.booking-body .availability-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.booking-body .vehicle-result-row {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    body.booking-body .vehicle-result-footer {
        grid-template-columns: 1fr;
    }

    body.booking-body #continueToBooking {
        width: 100%;
    }
}

/* =========================================================
   BOOKING PAGE - STEP 2
   HERO + JOURNEY REFINEMENT
   ========================================================= */

body.booking-body .booking-page {
    padding: 45px 0 90px;
}


/* -------------------------
   HERO
------------------------- */

body.booking-body .booking-header {
    grid-template-columns: 1.25fr 0.75fr;

    gap: 50px;

    margin-bottom: 35px;

    padding-top: 10px;
}

body.booking-body .booking-header h1 {
    font-size: clamp(52px, 5vw, 68px);

    line-height: 0.98;

    letter-spacing: -2.8px;
}

body.booking-body .booking-header p {
    max-width: 350px;

    margin-bottom: 5px;

    font-size: 15px;

    line-height: 1.65;
}


/* -------------------------
   JOURNEY CARD
------------------------- */

body.booking-body .booking-section:first-of-type {
    padding: 32px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbfdfc 100%
        );
}

body.booking-body .booking-section:first-of-type h2 {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;
}

body.booking-body .booking-section:first-of-type h2::before {
    content: "";

    display: block;

    width: 5px;
    height: 30px;

    border-radius: 10px;

    background: #117b78;
}


/* -------------------------
   JOURNEY INPUTS
------------------------- */

body.booking-body .booking-section:first-of-type
.form-group input {
    background: #f8faf9;

    border-color: #e0e8e6;
}

body.booking-body .booking-section:first-of-type
.form-group input[readonly] {
    background: #f7f9f8;

    font-weight: 500;
}


/* -------------------------
   CUSTOMER CARD
------------------------- */

body.booking-body .booking-section:nth-of-type(2) {
    padding: 32px;

    border-radius: 20px;
}

body.booking-body .booking-section:nth-of-type(2) h2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.booking-body .booking-section:nth-of-type(2) h2::before {
    content: "";

    display: block;

    width: 5px;
    height: 30px;

    border-radius: 10px;

    background: #e5a644;
}


/* -------------------------
   ACTION AREA
------------------------- */

body.booking-body .booking-actions {
    margin-top: 22px;

    padding-bottom: 15px;
}

body.booking-body #continueBookingBtn {
    min-width: 235px;

    min-height: 55px;

    font-size: 14px;

    letter-spacing: 0.1px;
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 900px) {

    body.booking-body .booking-header {
        grid-template-columns: 1fr;

        gap: 15px;
    }

}


@media (max-width: 650px) {

    body.booking-body .booking-page {
        padding-top: 30px;
    }

    body.booking-body .booking-header h1 {
        font-size: 44px;

        letter-spacing: -1.8px;
    }

    body.booking-body .booking-section:first-of-type,
    body.booking-body .booking-section:nth-of-type(2) {
        padding: 22px 18px;
    }

}

/* =====================================================
   AVAILABILITY CARD - MODERN UI
===================================================== */

.availability-section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 80px 20px 100px;
}

.availability-header {
    margin-bottom: 35px;
}

.availability-header > span {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #087f7b;
    margin-bottom: 12px;
}

.availability-header h2 {
    margin: 0 0 10px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    color: #0b2422;
}

.availability-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #667775;
}


/* =========================
   VEHICLE CARD
========================= */

.available-vehicle-card {
    background: #ffffff;
    border: 1px solid #e5e9e8;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 18px 50px rgba(11, 36, 34, 0.08);
}


/* =========================
   RESULT ROW
========================= */

.vehicle-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 0 28px;
}

.vehicle-result-row + .vehicle-result-row {
    padding-top: 28px;
    border-top: 1px solid #edf0ef;
}

.vehicle-result-row > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-result-row small,
.vehicle-result-footer small {
    font-size: 13px;
    color: #7b8987;
    font-weight: 500;
}

.vehicle-result-row strong {
    font-size: 18px;
    color: #102624;
    font-weight: 700;
}


/* =========================
   FOOTER / FARE
========================= */

.vehicle-result-footer {
    position: relative;

    margin-top: 28px;
    padding-top: 28px;

    border-top: 1px solid #edf0ef;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.vehicle-result-footer > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

#resultFare {
    font-size: 30px;
    font-weight: 700;
    color: #0b2422;
}


/* =========================
   AVAILABLE BADGE
========================= */

.vehicle-available-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: #e5f8ee;
    color: #11834f;

    font-size: 14px;
    font-weight: 700;
}


/* =========================
   CONTINUE BUTTON
========================= */

#continueToBooking {
    margin-top: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;
    padding: 0 25px;

    border: none;
    border-radius: 999px;

    background: #e4a847;
    color: #102624;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

#continueToBooking:hover {
    transform: translateY(-2px);

    background: #d99a36;

    box-shadow: 0 10px 25px rgba(228, 168, 71, 0.25);
}

#continueToBooking i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

#continueToBooking:hover i {
    transform: translateX(4px);
}


/* =========================
   NO VEHICLE
========================= */

.no-vehicle-card {
    background: #ffffff;
    border: 1px solid #eadede;
    border-radius: 20px;
    padding: 30px;

    box-shadow: 0 12px 35px rgba(11, 36, 34, 0.05);
}

.no-vehicle-card strong {
    display: block;
    margin-bottom: 8px;

    font-size: 20px;
    color: #402020;
}

.no-vehicle-card p {
    margin: 0;

    color: #746666;
    line-height: 1.6;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .availability-section {
        padding: 55px 18px 70px;
    }

    .availability-header h2 {
        font-size: 42px;
    }

    .available-vehicle-card {
        padding: 25px;
        border-radius: 20px;
    }

    .vehicle-result-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vehicle-result-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-available-badge {
        margin-top: 5px;
    }

    #continueToBooking {
        width: 100%;
    }
}

/* =========================================================
   SOT TRAVELS - MODERN BOOKING PAGE
   Final UI Override
========================================================= */

.booking-page {
    background:
        radial-gradient(
            circle at top right,
            rgba(20, 120, 100, 0.07),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #f7faf9 0%,
            #ffffff 65%
        );

    padding: 90px 0 80px;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.booking-page .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.booking-page .booking-header {
    display: block;

    margin-bottom: 45px;
    padding: 0;
}

.booking-page .booking-header h1 {
    margin: 0;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;

    color: #102020;
}

.booking-page .booking-header p {
    margin: 15px 0 0;

    max-width: 620px;

    font-size: 16px;
    line-height: 1.7;

    color: #6b7775;
}


/* =========================================================
   BOOKING SECTIONS
========================================================= */

.booking-page .booking-section {

    position: relative;

    margin-bottom: 28px;

    padding: 32px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e7ecea;

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(16, 32, 32, 0.06);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.booking-page .booking-section h2 {

    display: flex;
    align-items: center;

    gap: 12px;

    margin: 0 0 26px;

    font-size: 22px;

    font-weight: 750;

    color: #102020;
}

.booking-page .booking-section h2::before {

    content: "";

    width: 8px;
    height: 28px;

    border-radius: 20px;

    background: #0d6b5d;
}


/* =========================================================
   GRID
========================================================= */

.booking-page .booking-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.booking-page .form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

    min-width: 0;
}


/* =========================================================
   LABEL
========================================================= */

.booking-page .form-group label {

    font-size: 13px;

    font-weight: 700;

    color: #52615e;

    letter-spacing: 0.2px;
}


/* =========================================================
   INPUT
========================================================= */

.booking-page .form-group input {

    width: 100%;

    min-height: 52px;

    box-sizing: border-box;

    padding: 0 16px;

    border: 1px solid #dfe7e4;

    border-radius: 12px;

    background: #f9fbfa;

    color: #172624;

    font-size: 15px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.booking-page .form-group input:focus {

    border-color: #0d6b5d;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(13, 107, 93, 0.08);
}


/* Readonly fields */

.booking-page .form-group input[readonly] {

    color: #263633;

    background: #f5f8f7;

    cursor: default;
}


/* =========================================================
   CUSTOMER MESSAGE
========================================================= */

#bookingUserMessage {

    margin: -10px 0 22px;

    font-size: 14px;

    color: #687572;
}


/* =========================================================
   ACTION AREA
========================================================= */

.booking-page .booking-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 14px;

    margin-top: 28px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.booking-page #continueBookingBtn {

    min-height: 54px;

    padding: 0 28px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #0d6b5d,
            #0a594e
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 12px 25px rgba(13, 107, 93, 0.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.booking-page #continueBookingBtn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(13, 107, 93, 0.27);
}


/* =========================================================
   CONTINUE TO BOOKING
========================================================= */

.booking-page #continueToBooking {

    min-height: 54px;

    padding: 0 28px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #102020,
            #1c3330
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.booking-page #continueToBooking:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(16, 32, 32, 0.20);
}


/* =========================================================
   AVAILABILITY SECTION
========================================================= */

.booking-page + .availability-section,
#availabilitySection {

    max-width: 1180px;

    margin: 0 auto 90px;

    padding: 0 24px;
}


/* =========================================================
   AVAILABILITY HEADER
========================================================= */

#availabilitySection .availability-header {

    margin-bottom: 24px;

    padding: 0 4px;
}


#availabilitySection .availability-header span {

    display: inline-block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #0d6b5d;
}


#availabilitySection .availability-header h2 {

    margin: 0;

    font-size: 30px;

    letter-spacing: -0.7px;

    color: #102020;
}


#availabilitySection .availability-header p {

    margin: 8px 0 0;

    color: #71807c;

    font-size: 14px;
}


/* =========================================================
   VEHICLE CARD
========================================================= */

#availabilitySection .available-vehicle-card {

    position: relative;

    overflow: hidden;

    padding: 0;

    background: #ffffff;

    border: 1px solid #e3ebe8;

    border-radius: 22px;

    box-shadow:
        0 18px 50px rgba(16, 32, 32, 0.08);
}


/* Top accent */

#availabilitySection .available-vehicle-card::before {

    content: "";

    display: block;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #0d6b5d,
            #55a99b
        );
}


/* =========================================================
   VEHICLE ROWS
========================================================= */

#availabilitySection .vehicle-result-row {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

    padding: 25px 30px;

    margin: 0;

    border-bottom: 1px solid #edf1ef;
}


#availabilitySection .vehicle-result-row small,
#availabilitySection .vehicle-result-footer small {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    color: #87928f;
}


#availabilitySection .vehicle-result-row strong {

    font-size: 17px;

    font-weight: 700;

    color: #182825;
}


/* =========================================================
   VEHICLE FOOTER
========================================================= */

#availabilitySection .vehicle-result-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 30px;

    background: #fbfcfc;
}


#availabilitySection .vehicle-result-footer strong {

    font-size: 26px;

    font-weight: 800;

    color: #0d6b5d;
}


/* =========================================================
   AVAILABLE BADGE
========================================================= */

#availabilitySection .vehicle-available-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    border-radius: 999px;

    background: #e8f7ef;

    color: #187347;

    font-size: 13px;

    font-weight: 750;
}


#availabilitySection .vehicle-available-badge::before {

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #2da968;
}


/* =========================================================
   NO VEHICLE CARD
========================================================= */

#availabilitySection .no-vehicle-card {

    padding: 30px;

    border: 1px solid #f0dede;

    border-radius: 18px;

    background: #fffafa;

    box-shadow:
        0 10px 30px rgba(80, 20, 20, 0.04);
}


#availabilitySection .no-vehicle-card strong {

    display: block;

    margin-bottom: 7px;

    font-size: 18px;

    color: #9b3434;
}


#availabilitySection .no-vehicle-card p {

    margin: 0;

    color: #766565;

    line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .booking-page {

        padding-top: 60px;
    }


    .booking-page .booking-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    #availabilitySection .vehicle-result-row {

        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .booking-page {

        padding: 45px 0 60px;
    }


    .booking-page .container {

        padding: 0 16px;
    }


    .booking-page .booking-header {

        margin-bottom: 30px;
    }


    .booking-page .booking-header h1 {

        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .booking-page .booking-header p {

        font-size: 14px;
    }


    .booking-page .booking-section {

        padding: 24px 20px;

        border-radius: 18px;

        margin-bottom: 18px;
    }


    .booking-page .booking-section h2 {

        font-size: 20px;
    }


    .booking-page .booking-grid {

        grid-template-columns: 1fr;

        gap: 17px;
    }


    .booking-page .booking-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .booking-page #continueBookingBtn,
    .booking-page #continueToBooking {

        width: 100%;
    }


    #availabilitySection {

        padding: 0 16px;

        margin-bottom: 60px;
    }


    #availabilitySection .availability-header h2 {

        font-size: 27px;
    }


    #availabilitySection .vehicle-result-row {

        padding: 21px;
    }


    #availabilitySection .vehicle-result-footer {

        flex-direction: column;

        align-items: flex-start;

        padding: 21px;
    }

}

/* =========================================================
   MODERN JOURNEY DETAILS
========================================================= */

.booking-page .booking-section:first-of-type {
    padding: 34px;
}


/* Journey fields */

.booking-page .booking-section:first-of-type .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* Pickup / Drop fields */

.booking-page .booking-section:first-of-type
.form-group:nth-child(1),
.booking-page .booking-section:first-of-type
.form-group:nth-child(2) {

    position: relative;

    padding: 20px 20px 20px 58px;

    border: 1px solid #e5ece9;

    border-radius: 16px;

    background: #f8faf9;
}


/* Location dots */

.booking-page .booking-section:first-of-type
.form-group:nth-child(1)::before,
.booking-page .booking-section:first-of-type
.form-group:nth-child(2)::before {

    content: "";

    position: absolute;

    left: 21px;
    top: 50%;

    width: 14px;
    height: 14px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #0d6b5d;

    box-shadow:
        0 0 0 5px rgba(13, 107, 93, 0.10);
}


/* Pickup indicator */

.booking-page .booking-section:first-of-type
.form-group:nth-child(1)::after {

    content: "";

    position: absolute;

    left: 27px;
    top: calc(50% + 11px);

    width: 2px;
    height: 30px;

    background: #d4dfdc;
}


/* Drop indicator */

.booking-page .booking-section:first-of-type
.form-group:nth-child(2)::before {

    background: #102020;
}


/* Labels */

.booking-page .booking-section:first-of-type
.form-group:nth-child(1) label,
.booking-page .booking-section:first-of-type
.form-group:nth-child(2) label {

    margin-bottom: 3px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #84908d;
}


/* Remove normal input box appearance */

.booking-page .booking-section:first-of-type
.form-group:nth-child(1) input,
.booking-page .booking-section:first-of-type
.form-group:nth-child(2) input {

    min-height: auto;

    padding: 0;

    border: 0;

    background: transparent;

    font-size: 16px;

    font-weight: 750;

    color: #172624;

    box-shadow: none;
}


/* =========================================================
   DATE / TIME / PASSENGER / VEHICLE
========================================================= */

.booking-page .booking-section:first-of-type
.form-group:nth-child(n+3) {

    padding: 18px;

    border: 1px solid #e8eeec;

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.booking-page .booking-section:first-of-type
.form-group:nth-child(n+3):hover {

    transform: translateY(-2px);

    border-color: #d5e2de;

    box-shadow:
        0 8px 25px rgba(16, 32, 32, 0.05);
}


/* Smaller labels */

.booking-page .booking-section:first-of-type
.form-group:nth-child(n+3) label {

    margin-bottom: 6px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .7px;

    color: #899591;
}


/* Values */

.booking-page .booking-section:first-of-type
.form-group:nth-child(n+3) input {

    min-height: auto;

    padding: 0;

    border: 0;

    background: transparent;

    font-size: 15px;

    font-weight: 700;

    color: #20312e;

    box-shadow: none;
}


/* =========================================================
   CUSTOMER SECTION
========================================================= */

.booking-page .booking-section:nth-of-type(2) {

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfcfc 100%
        );
}


.booking-page .booking-section:nth-of-type(2)
.booking-grid {

    grid-template-columns:
        1.2fr 1fr 1fr;
}


/* Customer inputs */

.booking-page .booking-section:nth-of-type(2)
.form-group input {

    background: #f8faf9;

    border-color: #e2e9e6;
}


/* =========================================================
   BUTTON AREA
========================================================= */

.booking-page .booking-actions {

    padding: 6px 0 20px;
}


/* Button arrow feel */

.booking-page #continueBookingBtn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}


.booking-page #continueBookingBtn::after {

    /* content: "→"; */

    font-size: 19px;

    line-height: 1;

    transition: transform .2s ease;
}


.booking-page #continueBookingBtn:hover::after {

    transform: translateX(4px);
}


/* =========================================================
   AVAILABILITY - MODERN CARD
========================================================= */

#availabilitySection {

    animation: bookingAvailabilityIn .45s ease both;
}


@keyframes bookingAvailabilityIn {

    from {

        opacity: 0;

        transform: translateY(18px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   MOBILE JOURNEY
========================================================= */

@media (max-width: 700px) {

    .booking-page .booking-section:first-of-type
    .booking-grid {

        grid-template-columns: 1fr;
    }


    .booking-page .booking-section:nth-of-type(2)
    .booking-grid {

        grid-template-columns: 1fr;
    }


    .booking-page .booking-section:first-of-type
    .form-group:nth-child(1)::after {

        display: none;
    }


    .booking-page .booking-section:first-of-type
    .form-group:nth-child(1),
    .booking-page .booking-section:first-of-type
    .form-group:nth-child(2) {

        padding-left: 55px;
    }

}


/* =========================================================
   SOT TRAVELS
   MODERN BOOKING PAGE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.booking-page {

    min-height: 100vh;

    padding: 90px 0 100px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(20, 120, 100, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f7faf9 0%,
            #ffffff 100%
        );

    color: #142522;
}


.booking-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.booking-intro {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;
}


.booking-eyebrow,
.section-kicker {

    display: inline-block;

    margin-bottom: 10px;

    color: #0b7564;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.booking-intro h1 {

    margin: 0;

    color: #122521;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.03;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.booking-intro p {

    max-width: 600px;

    margin: 15px 0 0;

    color: #71807c;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   PROGRESS
========================================================= */

.booking-progress {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    padding-bottom: 5px;
}


.progress-step {

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;
}


.progress-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: #e9efed;

    color: #81908b;

    font-size: 11px;

    font-weight: 800;
}


.progress-step.active .progress-number {

    background: #0b7564;

    color: #ffffff;

    box-shadow:
        0 0 0 5px rgba(11, 117, 100, 0.10);
}


.progress-label {

    color: #7b8985;

    font-size: 12px;

    font-weight: 700;
}


.progress-step.active .progress-label {

    color: #17302b;
}


.progress-line {

    width: 35px;

    height: 1px;

    margin: 0 9px;

    background: #dbe3e0;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.booking-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        350px;

    align-items: start;

    gap: 26px;
}


.booking-main {

    min-width: 0;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {

    margin-bottom: 22px;

    padding: 30px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e4ebe8;

    border-radius: 22px;

    box-shadow:
        0 18px 55px rgba(17, 38, 33, 0.055);
}


.booking-card-header {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;
}


.section-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 46px;

    height: 46px;

    border-radius: 14px;

    background: #eaf5f2;

    color: #0b7564;

    font-size: 18px;
}


.booking-card-header h2 {

    margin: 0;

    color: #162925;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 800;
}


.booking-card-header p {

    margin: 5px 0 0;

    color: #7b8885;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   ROUTE DISPLAY
========================================================= */

.route-display {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 0;

    padding: 24px 22px;

    margin-bottom: 20px;

    border: 1px solid #e4ece9;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f9fcfb,
            #f4f8f7
        );
}


.route-point {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 58px;

    z-index: 2;
}


.route-marker {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 38px;

    height: 38px;

    border-radius: 12px;

    font-size: 14px;
}


.pickup-marker {

    background: #e6f5f1;

    color: #08725f;
}


.drop-marker {

    background: #edf0ef;

    color: #233430;
}


.route-point-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


.route-point-content span {

    color: #899692;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.route-point-content strong {

    overflow: hidden;

    color: #192d29;

    font-size: 16px;

    font-weight: 750;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.route-connector {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    width: 38px;

    height: 26px;

    padding-left: 18px;

    margin: -2px 0 -2px;
}


.route-connector span {

    display: block;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #a9b9b4;
}


/* =========================================================
   JOURNEY INFO
========================================================= */

.journey-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}


.journey-info {

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;

    padding: 15px;

    border: 1px solid #e9efed;

    border-radius: 15px;

    background: #ffffff;
}


.journey-info-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    border-radius: 10px;

    background: #f0f5f3;

    color: #50706a;

    font-size: 13px;
}


.journey-info > div:last-child {

    min-width: 0;
}


.journey-info span {

    display: block;

    margin-bottom: 4px;

    color: #8b9794;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.journey-info strong {

    display: block;

    overflow: hidden;

    color: #253732;

    font-size: 13px;

    font-weight: 750;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   CUSTOMER FORM
========================================================= */

.customer-form {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.modern-field {

    min-width: 0;
}


.modern-field.full-width {

    grid-column: 1 / -1;
}


.modern-field label {

    display: block;

    margin-bottom: 8px;

    color: #52635f;

    font-size: 12px;

    font-weight: 750;
}


.input-wrapper {

    position: relative;
}


.input-wrapper > i {

    position: absolute;

    left: 16px;

    top: 50%;

    transform: translateY(-50%);

    color: #899793;

    font-size: 14px;

    pointer-events: none;
}


.input-wrapper input {

    width: 100%;

    height: 54px;

    box-sizing: border-box;

    padding: 0 16px 0 44px;

    border: 1px solid #dfe8e5;

    border-radius: 13px;

    outline: none;

    background: #f9fbfa;

    color: #1c302c;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.input-wrapper input::placeholder {

    color: #a2adaa;
}


.input-wrapper input:focus {

    border-color: #0b7564;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(11, 117, 100, .08);
}


/* =========================================================
   USER MESSAGE
========================================================= */

.booking-user-message {

    margin: -10px 0 20px;

    color: #697874;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   SECURE NOTE
========================================================= */

.secure-note {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #edf1ef;

    color: #7d8b87;

    font-size: 11px;

    line-height: 1.5;
}


.secure-note i {

    color: #0b7564;

    font-size: 13px;
}


/* =========================================================
   ACTION
========================================================= */

.booking-action-area {

    display: flex;

    justify-content: flex-end;

    margin-top: 24px;
}


.booking-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 54px;

    padding: 0 25px;

    border: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0b7564,
            #07594d
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 13px 28px rgba(11, 117, 100, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}


.booking-primary-btn i {

    font-size: 13px;

    transition: transform .2s ease;
}


.booking-primary-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 17px 32px rgba(11, 117, 100, .24);
}


.booking-primary-btn:hover i {

    transform: translateX(4px);
}


.booking-primary-btn:active {

    transform: translateY(0);
}


.booking-primary-btn:disabled {

    opacity: .6;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/* =========================================================
   SIDEBAR
========================================================= */

.booking-sidebar {

    position: sticky;

    top: 100px;
}


/* =========================================================
   SUMMARY
========================================================= */

.summary-card {

    overflow: hidden;

    padding: 25px;

    border: 1px solid #dfe8e5;

    border-radius: 21px;

    background: #102723;

    color: #ffffff;

    box-shadow:
        0 22px 55px rgba(16, 39, 35, .16);
}


.summary-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}


.summary-header span {

    display: block;

    margin-bottom: 6px;

    color: #8db9ae;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.summary-header h3 {

    margin: 0;

    font-size: 21px;

    font-weight: 800;
}


.summary-check {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;

    height: 31px;

    border-radius: 50%;

    background: rgba(255,255,255,.10);

    color: #79c5b4;

    font-size: 12px;
}


/* =========================================================
   SUMMARY ROUTE
========================================================= */

.summary-route {

    padding: 20px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 15px;

    background: rgba(255,255,255,.045);
}


.summary-location {

    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.summary-dot {

    flex-shrink: 0;

    width: 9px;

    height: 9px;

    margin-top: 5px;

    border-radius: 50%;

    background: #5fc1ad;

    box-shadow:
        0 0 0 4px rgba(95,193,173,.12);
}


.summary-dot.destination {

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(255,255,255,.08);
}


.summary-location small {

    display: block;

    margin-bottom: 4px;

    color: #78948c;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.summary-location strong {

    display: block;

    overflow: hidden;

    max-width: 220px;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.4;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.summary-route-line {

    width: 1px;

    height: 24px;

    margin: 3px 0 3px 4px;

    border-left: 1px dashed #58716b;
}


/* =========================================================
   SUMMARY DETAILS
========================================================= */

.summary-details {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 12px;

    padding: 23px 0;
}


.summary-details span {

    display: block;

    margin-bottom: 5px;

    color: #78918b;

    font-size: 9px;

    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.summary-details strong {

    display: block;

    overflow: hidden;

    color: #f5f8f7;

    font-size: 12px;

    font-weight: 700;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.summary-divider {

    height: 1px;

    background: rgba(255,255,255,.09);
}


/* =========================================================
   SUMMARY FARE
========================================================= */

.summary-fare {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding-top: 22px;
}


.summary-fare span {

    display: block;

    margin-bottom: 5px;

    color: #dce8e5;

    font-size: 12px;

    font-weight: 700;
}


.summary-fare small {

    display: block;

    max-width: 170px;

    color: #718b84;

    font-size: 9px;

    line-height: 1.5;
}


.summary-fare strong {

    flex-shrink: 0;

    color: #78c7b5;

    font-size: 24px;

    font-weight: 800;
}


/* =========================================================
   TRUST CARD
========================================================= */

.booking-trust-card {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-top: 15px;

    padding: 17px;

    border: 1px solid #e4ebe8;

    border-radius: 17px;

    background: #ffffff;
}


.trust-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 34px;

    height: 34px;

    border-radius: 10px;

    background: #eaf5f2;

    color: #0b7564;

    font-size: 13px;
}


.booking-trust-card strong {

    display: block;

    margin-bottom: 4px;

    color: #253934;

    font-size: 12px;
}


.booking-trust-card p {

    margin: 0;

    color: #7c8986;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   AVAILABILITY SECTION
========================================================= */

.availability-section {

    margin-top: 35px;

    padding: 31px;

    border: 1px solid #e2eae7;

    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 18px 55px rgba(17, 38, 33, .06);
}


.availability-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;
}


.availability-top h2 {

    margin: 0;

    color: #152925;

    font-size: 27px;

    letter-spacing: -.7px;

    font-weight: 800;
}


.availability-top p {

    margin: 7px 0 0;

    color: #778580;

    font-size: 13px;
}


.availability-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 999px;

    background: #edf8f4;

    color: #25745f;

    font-size: 10px;

    font-weight: 750;

    white-space: nowrap;
}


.availability-status i {

    font-size: 6px;
}


/* =========================================================
   VEHICLE CARD
========================================================= */

.vehicle-card {

    overflow: hidden;

    border: 1px solid #dfe8e5;

    border-radius: 19px;

    background: #fbfcfc;
}


.vehicle-card-main {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px 25px;

    border-bottom: 1px solid #e8eeec;
}


.vehicle-visual {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 66px;

    height: 66px;

    border-radius: 17px;

    background: #eaf5f2;

    color: #0b7564;

    font-size: 25px;
}


.vehicle-main-info {

    min-width: 0;

    flex: 1;
}


.vehicle-main-info > span {

    display: block;

    margin-bottom: 5px;

    color: #899691;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.vehicle-main-info h3 {

    overflow: hidden;

    margin: 0 0 3px;

    color: #182c28;

    font-size: 19px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.vehicle-main-info p {

    margin: 0;

    color: #71807c;

    font-size: 12px;
}


.vehicle-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    padding: 9px 13px;

    border-radius: 999px;

    background: #e8f7ef;

    color: #19744a;

    font-size: 11px;

    font-weight: 800;
}


.vehicle-badge i {

    font-size: 9px;
}


/* =========================================================
   VEHICLE DETAILS
========================================================= */

.vehicle-card-details {

    display: grid;

    grid-template-columns:
        1fr 1fr 1.3fr;

    gap: 0;
}


.vehicle-detail {

    padding: 20px 25px;

    border-right: 1px solid #e8eeec;
}


.vehicle-detail:last-child {

    border-right: 0;
}


.vehicle-detail span {

    display: block;

    margin-bottom: 6px;

    color: #8b9793;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.vehicle-detail strong {

    color: #243631;

    font-size: 14px;

    font-weight: 750;
}


.vehicle-detail.fare-detail {

    background: #f5faf8;
}


.vehicle-detail.fare-detail strong {

    color: #0b7564;

    font-size: 21px;

    font-weight: 800;
}


/* =========================================================
   NO VEHICLE
========================================================= */

.no-vehicle-card {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 23px;

    border: 1px solid #f0dddd;

    border-radius: 17px;

    background: #fffafa;
}


.no-vehicle-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    border-radius: 13px;

    background: #fcecec;

    color: #aa4848;
}


.no-vehicle-card strong {

    display: block;

    margin-bottom: 5px;

    color: #9b3f3f;

    font-size: 14px;
}


.no-vehicle-card p {

    margin: 0;

    color: #806969;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   AVAILABILITY ACTION
========================================================= */

.availability-action {

    display: flex;

    justify-content: flex-end;

    margin-top: 22px;
}


/* =========================================================
   ANIMATION
========================================================= */

.availability-section {

    animation:
        bookingFadeUp .4s ease both;
}


@keyframes bookingFadeUp {

    from {

        opacity: 0;

        transform: translateY(15px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .booking-layout {

        grid-template-columns: 1fr;
    }


    .booking-sidebar {

        position: static;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .booking-trust-card {

        margin-top: 0;

    }


    .journey-info-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .booking-page {

        padding: 55px 0 70px;
    }


    .booking-container {

        width: min(
            100% - 28px,
            600px
        );
    }


    .booking-intro {

        display: block;

        margin-bottom: 30px;
    }


    .booking-intro h1 {

        font-size: 40px;

        letter-spacing: -1.7px;
    }


    .booking-intro p {

        font-size: 13px;
    }


    .booking-progress {

        margin-top: 25px;

        width: 100%;
    }


    .progress-label {

        display: none;
    }


    .progress-line {

        flex: 1;

        max-width: none;
    }


    .booking-card {

        padding: 21px;

        border-radius: 18px;
    }


    .booking-card-header {

        margin-bottom: 21px;
    }


    .booking-card-header h2 {

        font-size: 20px;
    }


    .booking-card-header p {

        font-size: 12px;
    }


    .journey-info-grid {

        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }


    .journey-info {

        padding: 12px;

        gap: 8px;
    }


    .journey-info-icon {

        width: 30px;

        height: 30px;
    }


    .journey-info strong {

        font-size: 11px;
    }


    .customer-form {

        grid-template-columns: 1fr;

        gap: 17px;
    }


    .modern-field.full-width {

        grid-column: auto;
    }


    .booking-action-area {

        display: block;
    }


    .booking-primary-btn {

        width: 100%;
    }


    /* =====================================================
   DASHBOARD BOOKING PAGE NAVBAR
===================================================== */

#dashboardBookingNavbar {
    display: flex;
}

#publicBookingNavbar {
    display: none;
}

    .booking-sidebar {

        display: block;
    }


    .booking-trust-card {

        margin-top: 12px;
    }


    .availability-section {

        padding: 21px;

        border-radius: 18px;
    }


    .availability-top {

        display: block;
    }


    .availability-status {

        margin-top: 15px;
    }


    .vehicle-card-main {

        flex-wrap: wrap;

        padding: 20px;
    }


    .vehicle-main-info {

        width: calc(100% - 84px);

        flex: none;
    }


    .vehicle-badge {

        width: 100%;

        justify-content: center;
    }


    .vehicle-card-details {

        grid-template-columns: 1fr;
    }


    .vehicle-detail {

        border-right: 0;

        border-bottom: 1px solid #e8eeec;
    }


    .vehicle-detail:last-child {

        border-bottom: 0;
    }


    .no-vehicle-card {

        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .journey-info-grid {

        grid-template-columns: 1fr;
    }


    .route-display {

        padding: 19px 16px;
    }


    .route-point-content strong {

        font-size: 14px;
    }


    .booking-intro h1 {

        font-size: 35px;
    }


    .progress-number {

        width: 29px;

        height: 29px;
    }


    .progress-line {

        margin: 0 6px;
    }

}


.footer .logo-img {
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}