:root {
    --forest: #102d26;
    --forest2: #193c32;
    --cream: #f5f0e7;
    --paper: #fbfaf7;
    --sand: #ddd2bf;
    --gold: #c7a16c;
    --ink: #17231f;
    --muted: #6f7772;
    --line: #e6e0d6;
    --white: #fff;
    --shadow: 0 24px 70px rgba(16, 45, 38, .15)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

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

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

.nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(251, 250, 247, .94);
    border-bottom: 1px solid rgba(16, 45, 38, .08)
}

.navIn {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brandMark {
    position: relative;
    width: 43px;
    height: 36px;
    display: block;
    color: var(--forest)
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.scooterMark {
    position: absolute;
    left: 2px;
    bottom: 4px;
    font-size: 31px;
    transform: rotate(-7deg);
    font-family: serif
}

.palmMark {
    position: absolute;
    right: 0;
    top: -7px;
    font-size: 25px;
    transform: rotate(35deg)
}

.brandWords strong {
    font: 500 21px/1 "Playfair Display", serif;
    display: block
}

.brandWords small {
    font-size: 6.5px;
    letter-spacing: 1.6px;
    font-weight: 700;
    display: block;
    margin-top: 5px
}

.links {
    display: flex;
    gap: 30px;
    font-size: 13px;
    color: #000000
}

.links a:hover {
    color: var(--forest)
}

.navRight {
    display: flex;
    align-items: center;
    gap: 17px
}

.lang {
    border: 0;
    background: none;
    font-size: 11px
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 19px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1px;
    transition: .2s
}

.btn:hover {
    transform: translateY(-1px)
}

.btnDark {
    background: var(--forest);
    color: #fff;
    border-color: var(--forest)
}

.btnLight {
    background: #fff;
    color: var(--forest);
    border-color: #fff
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 23px
}

.hero {
    position: relative;
    min-height: 525px;
    overflow: visible;
    background: #d9d0bf
}

.heroBackdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245, 240, 231, .95) 0%, rgba(245, 240, 231, .68) 32%, rgba(245, 240, 231, .08) 65%, rgba(16, 45, 38, .15) 100%), url('/assets/bali-hero-reference.jpg') center/cover
}

.heroInner {
    min-height: 525px;
    position: relative;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center
}

.heroContent {
    padding: 38px 0 88px
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 500
}

.hero h1 {
    font-size: clamp(54px, 6vw, 79px);
    line-height: .91;
    letter-spacing: -2.8px;
    margin: 0 0 22px
}

.hero h1 em {
    font-style: italic
}

.heroContent p {
    font-size: 14px;
    line-height: 1.7;
    color: #48534e;
    margin: 0
}

.heroCtas {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 25px
}

.heroCtas .btn span,
.btn span {
    margin-left: 8px
}

.textLink {
    font-size: 11px;
    font-weight: 700
}

.textLink span {
    margin-left: 6px
}

.heroRideTag strong {
    display: block;
    font-size: 8px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-top: 6px
}

.bookingBar {
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(20, 40, 33, .08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    padding: 7px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.45fr;
    align-items: stretch
}

.bookField {
    display: grid;
    grid-template-columns: 28px 1fr 16px;
    gap: 8px;
    align-items: center;
    padding: 9px 16px;
    border-right: 1px solid var(--line)
}

.bookField .icon {
    font-size: 22px
}

.bookField label {
    display: block;
    font-size: 7px;
    text-transform: none;
    font-weight: 700;
    margin-bottom: 5px
}

.bookField input,
.bookField select {
    width: 100%;
    border: 0;
    background: transparent;
    outline: 0;
    color: #6d746f;
    font-size: 15px;
}

.bookField b {
    font-size: 18px;
    font-weight: 400;
    color: #8b908c
}

.availabilityBtn {
    margin: 7px;
    border-radius: 13px
}

.benefits {
    background: #fdfcf9;
    border-bottom: 1px solid var(--line);
    padding: 51px 0 21px
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.benefitsGrid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-right: 1px solid var(--line)
}

.benefitsGrid>div:last-child {
    border: 0
}

.benefitsIcon {
    font-size: 2px;
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.benefitsGrid strong,
.benefitsGrid small {
    display: block
}

.benefitsGrid strong {
    font-size: 9px
}

.benefitsGrid small {
    font-size: 7.5px;
    color: var(--muted);
    margin-top: 3px
}

.section {
    padding: 86px 0
}

.fleetSection {
    background: #f9f7f2
}

.sectionHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px
}

.sectionHead h2 {
    font-size: 45px;
    line-height: .96;
    letter-spacing: -1.5px;
    margin: 0
}

.fleetIntro {
    max-width: 305px
}

.fleetIntro p,
.sectionHead>p {
    font-size: 10.5px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0
}

.arrowLink {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    margin-top: 18px
}

.arrowLink span {
    margin-left: 7px
}

.carouselArrows {
    display: flex;
    gap: 7px
}

.carouselArrows button {
    width: 31px;
    height: 31px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 50%
}

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

.bikeCard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    overflow: hidden;
    transition: .25s
}

.bikeCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.bikePhoto {
    height: 205px;
    background: #eee9df;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.bikePhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply
}

.badge {
    position: absolute;
    right: 9px;
    top: 9px;
    background: var(--forest);
    color: #fff;
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 7px;
    font-weight: 700;
    z-index: 2
}

.bikeInfo {
    padding: 12px
}

.bikeInfo h3 {
    font-size: 16px;
    margin: 0 0 5px
}

.bikeMeta {
    font-size: 7.5px;
    color: #78807b
}

.bikeMeta i {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a7ada9;
    margin: 0 5px 2px
}

.bikeBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 13px
}

.bikeBottom strong {
    font-size: 9.5px
}

.bikeBottom small {
    font-weight: 400;
    color: var(--muted);
    font-size: 7px
}

.mini {
    border: 0;
    background: var(--forest);
    color: #fff;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 7.5px;
    font-weight: 700
}

.mini span {
    margin-left: 4px
}

.guideBand {
    position: relative;
    min-height: 345px;
    color: #fff;
    overflow: hidden
}

.guideBg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 36, 29, .84), rgba(10, 36, 29, .18)), url('/assets/bali-guide-reference.jpg') center/cover
}

.guideInner {
    position: relative;
    min-height: 345px;
    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center
}

.guideCopy h2 {
    font-size: 43px;
    line-height: .96;
    margin: 0 0 12px
}

.guideCopy p {
    font-size: 10px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .76);
    margin: 0
}

.guideCopy .btn {
    margin-top: 18px
}

.places {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-self: end;
    padding-bottom: 21px
}

.place {
    height: 185px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 13px;
    color: #fff
}

.place:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, .68))
}

.place>* {
    position: relative;
    z-index: 1
}

.place span {
    font: 500 17px "Playfair Display", serif
}

.place small {
    font-size: 7.5px;
    margin-top: 3px;
    opacity: .85
}

.place b {
    position: absolute;
    right: 11px;
    bottom: 13px
}

.place1 {
    background-image: url('/assets/08_uluwatu_coast.jpg')
}

.place2 {
    background-image: url('/assets/09_seminyak_sunset.jpg')
}

.place3 {
    background-image: url('/assets/10_ubud_coast_temple.jpg')
}

.place4 {
    background-image: url('/assets/11_canggu_turquoise_bay.jpg')
}

.aboutSection {
    background: #fff
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.aboutGallery {
    height: 355px;
    position: relative
}

.aboutGallery>img {
    width: 66%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px
}

.quoteCard {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 47%;
    background: var(--paper);
    padding: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    border-radius: 7px
}

.quoteCard>span {
    font: 45px "Playfair Display";
    line-height: .5
}

.quoteCard p {
    font: italic 10px/1.6 "Playfair Display", serif;
    margin: 8px 0 13px
}

.quoteCard strong,
.quoteCard small {
    display: block;
    font-size: 7.5px
}

.quoteCard small {
    color: var(--muted);
    margin-top: 3px
}

.stars {
    color: #c28d3d;
    font-size: 8px;
    margin-top: 9px
}

.stars em {
    font-style: normal;
    color: var(--muted);
    margin-left: 5px
}

.aboutCopy h2 {
    font-size: 50px;
    line-height: .95;
    margin: 0 0 17px
}

.aboutCopy>p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 430px
}

.trustGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 25px
}

.trustGrid div {
    border-top: 1px solid var(--line);
    padding-top: 12px
}

.trustGrid b {
    display: block;
    font-size: 17px;
    margin-bottom: 7px
}

.trustGrid span {
    font-size: 7.5px;
    color: var(--muted)
}

.howSection {
    background: var(--cream)
}

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

.stepsGrid>div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 23px
}

.stepsGrid span {
    font: 500 28px "Playfair Display";
    color: var(--gold)
}

.stepsGrid h3 {
    font-size: 22px;
    margin: 22px 0 8px
}

.stepsGrid p {
    font-size: 9px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0
}

.faqSection {
    background: var(--forest);
    color: #fff;
    padding: 80px 0
}

.faqGrid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.faqGrid h2 {
    font-size: 43px;
    line-height: .96;
    margin: 0
}

.faqs details {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: 17px 0
}

.faqs summary {
    list-style: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600
}

.faqs summary::-webkit-details-marker {
    display: none
}

.faqs summary:after {
    content: '+';
    float: right;
    font-size: 18px;
    font-weight: 400
}

.faqs details[open] summary:after {
    content: '−'
}

.faqs p {
    font-size: 10px;
    line-height: 1.7;
    color: #b9c8c1;
    max-width: 600px
}

.footer {
    background: #0a211b;
    color: #fff;
    padding: 55px 0 80px
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.4fr .6fr .7fr;
    gap: 50px
}

.footerBrand .brandWords strong {
    color: #fff
}

.footer p,
.footer a {
    display: block;
    color: #aabbb3;
    font-size: 9px;
    line-height: 1.8;
    margin-top: 15px
}

.footer h4 {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 15px;
    color: #70837b;
    font-size: 8px
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 22, 18, .65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 200
}

.modal.show {
    display: flex
}

.modalBox {
    width: min(720px, 100%);
    max-height: 92vh;
    overflow: auto;
    background: var(--paper);
    border-radius: 18px;
    padding: 23px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .35)
}

.modalTop {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modalTop h3 {
    font-size: 29px;
    margin: 0
}

.close {
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    font-size: 20px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: 18px 0
}

.step {
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    background: #ece7dd;
    color: #8b8d87;
    font-size: 8px
}

.step.active {
    background: var(--forest);
    color: #fff
}

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

.input {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 10px
}

.input.full {
    grid-column: 1/-1
}

.input label {
    display: block;
    font-size: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px
}

.input input,
.input select,
.input textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 10px;
    color: var(--ink)
}

.summary {
    margin-top: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px
}

.sum {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 9px
}

.total {
    border-top: 1px solid var(--line);
    padding-top: 10px;
    margin-top: 5px;
    font-weight: 700;
    font-size: 14px
}

.promoHint {
    font-size: 8px;
    color: var(--muted);
    margin: 8px 0 0
}

.fullCta {
    width: 100%;
    margin-top: 10px
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 250;
    background: var(--forest);
    color: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 10px;
    box-shadow: var(--shadow);
    transform: translateY(130px);
    transition: .25s
}

.toast.show {
    transform: translateY(0)
}

.mobileNav {
    display: none
}

@media(max-width:980px) {
    .links {
        gap: 15px
    }

    .heroInner {
        grid-template-columns: 48% 52%
    }

    .hero h1 {
        font-size: 56px
    }

    .fleetGrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .fleetHead {
        align-items: flex-end
    }

    .bookingBar {
        grid-template-columns: 1fr 1fr;
        bottom: -72px
    }

    .availabilityBtn {
        grid-column: 1/-1
    }

    .benefits {
        padding-top: 88px
    }

    .benefitsGrid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .benefitsGrid>div {
        border-bottom: 1px solid var(--line);
        padding: 10px
    }

    .places {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

    .nav {
        height: 66px
    }

    .links,
    .navRight {
        display: none
    }

    .menu {
        display: block
    }

    .hero {
        min-height: 620px
    }

    .heroInner {
        min-height: 620px;
        display: block
    }

    .heroContent {
        padding: 52px 0 0;
        position: relative;
        z-index: 3
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -1.8px
    }

    .heroContent p {
        font-size: 12px
    }

    .heroScooter {
        position: absolute;
        inset: 210px 0 0;
        height: 410px
    }

    .heroScooter img {
        width: 100%;
        height: 85%;
        transform: translateY(20px) scale(1.05)
    }

    .heroRideTag {
        right: 3%;
        bottom: 45px
    }

    .heroRideTag span {
        font-size: 24px
    }

    .bookingBar {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        margin-top: -56px;
        grid-template-columns: 1fr;
        padding: 7px;
        border-radius: 15px
    }

    .bookField {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 11px
    }

    .bookField:last-of-type {
        border-bottom: 0
    }

    .availabilityBtn {
        grid-column: auto;
        margin: 7px
    }

    .benefits {
        padding-top: 20px
    }

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

    .benefitsGrid>div {
        justify-content: flex-start
    }

    .section {
        padding: 62px 0
    }

    .sectionHead {
        display: block
    }

    .sectionHead h2 {
        font-size: 39px
    }

    .fleetIntro {
        margin-top: 15px
    }

    .carouselArrows {
        display: none
    }

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

    .bikePhoto {
        height: 180px
    }

    .guideInner {
        display: block;
        padding: 55px 0
    }

    .guideCopy {
        margin-bottom: 25px
    }

    .places {
        padding-bottom: 0
    }

    .place {
        height: 155px
    }

    .aboutGrid,
    .faqGrid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .aboutGallery {
        height: 300px
    }

    .aboutCopy h2 {
        font-size: 43px
    }

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

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

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

    .mobileNav {
        display: flex;
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: 8px;
        height: 60px;
        border-radius: 20px;
        background: rgba(16, 45, 38, .97);
        z-index: 90;
        align-items: center;
        justify-content: space-around;
        box-shadow: 0 15px 45px rgba(0, 0, 0, .25)
    }

    .mobileNav a {
        color: #fff;
        font-size: 7px;
        text-align: center;
        opacity: .68
    }

    .mobileNav a.active {
        opacity: 1
    }

    .mobileNav b {
        display: block;
        font-size: 15px;
        margin-bottom: 2px
    }

    .modalBox {
        padding: 16px
    }

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

    .input.full {
        grid-column: auto
    }
}

@media(max-width:430px) {
    .fleetGrid {
        grid-template-columns: 1fr
    }

    .bikePhoto {
        height: 230px
    }

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

    .hero h1 {
        font-size: 47px
    }

    .aboutGallery>img {
        width: 73%
    }

    .quoteCard {
        width: 50%;
        padding: 14px
    }

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

    .bookingBar {
        margin-top: -44px
    }
}

/* =========================================================
   MOBILE HERO / FILANO BACKGROUND RESPONSIVE FIX
   Keeps the original hero artwork proportional on phones,
   while positioning the Filano scooter in the visible area.
   ========================================================= */
@media (max-width:700px) {
    html, body {
        overflow-x: hidden;
    }

    .hero {
        min-height: min(700px, calc(100svh - 66px));
        height: auto;
        overflow: hidden;
    }

    .heroBackdrop {
        inset: 0;
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: 68% center;
        /* Stronger left-side fade so the text stays readable. */
        background-image:
            linear-gradient(
                90deg,
                rgba(245, 240, 231, .98) 0%,
                rgba(245, 240, 231, .90) 24%,
                rgba(245, 240, 231, .48) 48%,
                rgba(245, 240, 231, .08) 72%,
                rgba(16, 45, 38, .10) 100%
            ),
            url('/assets/bali-hero-reference.jpg');
    }

    .heroInner {
        min-height: min(700px, calc(100svh - 66px));
    }
}

@media (max-width:430px) {
    .hero {
        min-height: 600px;
    }

    .heroBackdrop {
        /* Slightly farther right on narrow phones so the Filano remains visible. */
        background-position: 70% center;
        background-size: auto 100%;
    }

    .heroContent {
        padding-top: 38px;
    }

    .hero h1 {
        max-width: 290px;
        font-size: clamp(43px, 13vw, 50px);
        line-height: .94;
    }

    .heroContent p {
        max-width: 280px;
    }
}

