:root {
    --white: #ffffff;
    --black: #1c1a17;
    /* dusty black */
    --black-2: #2a2621;
    /* elevated dusty black */
    --black-3: #3a352e;
    /* soft charcoal border */
    --yellow: #ffc42c;
    /* cab yellow */
    --yellow-deep: #e0a30a;
    /* pressed / hover yellow */
    --gray: #8b8479;
    /* warm muted gray */
    --gray-line: #e9e4da;
    /* hairline on white */
    --cream: #faf8f4;
     --speed: 10s;

    --font-display: 'Big Shoulders Display', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 800;
    line-height: 0.95;
    color: var(--black);
}

.mono {
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow-deep);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--yellow-deep);
    display: inline-block;
}

a {
    text-decoration: none;
}

.container-xl {
    max-width: 1240px;
}

/* ============ CHECKER MOTIFS ============ */
.checker-strip {
    height: 16px;
    width: 100%;
    background-color: var(--yellow);
    background-image:
        linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%, var(--black)),
        linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%, var(--black));
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

.checker-corner {
    position: absolute;
    width: 220px;
    height: 220px;
    background-color: var(--yellow);
    background-image:
        linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%, var(--black)),
        linear-gradient(45deg, var(--black) 25%, transparent 25%, transparent 75%, var(--black) 75%, var(--black));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}

/* ============ NAVBAR ============ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-line);
    transition: padding .3s ease;
}

.brand {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.brand .dot {
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 2px;
    display: inline-block;
    transform: rotate(45deg);
}

.nav-links a {
    color: var(--black);
    font-weight: 600;
    font-size: 0.94rem;
    margin: 0 16px;
    position: relative;
    opacity: 0.75;
    transition: opacity .2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--yellow-deep);
    transition: width .25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-cheqr {
    background: var(--black);
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid var(--black);
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-cheqr:hover {
    background: var(--yellow);
    color: var(--black);
}

.btn-cheqr-outline {
    background: transparent;
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 22px;
    border-radius: 999px;
    border: 2px solid var(--black);
    transition: all .25s ease;
}

.btn-cheqr-outline:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 83px 0 30px;
    overflow: hidden;
}

.hero .checker-corner.c1 {
    top: -60px;
    right: -60px;
}

.hero .checker-corner.c2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: -40px;
    opacity: 0.07;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    overflow: hidden;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
}

.hero-title .accent {
    color: var(--yellow-deep);
    -webkit-text-stroke: 1.5px var(--black);
}

.hero-sub {
    font-size: 1.12rem;
    color: var(--gray);
    max-width: 460px;
    margin: 22px 0 34px;
    font-weight: 500;
}

.stat-row {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.stat-row .stat b {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    display: block;
    line-height: 1;
}

.stat-row .stat span {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Booking card */
.booking-card {
    background: var(--black);
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: 0 30px 60px -20px rgba(28, 26, 23, 0.35);
    position: relative;
    z-index: 2;
}

.booking-card .tag {
    position: absolute;
    top: -16px;
    right: 28px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    transform: rotate(3deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.booking-card h5 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.field-label {
    color: var(--gray);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.field-group {
    margin-bottom: 16px;
}

.field-input {
    width: 100%;
    background: var(--black-2);
    border: 1.5px solid var(--black-3);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color .2s;
}

.field-input:focus {
    border-color: var(--yellow);
}

.field-input::placeholder {
    color: #71685c;
}

.cab-type-row {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.cab-chip {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-radius: 10px;
    border: 1.5px solid var(--black-3);
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.cab-chip.active,
.cab-chip:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255, 196, 44, 0.08);
}

.btn-fare {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border-radius: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all .2s;
}

.btn-fare:hover {
    background: var(--white);
}

/* ============ TRUST MARQUEE ============ */
.trust-band{
  background:var(--black);
  padding:20px 0;
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}

.marquee-track{
  display:inline-flex;
  gap:60px;
  width:max-content;
  animation:scrollLeft var(--speed, 26s) linear infinite;
}

.marquee-track.backward{
  animation-name:scrollRight;
}

@keyframes scrollLeft{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes scrollRight{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}

.trust-band:hover .marquee-track{
  animation-play-state:paused;
}

.marquee-item{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
  color:var(--yellow);
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.03em;
}
.marquee-item i{ color:var(--white); font-size:0.9rem; }

/* ============ SECTION GENERIC ============ */
section {
    position: relative;
}

.section-pad {
    padding: 60px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-top: 14px;
}

.section-head p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 16px;
    font-weight: 500;
}

/* ============ HOW IT WORKS + ROUTE LINE SIGNATURE ============ */
.route-wrap {
    position: relative;
}

.route-svg {
    position: absolute;
    left: 60px;
    top: 0;
    height: 100%;
    width: 6px;
}

.route-line-bg {
    stroke: var(--gray-line);
    stroke-width: 3;
    fill: none;
}

.route-line-draw {
    stroke: var(--yellow-deep);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 6 10;
    stroke-linecap: round;
}

.route-car {
    position: absolute;
    left: 40px;
    width: 46px;
    height: 46px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 1.05rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.step-row {
    display: flex;
    gap: 36px;
    padding: 44px 0 44px 110px;
    position: relative;
}

.step-row:first-child {
    padding-top: 6px;
}

.step-num {
    position: absolute;
    left: 39px;
    top: 32px;
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    z-index: 2;
}

.step-row:first-child .step-num {
    top: 6px;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    font-size: 1rem;
    max-width: 480px;
    font-weight: 500;
}

.sticky-column {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    width: 100%;
    /* max-width: 620px; */
    aspect-ratio: 6 / 6;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #e9e9e9;
}

.step-image {

    position: absolute;
    inset: 1;
        top: 13px;
    width: 100%;
    height: 500px;
    object-fit: contain;
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transition: clip-path .9s cubic-bezier(.77, 0, .175, 1), opacity .5s;
}

.step-image.active {

    opacity: 1;

    clip-path: inset(0 0 0 0);

    z-index: 5;

}

/* ============ FLEET (owl carousel) ============ */
.fleet-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 30px 26px 26px;
    margin: 10px 6px 30px;
    border: 1px solid var(--gray-line);
    transition: all .3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow-deep);
    box-shadow: 0 24px 40px -18px rgba(28, 26, 23, 0.2);
}

.fleet-icon {
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.fleet-card h5 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fleet-card .desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
    font-weight: 500;
        min-height: 65px;

}

.fleet-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--black-3);
    padding-top: 16px;
}

.fleet-meta .price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--black);
}

.fleet-meta .price small {
    color: var(--gray);
    font-weight: 400;
}

.fleet-meta .seats {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 600;
}

.owl-nav-custom {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.owl-nav-custom button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.owl-nav-custom button:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ============ FEATURES ============ */
.feature-card {
    padding: 32px 26px;
    border-radius: 18px;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-line);
    transition: all .3s;
}

.feature-card:hover {
    background: var(--black);
}

.feature-card:hover h5,
.feature-card:hover p {
    color: var(--white);
}

.feature-card:hover .feature-icon {
    background: var(--yellow);
    color: var(--black);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all .3s;
}

.feature-card h5 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 8px;
    transition: color .3s;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    transition: color .3s;
}

/* ============ TESTIMONIALS ============ */
.testimonial-section {
    background: var(--black-2);
    color: var(--white);
}

.testi-card {
    background: var(--black);
    border: 1px solid var(--black-3);
    border-radius: 18px;
    padding: 32px 28px;
    margin: 10px 8px 20px;
}

.testi-card i.bi-quote {
    color: var(--yellow);
    font-size: 1.8rem;
}

.testi-card p.quote {
    font-size: 1.02rem;
    color: #d8d3c9;
    margin: 18px 0 24px;
    font-weight: 500;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.testi-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.92rem;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--gray);
}

.stars {
    color: var(--yellow);
    font-size: 0.85rem;
}

/* ============ APP CTA ============ */
.app-cta {
    background: var(--black);
    border-radius: 28px;
    padding: 70px 60px;
    position: relative;
    /* overflow: hidden; */
    margin: 0 0 0;
}

.app-cta h2 {
    color: var(--white);
}

.app-cta p {
    color: #c9c3b8;
    font-size: 1.05rem;
    max-width: 420px;
    margin: 16px 0 30px;
    font-weight: 500;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black-2);
    border: 1.5px solid var(--black-3);
    color: var(--white);
    padding: 11px 20px;
    border-radius: 12px;
    margin-right: 14px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all .2s;
}

.store-badge:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.store-badge i {
    font-size: 1.4rem;
}

.qr-box {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black);
    margin-left: auto;
}

/* ============ FOOTER ============ */
footer {
    background: var(--black);
    color: #bcb6ab;
    padding: 10px 0 10px;
}

footer .brand {
    color: var(--white);
}

footer h6 {
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #bcb6ab;
    font-size: 0.92rem;
    transition: color .2s;
}

footer ul li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 0px solid var(--black-3);
    margin-top: 0;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--gray);
}

.social-row a {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--black-3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-left: 8px;
    transition: all .2s;
}

.social-row a:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

/* reveal animation helper */
.reveal {
    opacity: 0;
    transform: translateY(36px);
}

@media (max-width: 991px) {
    .app-cta {
        padding: 50px 30px;
        text-align: center;
    }

    .qr-box {
        margin: 24px auto 0;
    }

    .route-svg,
    .route-car {
        display: none;
    }

    .step-row {
        padding-left: 0;
    }

    .step-num {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.float {
    animation: float 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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


.driver-section{

    padding:60px 0;

    background:#1A1A1A;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.driver-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:#FFC107;

    opacity:.08;

    right:-200px;

    top:-180px;

}

.driver-section span{

    display:inline-block;

    color:#FFC107;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

    text-transform:uppercase;

}



.driver-section p{

    color:#ddd;

}

.driver-section img{

        width: 100%;
    max-width: 400px;
    display: block;
    margin: auto;
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, .45));

}

.driver-section ul{

    margin: 0px 0;

    padding:0;

}

.driver-section ul li{

        color: #c9c3b8;
    font-size: 1.05rem;
    margin-bottom:18px;
        font-weight: 500;
    display:flex;
    align-items:center;

}

.driver-section ul li::before{

    content:"✓";

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:15px;

    background:#FFC107;

    color:#000;

    border-radius:50%;

    font-weight:700;

}

.app-poster{
    position: absolute;
    bottom: -164px;
    left: 45px;
    max-width: 400px;
    z-index: -1;
}

.brand img{
    width: 180px;
    border-radius: 10px;
    border: 2px solid #FFC107;
}
.store-badge.diff{
    background: #e0a30a;
    border-color: #e0a30a;
    color: #1A1A1A;
}

@media (max-width: 800px){
    .site-nav .store-badge span{
        display: none;
    }
    .site-nav .store-badge{
                padding: 4px 10px;
        border-radius: 5px;
    }
    .site-nav .store-badge i{
        font-size: 20px;
    }
    .brand img{
        width: 130px;
    }
    .hero-title{
            line-height: 50px;

    }
    .eyebrow{
        margin-bottom: 5px;
    }
    .hero-sub{
            margin: 6px 0 10px;
    }
    .stat-row{
        margin-top: 25px;
    }
    .section-pad {
    padding: 40px 0;
}
.section-head p {
    margin-top: 5px;
}
.section-head {
    max-width: 100%;
    margin-bottom: 20px;
}
.step-row{
        padding: 15px 0 15px 0px;
    position: relative;
    border-bottom: 1px dashed #ccc;
}
.image-wrapper img{
    height: 400px;
    object-fit: contain;
}
}