:root {
    --primary: #80CCE3;
    --primary-light: #eff8fb;
    --navy: #0d2137;
    --navy-mid: #074872;
    --gold: #c8973a;
    --gold-light: #e8b45a;
    --cream: #f7f3ee;
    --cream-dark: #ede7dc;
    --white: #ffffff;
    --text-mid: #4a6070;
    --text-light: #8a9dab;
    --border: rgba(13, 33, 55, .1);
    --grey-light: #f7f7f7;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    line-height: initial !important;
}

/* HEADER */
.elementor-7287 {
    position: absolute;
    width: 100%;
    z-index: 100;
}


/* NAV */
.nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 3rem;
    background: rgba(13, 33, 55, .96);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .04em;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 500 !important;
    padding: .5rem 1.35rem;
    border-radius: 4px;
    transition: background .2s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-app-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 151, 58, .12);
    border: 1px solid rgba(200, 151, 58, .3);
    border-radius: 20px;
    padding: .35rem .9rem;
    color: var(--gold-light) !important;
    font-size: .78rem;
    font-weight: 500 !important;
    cursor: pointer;
    transition: background .2s !important;
}

.nav-app-btn:hover {
    background: rgba(200, 151, 58, .22) !important;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://happymovetransfer.com/wp-content/uploads/2026/04/gemini-2.5-flash-image_same_photo-0.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(.52);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 33, 55, .72) 0%, rgba(13, 33, 55, .38) 60%, rgba(13, 33, 55, .58) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 150px 2rem 0;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.hero-h1 {
    font-size: 3em;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 1.4rem !important;
}

@media(max-width:768px) {
    .hero-h1 {
        font-size: 1.7em;
    }
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: .75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.75rem;
}

.btn-primary {
    background-color: var(--primary);
    font-size: 18px;
    font-weight: bold;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 40px 40px 40px 40px;
    padding: 20px 40px 20px 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    border-radius: 40px 40px 40px 40px;
    border: 1px solid var(--primary);
    padding: 20px 40px 20px 40px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background .2s, color .2s, border .2s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-download {
    display: none;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .22);
    cursor: pointer;
    border-radius: 40px 40px 40px 40px;
    padding: 20px 40px 20px 40px;
    transition: background .2s;
    text-decoration: none;
}

.btn-download-icon {
    width: 20px;
    height: 20px;
}

.btn-download:hover {
    background: var(--primary);
}

.download-qr-code {
    display: flex;
    width: 100px;
    height: 100px;
}

.hero-chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

/* TRUST BAR */
.trust-bar {
    background: var(--navy);
    padding: 1.4rem 3rem;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon-wrap {
    width: 38px;
    height: 38px;
    background: rgba(200, 151, 58, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-wrap svg {
    color: var(--primary);
}

.trust-val {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.trust-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .18rem;
    font-weight: 300;
}

/* SECTION BASE */
section {
    padding: 5.5rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-family: "Didact Gothic", Sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .75rem;
}

.section-title {
    font-family: "Didact Gothic", Sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    color: var(--navy-mid);
    line-height: 1.12;
    margin-bottom: 1rem;
    text-align: left;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.72;
    max-width: 540px;
    font-weight: 300;
}

/* DESTINATIONS */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.dest-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(13, 33, 55, .12);
}

.dest-img {
    height: 155px;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    position: relative;
}

.dest-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dest-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 33, 55, .72) 0%, transparent 60%);
}

.d-myk {
    background: linear-gradient(135deg, #a8d4f0, #2070a8);
}

.d-san {
    background: linear-gradient(135deg, #f9c3a0, #c05030);
}

.d-par {
    background: linear-gradient(135deg, #a0d4b8, #2a8860);
}

.d-mil {
    background: linear-gradient(135deg, #d4c0a0, #886840);
}

.d-nax {
    background: linear-gradient(135deg, #c0a8d4, #604088);
}

.d-ath {
    background: linear-gradient(135deg, #f0d4a0, #a07820);
}

.dest-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.dest-body {
    padding: 1rem 1.2rem 1.25rem;
}

.dest-meta {
    font-size: .76rem;
    color: var(--text-light);
    margin-bottom: .9rem;
    font-weight: 300;
}

.dest-btns {
    display: flex;
    gap: .5rem;
}

.btn-tours {
    flex: 1;
    padding: .5rem 0;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    transition: background .2s;
}

.btn-tours:hover {
    background: var(--navy-mid);
}

.btn-transfers {
    flex: 1;
    padding: .5rem 0;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
    transition: all .2s;
}

.btn-transfers:hover {
    border-color: var(--navy);
}

/* PRICES */
.prices {
    background: var(--cream-dark);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: box-shadow .2s;
}

.price-card:hover {
    box-shadow: 0 8px 30px rgba(13, 33, 55, .1);
}

.price-card.featured {
    border: 2px solid var(--gold);
}

.popular-badge {
    position: absolute;
    top: -.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .7rem;
    font-weight: 500;
    background: var(--gold);
    color: var(--navy);
    border-radius: 20px;
    padding: 2px 12px;
    white-space: nowrap;
}

.price-icon {
    width: 46px;
    height: 46px;
    background: rgba(200, 151, 58, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.price-icon svg {
    color: var(--gold);
}

.price-vehicle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.price-pax {
    font-size: .78rem;
    color: var(--text-light);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-from {
    font-size: .7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.price-checks {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-top: .9rem;
}

.price-check {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--text-mid);
}

.price-check svg {
    color: #3B6D11;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    padding: .55rem;
    border-radius: 5px;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    background: var(--navy);
    color: var(--white);
    transition: background .2s;
}

.price-btn:hover {
    background: var(--navy-mid);
}

/* HOW */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 22px);
    right: calc(12.5% + 22px);
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent, var(--gold));
    opacity: .25;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.step-num svg {
    color: var(--gold);
}

.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .35rem;
}

.step-desc {
    font-size: .8rem;
    color: var(--text-mid);
    line-height: 1.62;
    font-weight: 300;
}

/* APP */
.app-section {
    background: var(--navy);
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-phone {
    position: relative;
    margin: 0 auto;
}

.app-phone img {
    max-height: 550px;
}

.app-screen {
    position: absolute;
    top: 11px;
    left: 12px;
    border-radius: 34px;
    overflow: hidden;
    max-width: 245px;
}

.app-content .section-eyebrow {
    color: var(--primary);
}

.app-content .section-title {
    color: var(--white);
}

.app-content p {
    color: white;
    line-height: 1.72;
    margin-bottom: 1.5rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.75rem;
}

.app-feat {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
}

.app-feat-check {
    width: 20px;
    height: 20px;
    background: rgba(200, 151, 58, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feat-check svg {
    color: var(--primary);
}

.store-btns {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
}

/* REVIEWS */
.reviews {
    /* background: var(--primary-light); */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5.5rem;
    color: var(--primary);
    opacity: .18;
    position: absolute;
    top: -.6rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .75rem;
}

.testimonial-star {
    color: var(--primary);
    font-size: .82rem;
}

.testimonial-text {
    font-size: .87rem;
    color: var(--text-mid);
    line-height: 1.68;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    font-size: .8rem;
    font-weight: 500;
    color: var(--navy);
    line-height: initial;
    margin-bottom: 0;
}

.testimonial-dest {
    font-size: .74rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 0;
}

.reviews-note {
    text-align: center;
    margin-top: 2rem;
    font-size: .8rem;
    color: var(--text-light);
}

.reviews-note a {
    color: #185FA5;
    text-decoration: none;
}

.reviews-note a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq {
    background: var(--cream-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--navy);
    gap: 1rem;
    user-select: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    background: rgba(200, 151, 58, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-icon svg {
    color: var(--gold);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    font-size: .83rem;
    color: var(--text-mid);
    line-height: 1.72;
    padding: 0 1.25rem 1.1rem;
    display: none;
    font-weight: 300;
}

.faq-item.open .faq-a {
    display: block;
}

/* FOOTER */
footer {
    background: var(--navy);
    padding: 2rem 3rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-cr {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 300;
    margin-bottom: 0;
}

@media(max-width:768px) {
    .download-qr-code {
        display: none;
    }

    .btn-download {
        display: flex;
    }

    nav {
        padding: 1rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 0 0;
    }

    .trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .trust-item {
        border-right: none;
        padding: 0;
    }

    .dest-grid {
        grid-template-columns: 1fr;
        /*test*/
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .steps-grid::before {
        display: none;
    }

    .app-inner {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3.5rem 1.25rem;
    }

    .trust-bar {
        padding: 1.25rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}




/* HOW v2 */

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
}

.how-step {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.how-step:last-of-type {
    border-bottom: none;
}

.how-step.active-step .how-step-num {
    background: var(--primary);
    color: var(--navy);
}

.how-step.active-step .how-step-title {
    color: var(--navy);
}

.how-step-num {
    font-size: .9rem;
    font-weight: 600;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    margin-top: .1rem;
}

.how-step-title {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: .2rem;
    transition: color .2s;
}

.how-step-desc {
    font-size: .78rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s;
    opacity: 0;
}

.how-step.active-step .how-step-desc {
    max-height: 80px;
    opacity: 1;
}

.how-phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.how-phone-frame {
    position: relative;
}

.how-phone-frame img {
    max-height: 550px;
}

.how-phone-notch {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
}

.how-phone-screen {
    position: absolute;
    overflow: hidden;
    width: 242px;
    min-height: 527px;
    top: 11px;
    left: 13px;
    border-radius: 33px;
}

.how-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.how-slide.slide-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.how-slide.slide-exit {
    opacity: 0;
    transform: translateX(-22px);
}

.how-slide-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: .75rem;
}

.how-dot {
    width: 20px;
    height: 4px;
    border-radius: 2px;
    background: rgba(200, 151, 58, .25);
    transition: all .3s;
    cursor: pointer;
}

.how-dot.active {
    background: var(--gold);
    width: 28px;
}

.how-arrows {
    display: flex;
    gap: .5rem;
}

.how-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--navy);
    padding: 0;
    transition: all .2s;
}

.how-arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.cursor {
    animation: blink .8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* TRAVEL GUIDES */
.guides {
    background: var(--white);
}

.guides-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.guides-view-all {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    padding: .5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    transition: all .2s;
}

.guides-view-all:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.guides-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.25rem;
}

.guide-card {
    background: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 33, 55, .1);
}

.guide-img {
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: .85rem;
}

.guide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 33, 55, .65) 0%, transparent 60%);
}

.guide-img-mykonos {
    background: linear-gradient(135deg, #a8d4f0 0%, #1a5ca8 100%);
}

.guide-img-santorini {
    background: linear-gradient(135deg, #f9b060 0%, #d44020 50%, #c86020 100%);
}

.guide-img-athens {
    background: linear-gradient(135deg, #e8d080 0%, #a09020 100%);
}

.guide-cat {
    position: relative;
    z-index: 1;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(13, 33, 55, .55);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 3px 10px;
}

.guide-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .55rem;
}

.guide-dest {
    font-size: .68rem;
    font-weight: 500;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.guide-read {
    font-size: .66rem;
    color: var(--text-light);
    font-weight: 300;
}

.guide-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .45rem;
}

.guide-card-featured .guide-title {
    font-size: 1.25rem;
}

.guide-excerpt {
    font-size: .76rem;
    color: var(--text-mid);
    line-height: 1.65;
    font-weight: 300;
    flex: 1;
    margin-bottom: .9rem;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .77rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: gap .2s, color .2s;
}

.guide-link:hover {
    gap: .6rem;
    color: var(--primary);
}

/* HOW + GUIDES responsive */
@media(max-width:768px) {
    .how-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .how-phone-wrap {
        order: -1;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guides-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* FLEET SLIDER */
.fleet {
    background: var(--grey-light);
    padding: 5.5rem 0;
}

.fleet-container {
    width: 100%;
}

.fleet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.fleet-nav-btns {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.fleet-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.fleet-nav-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.fleet-track-wrap {
    overflow: hidden;
    margin: 0 -2rem;
    padding: 0 2rem;
    cursor: grab;
}

.fleet-track-wrap:active {
    cursor: grabbing;
}

.fleet-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    padding: 1rem 0 1.5rem;
}

.fleet-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--primary);
    overflow: hidden;
    height: 262px;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s;
}

.fleet-card:hover {
    box-shadow: 0 18px 48px rgba(13, 33, 55, .12);
}


.fc-img {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    top: -70%;
}

.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fc-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
    margin-top: auto;
    height: fit-content;
}

.fc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--border);
}

.fc-model {
    margin-bottom: 0;
    color: black;
    line-height: 1.4;
}

.fc-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
}

.fc-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem .65rem;
}

.fc-spec {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    color: var(--text-mid);
}

.fc-spec svg {
    color: var(--primary);
    flex-shrink: 0;
}

.fleet-note {
    text-align: center;
    font-size: .78rem;
    color: var(--text-light);
    font-weight: 300;
}

@media(max-width:768px) {
    .fleet-slide {
        flex: 0 0 280px;
    }

    .fleet-track-wrap {
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
    }

    .fleet-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}