/* ==========================================================================
   GoMon custom frontend sections (intercity, routes, services, safe journey, app)
   Scoped under .gomon-* so nothing here can affect the base template.
   ========================================================================== */

:root {
    --gomon-green: #8DCF30;
    --gomon-green-dark: #70A526;
    --gomon-mint: #EFF8DD;
    --gomon-heading: #101828;
    --gomon-text: #667085;
    --gomon-border: #E4E7EC;
    --gomon-bg: #F8FAFC;
}

/* ---------- shared bits ---------- */
.gomon-head {
    margin-bottom: 40px;
}

.gomon-head__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--gomon-heading);
    margin-bottom: 12px;
}

.gomon-head__title .gomon-accent,
.gomon-accent {
    color: var(--gomon-green);
}

.gomon-head__desc {
    color: var(--gomon-text);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.gomon-head__desc.text-start {
    margin-inline: 0;
}

.gomon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gomon-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.gomon-badge--soft {
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
}

.gomon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gomon-green);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 30px;
    transition: .25s ease;
    text-decoration: none;
}

.gomon-btn:hover {
    background: var(--gomon-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(141, 207, 48, .32);
}

/* ---------- intercity hero ---------- */
.gomon-intercity {
    padding: 70px 0 30px;
}

.gomon-intercity__card {
    background: linear-gradient(135deg, #F4FBE8 0%, #FFFFFF 60%);
    border: 1px solid var(--gomon-border);
    border-radius: 24px;
    padding: 44px;
    overflow: hidden;
}

.gomon-intercity__title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--gomon-heading);
    margin-bottom: 10px;
}

.gomon-intercity__title span {
    color: var(--gomon-green);
}

.gomon-intercity__sub {
    color: var(--gomon-green-dark);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 14px;
}

.gomon-intercity__desc {
    color: var(--gomon-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gomon-intercity__points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.gomon-intercity__points li {
    color: var(--gomon-heading);
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.gomon-intercity__points i {
    color: var(--gomon-green);
    font-size: 20px;
}

.gomon-intercity__thumb img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* ---------- popular routes ---------- */
.gomon-routes {
    padding: 70px 0;
    background: var(--gomon-bg);
}

.gomon-route-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gomon-border);
    background: #fff;
    height: 100%;
    transition: .28s ease;
}

.gomon-route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .12);
}

.gomon-route-card > img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.gomon-route-card__price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gomon-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
}

.gomon-route-card__body {
    padding: 16px;
}

.gomon-route-card__body h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 8px;
}

.gomon-route-card__meta {
    display: flex;
    gap: 16px;
    color: var(--gomon-text);
    font-size: 13px;
}

.gomon-route-card__meta i {
    color: var(--gomon-green);
    margin-right: 4px;
}

.gomon-routes__note {
    margin-top: 30px;
    color: var(--gomon-text);
    font-size: 14px;
}

/* ---------- services ---------- */
.gomon-services {
    padding: 70px 0;
}

.gomon-service-card {
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: .28s ease;
}

.gomon-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.gomon-service-card__thumb {
    position: relative;
}

.gomon-service-card__thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.gomon-service-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gomon-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 6px;
}

.gomon-service-card__body {
    padding: 20px;
}

.gomon-service-card__body h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 8px;
}

.gomon-service-card__body p {
    color: var(--gomon-text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- safe journey ---------- */
.gomon-safe {
    padding: 70px 0;
    background: var(--gomon-bg);
}

.gomon-safe__list {
    margin-top: 26px;
}

.gomon-safe__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gomon-safe__icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.gomon-safe__item h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 3px;
}

.gomon-safe__item p {
    color: var(--gomon-text);
    font-size: 14px;
    margin: 0;
}

.gomon-safe__thumb img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* ---------- app showcase ---------- */
.gomon-app {
    padding: 70px 0;
}

.gomon-app__card {
    background: linear-gradient(135deg, #16281A 0%, #0C1610 100%);
    border-radius: 26px;
    padding: 48px;
    color: #fff;
    overflow: hidden;
}

.gomon-app__title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.gomon-app__title span {
    color: var(--gomon-green);
}

.gomon-app__desc {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    margin-bottom: 26px;
}

.gomon-app__stats {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.gomon-app__stats strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gomon-green);
    line-height: 1.1;
}

.gomon-app__stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

.gomon-app__thumb img {
    width: 100%;
    height: auto;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
    .gomon-intercity__card,
    .gomon-app__card {
        padding: 30px;
    }

    .gomon-intercity__title {
        font-size: 36px;
    }

    .gomon-head__title,
    .gomon-app__title {
        font-size: 27px;
    }

    .gomon-head__desc.text-start,
    .gomon-head__title.text-start {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .gomon-intercity__title {
        font-size: 30px;
    }

    .gomon-app__stats {
        gap: 22px;
    }

    .gomon-route-card > img {
        height: 150px;
    }
}

/* ==========================================================================
   Hero banner (Bengali)
   ========================================================================== */
.gomon-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0B0F0C;
}

.gomon-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: .55;
}

.gomon-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 14, 10, .96) 0%, rgba(8, 14, 10, .82) 45%, rgba(8, 14, 10, .35) 100%);
}

.gomon-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 70px 0;
}

.gomon-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(141, 207, 48, .5);
    background: rgba(141, 207, 48, .12);
    color: #CFEB9B;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.gomon-hero__title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.28;
    color: #fff;
    margin-bottom: 16px;
}

.gomon-hero__title span {
    color: var(--gomon-green);
}

.gomon-hero__rule {
    width: 190px;
    height: 2px;
    background: var(--gomon-green);
    margin-bottom: 14px;
}

.gomon-hero__tag {
    color: var(--gomon-green);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.gomon-hero__desc {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 30px;
}

.gomon-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.gomon-btn--wa {
    background: #22A45D;
}

.gomon-btn--wa:hover {
    background: #1B8B4E;
    box-shadow: 0 10px 22px rgba(34, 164, 93, .32);
}

.gomon-btn--lime {
    border: 0;
    cursor: pointer;
}

.gomon-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}

.gomon-hero__stats strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gomon-green);
    line-height: 1.2;
}

.gomon-hero__stats span {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}

/* ==========================================================================
   Booking form
   ========================================================================== */
.gomon-booking {
    padding: 70px 0;
    background: #fff;
}

.gomon-booking__card {
    background: #111A14;
    border-radius: 22px;
    padding: 38px;
}

.gomon-label {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    margin-bottom: 7px;
}

.gomon-label span {
    color: var(--gomon-green);
}

.gomon-input {
    width: 100%;
    background: #0B120E;
    border: 1px solid #24352A;
    border-radius: 12px;
    padding: 13px 16px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease;
}

.gomon-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.gomon-input:focus {
    border-color: var(--gomon-green);
}

.gomon-input option {
    background: #0B120E;
    color: #fff;
}

.gomon-trip {
    display: flex;
    gap: 10px;
}

.gomon-trip__opt {
    flex: 1;
    cursor: pointer;
    margin: 0;
}

.gomon-trip__opt input {
    display: none;
}

.gomon-trip__opt span {
    display: block;
    text-align: center;
    padding: 13px 10px;
    border-radius: 12px;
    border: 1px solid #24352A;
    background: #0B120E;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: .2s ease;
}

.gomon-trip__opt input:checked + span {
    background: var(--gomon-green);
    border-color: var(--gomon-green);
    color: #0B120E;
    font-weight: 700;
}

.gomon-booking__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid #24352A;
}

.gomon-booking__actions > * {
    flex: 1;
    justify-content: center;
    min-width: 220px;
}

.gomon-booking__note {
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
    text-align: center;
    margin: 18px 0 0;
}

/* ==========================================================================
   Why choose GoMon
   ========================================================================== */
.gomon-why {
    padding: 70px 0;
    background: var(--gomon-bg);
}

.gomon-why-card {
    background: #fff;
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    transition: .28s ease;
}

.gomon-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.gomon-why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 16px;
}

.gomon-why-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 8px;
}

.gomon-why-card p {
    color: var(--gomon-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .gomon-hero {
        min-height: auto;
    }

    .gomon-hero__title {
        font-size: 32px;
    }

    .gomon-hero__stats {
        gap: 26px;
    }

    .gomon-booking__card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .gomon-hero__title {
        font-size: 26px;
    }

    .gomon-hero__bg {
        background-position: center;
    }

    .gomon-booking__actions > * {
        min-width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Header clearance.
   The template header is `position: absolute; top: 0`, so it paints over the
   top of whatever section comes first. The hero adds its own top padding so
   the pill/heading never sit underneath the navbar.
   -------------------------------------------------------------------------- */
.gomon-hero__inner {
    padding-top: 150px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .gomon-hero__inner {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .gomon-hero__inner {
        padding-top: 115px;
        padding-bottom: 50px;
    }
}

/* ==========================================================================
   Inner marketing pages (About, Drivers, Cars)
   ========================================================================== */
.gomon-page-hero {
    background: linear-gradient(135deg, #16281A 0%, #0C1610 100%);
    padding: 150px 0 60px;
    text-align: center;
    color: #fff;
}

.gomon-page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.gomon-page-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

/* ---------- about ---------- */
.gomon-about {
    padding: 70px 0;
}

.gomon-about__img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.gomon-model {
    padding: 70px 0;
    background: var(--gomon-bg);
}

.gomon-model-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    transition: .28s ease;
}

.gomon-model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.gomon-model-card__num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 30px;
    font-weight: 800;
    color: rgba(141, 207, 48, .22);
    line-height: 1;
}

.gomon-model-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.gomon-model-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 8px;
}

.gomon-model-card p {
    color: var(--gomon-text);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.gomon-model__note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 34px;
    padding: 22px 24px;
    background: var(--gomon-mint);
    border-radius: 16px;
}

.gomon-model__note i {
    color: var(--gomon-green-dark);
    font-size: 24px;
    flex: 0 0 auto;
}

.gomon-model__note p {
    margin: 0;
    color: var(--gomon-heading);
    font-size: 15px;
    line-height: 1.7;
}

.gomon-values {
    padding: 70px 0;
}

/* ---------- drivers ---------- */
.gomon-driver-card {
    background: #fff;
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    height: 100%;
    transition: .28s ease;
}

.gomon-driver-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.gomon-driver-card__avatar {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gomon-mint);
}

.gomon-driver-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gomon-driver-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 10px;
}

.gomon-driver-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.gomon-driver-card__rating {
    color: var(--gomon-text);
    font-size: 14px;
}

.gomon-driver-card__rating i {
    color: #F5A623;
}

.gomon-empty {
    text-align: center;
    padding: 50px 20px;
    background: var(--gomon-bg);
    border: 1px dashed var(--gomon-border);
    border-radius: 18px;
}

.gomon-empty i {
    font-size: 46px;
    color: var(--gomon-green);
    margin-bottom: 14px;
    display: block;
}

.gomon-empty h5 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 8px;
}

.gomon-empty p {
    color: var(--gomon-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- cars ---------- */
.gomon-car-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: .28s ease;
}

.gomon-car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.gomon-car-card__thumb {
    flex: 0 0 42%;
    background: #fff;
}

.gomon-car-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gomon-car-card__body {
    flex: 1;
    padding: 22px;
}

.gomon-car-card__body h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gomon-heading);
    margin-bottom: 4px;
}

.gomon-car-card__models {
    display: block;
    color: var(--gomon-green-dark);
    font-size: 13px;
    margin-bottom: 10px;
}

.gomon-car-card__body p {
    color: var(--gomon-text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.gomon-car-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.gomon-car-card__specs span {
    color: var(--gomon-text);
    font-size: 13px;
}

.gomon-car-card__specs i {
    color: var(--gomon-green);
    margin-right: 4px;
}

.gomon-btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .gomon-page-hero {
        padding: 130px 0 45px;
    }

    .gomon-page-hero h1 {
        font-size: 28px;
    }

    .gomon-car-card {
        flex-direction: column;
    }

    .gomon-car-card__thumb {
        flex: none;
        height: 180px;
    }
}

/* ---------- mobile sticky app download bar ---------- */
/* Desktop already has the header + section CTAs, so this is mobile only. */
.gomon-appbar,
.gomon-appbar__spacer {
    display: none;
}

@media (max-width: 991px) {
    .gomon-appbar__spacer {
        display: block;
        height: calc(62px + env(safe-area-inset-bottom, 0px));
    }

    .gomon-appbar {
        display: flex;
        align-items: center;
        gap: 12px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9990;
        padding: 11px 14px;
        padding-bottom: calc(11px + env(safe-area-inset-bottom, 0px));
        background: var(--gomon-heading);
        box-shadow: 0 -6px 22px rgba(16, 24, 40, .3);
    }

    .gomon-appbar__icon {
        flex: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--gomon-green) 0%, var(--gomon-green-dark) 100%);
        color: #fff;
        font-size: 22px;
    }

    .gomon-appbar__text {
        flex: 1 1 auto;
        min-width: 0;
        line-height: 1.25;
    }

    .gomon-appbar__text strong {
        display: block;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
    }

    .gomon-appbar__text span {
        display: block;
        color: rgba(255, 255, 255, .68);
        font-size: 12px;
    }

    .gomon-appbar__btn {
        flex: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, var(--gomon-green) 0%, var(--gomon-green-dark) 100%);
        color: #fff !important;
        font-size: 13px;
        font-weight: 700;
        padding: 10px 16px;
        border-radius: 24px;
        text-decoration: none;
        white-space: nowrap;
        animation: gomonDownloadPulse 2.4s ease-in-out infinite;
    }

    .gomon-appbar__btn i {
        animation: gomonDownloadArrow 1.6s ease-in-out infinite;
    }

}

@media (max-width: 359px) {
    .gomon-appbar__text span {
        display: none;
    }
}

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

    .gomon-appbar__btn,
    .gomon-appbar__btn i {
        animation: none;
    }
}

/* ---------- app download CTA ---------- */
.gomon-btn--download {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gomon-green) 0%, var(--gomon-green-dark) 100%);
    padding: 15px 30px;
    box-shadow: 0 8px 20px rgba(141, 207, 48, .35);
    animation: gomonDownloadPulse 2.4s ease-in-out infinite;
}

.gomon-btn--download:hover {
    background: linear-gradient(135deg, var(--gomon-green-dark) 0%, var(--gomon-green) 100%);
    animation-play-state: paused;
}

/* Shine sweep that repeats with the pulse to pull the eye to the button. */
.gomon-btn--download::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: gomonDownloadShine 2.4s ease-in-out infinite;
}

.gomon-btn--download i,
.gomon-btn--download .icon {
    animation: gomonDownloadArrow 1.6s ease-in-out infinite;
}

.gomon-btn--download__note {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--gomon-text);
}

.gomon-btn--download__note.is-onDark {
    color: rgba(255, 255, 255, .7);
}

/* Rider + driver buttons sit side by side; the driver one is outlined so the
   two read as a pair without competing for the same emphasis. */
.gomon-app__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gomon-btn--download-alt {
    background: transparent;
    border: 2px solid var(--gomon-green);
    color: var(--gomon-green) !important;
    box-shadow: none;
    animation-delay: 1.2s;
}

.gomon-btn--download-alt:hover {
    background: var(--gomon-green);
    color: #fff !important;
}

/* Ghost pairing so the solid download button stays the loudest action. */
.gomon-btn--ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .65);
    box-shadow: none;
}

.gomon-btn--ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
    box-shadow: none;
}

/* Header download button lives in the base template, so it is highlighted
   from here rather than by adding a class to the shared partial. */
.app-download-btn {
    animation: gomonDownloadPulse 2.4s ease-in-out infinite;
}

.app-download-btn:hover {
    animation-play-state: paused;
}

.app-download-btn .icon {
    animation: gomonDownloadArrow 1.6s ease-in-out infinite;
}

/* Navbar driver-app button: inherits the solid base green from .btn--base so
   it matches the rider button exactly; only the pulse is offset so the pair
   does not throb in unison. */
.app-download-btn--driver {
    animation-delay: 1.2s;
}

/* Navbar fit: the two download buttons plus the language picker were wide
   enough to squeeze the menu and break words mid-label ("Hom e", "Conta ct").
   Both buttons are compacted here; main.css forces .btn display with
   !important, so d-none cannot hide them and the breakpoint is handled below. */
.header-right .app-download-btn {
    height: 42px !important;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.header-right .app-download-btn .icon svg {
    width: 14px;
    height: 14px;
}

/* Stop nav labels breaking mid-word when space gets tight. */
.header .nav-menu .nav-item .nav-link {
    white-space: nowrap;
}

@media screen and (max-width: 1399px) {
    .header-right {
        gap: 12px;
    }

    .header-right .app-download-btn {
        padding: 0 12px;
        font-size: 13px;
    }
}

/* Below lg the navbar collapses and the sticky bottom bar covers downloads,
   so the secondary driver button is dropped rather than wrapped. */
@media screen and (max-width: 991px) {
    .app-download-btn--driver {
        display: none !important;
    }
}

.gomon-cta-center {
    margin-top: 40px;
    text-align: center;
}

.gomon-safe__cta {
    margin-top: 30px;
}

@keyframes gomonDownloadPulse {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(141, 207, 48, .35);
    }

    50% {
        box-shadow: 0 8px 20px rgba(141, 207, 48, .35), 0 0 0 10px rgba(141, 207, 48, .16);
    }
}

@keyframes gomonDownloadShine {

    0%,
    62% {
        left: -60%;
    }

    92%,
    100% {
        left: 130%;
    }
}

@keyframes gomonDownloadArrow {

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

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

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

    .gomon-btn--download,
    .gomon-btn--download::after,
    .gomon-btn--download i,
    .gomon-btn--download .icon,
    .app-download-btn,
    .app-download-btn .icon {
        animation: none;
    }

    .gomon-btn--download::after {
        display: none;
    }
}

/* ==========================================================================
   Public trip tracking page
   ========================================================================== */
.gomon-track {
    padding: 140px 0 70px;
    background: var(--gomon-bg);
    min-height: 80vh;
}

.gomon-track__head {
    text-align: center;
    margin-bottom: 32px;
}

.gomon-track__head h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gomon-heading);
    margin: 10px 0 8px;
}

.gomon-track__head p {
    color: var(--gomon-text);
    margin: 0;
}

.gomon-badge--live {
    background: #fff;
    color: var(--gomon-heading);
    border: 1px solid var(--gomon-border);
}

.gomon-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gomon-green);
    display: inline-block;
    animation: gomonPulse 1.4s infinite;
}

@keyframes gomonPulse {
    0%   { box-shadow: 0 0 0 0 rgba(141, 207, 48, .6); }
    70%  { box-shadow: 0 0 0 9px rgba(141, 207, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(141, 207, 48, 0); }
}

.gomon-track__map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--gomon-border);
    background: #fff;
}

.gomon-track__map {
    width: 100%;
    height: 520px;
}

.gomon-track__panel {
    background: #fff;
    border: 1px solid var(--gomon-border);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
}

.gomon-track__point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gomon-track__point small {
    color: var(--gomon-text);
    font-size: 12px;
    display: block;
}

.gomon-track__point p {
    margin: 2px 0 0;
    color: var(--gomon-heading);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.gomon-track__point .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 5px;
    flex: 0 0 auto;
}

.dot--from { background: var(--gomon-green); }
.dot--to   { background: #FF4D4F; }

.gomon-track__line {
    width: 2px;
    height: 26px;
    background: var(--gomon-border);
    margin-left: 5px;
}

.gomon-track__stats {
    display: flex;
    gap: 10px;
    margin: 22px 0;
    padding: 16px 0;
    border-top: 1px solid var(--gomon-border);
    border-bottom: 1px solid var(--gomon-border);
}

.gomon-track__stats > div {
    flex: 1;
    text-align: center;
}

.gomon-track__stats strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--gomon-green-dark);
    line-height: 1.1;
}

.gomon-track__stats span {
    font-size: 11px;
    color: var(--gomon-text);
}

.gomon-track__driver h6 {
    font-size: 13px;
    color: var(--gomon-text);
    font-weight: 600;
    margin-bottom: 10px;
}

.gomon-track__driver-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.gomon-track__driver-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gomon-mint);
    color: var(--gomon-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.gomon-track__driver-row strong {
    display: block;
    color: var(--gomon-heading);
    font-size: 15px;
}

.gomon-track__driver-row span {
    color: var(--gomon-text);
    font-size: 13px;
}

.gomon-track__note {
    display: flex;
    gap: 10px;
    background: var(--gomon-mint);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.gomon-track__note i {
    color: var(--gomon-green-dark);
    font-size: 18px;
    flex: 0 0 auto;
}

.gomon-track__note p {
    margin: 0;
    font-size: 12px;
    color: var(--gomon-heading);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .gomon-track { padding: 120px 0 50px; }
    .gomon-track__map { height: 360px; }
    .gomon-track__head h1 { font-size: 25px; }
}
