.home-menu.active .home-trigger {
    color: var(--teal);
    /* box-shadow: inset 0 -3px var(--coral) */
}

/* Shared dashboard and navigation extensions */
.home-menu {
    position: relative
}

.home-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.home-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    min-width: 150px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    z-index: 35
}

.home-menu.open .home-dropdown,
.home-menu:hover .home-dropdown,
.home-menu:focus-within .home-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.home-dropdown a {
    display: block !important;
    padding: 11px 12px !important;
    box-shadow: none !important;
    color: var(--ink) !important
}

.home-dropdown a:hover {
    background: var(--paper);
    color: var(--teal) !important
}

.dashboard-menu {
    position: relative
}

.dashboard-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    cursor: pointer
}

.dashboard-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: -14px;
    min-width: 180px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    z-index: 35
}

.dashboard-menu.open .dashboard-dropdown,
.dashboard-menu:hover .dashboard-dropdown,
.dashboard-menu:focus-within .dashboard-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dashboard-dropdown a {
    display: block !important;
    padding: 11px 12px !important;
    box-shadow: none !important;
    color: var(--ink) !important;
    white-space: nowrap
}

.dashboard-dropdown a:hover {
    background: var(--paper);
    color: var(--teal) !important
}



.drawer .mobile-home {
    padding-bottom: 0
}

.drawer .mobile-home>a {
    border: 0
}

.mobile-home-links {
    display: none;
    padding-left: 18px
}

.mobile-home.open .mobile-home-links {
    display: block
}

.mobile-home-links a {
    font-size: 15px;
    padding: 12px 0
}

.dashboard-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    background: #f2f5f2
}

.dash-side {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #142321;
    color: #fff;
    padding: 25px 18px;
    z-index: 30
}

.dash-close {
    display: none
}

.dash-side nav {
    margin-top: 28px
}

.dash-side nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .66);
    font: 14px Arial;
    transition: .2s
}

.dash-side nav a.active,
.dash-side nav a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 6px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font: 13px Arial
}

.dash-user small {
    display: block;
    font-size: 11px;
    color: #a9b9b2
}

.dash-avatar {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font: 600 12px Arial
}

.dash-main {
    min-width: 0;
    padding: 30px clamp(20px, 4vw, 60px);
    overflow: hidden
}

.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px
}

.dash-top h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin: 0
}

.dash-top-title,
.dash-top-actions,
.dash-profile,
.dash-welcome-meta,
.panel-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.dash-top-actions {
    flex-wrap: wrap;
    justify-content: flex-end
}

.dash-menu {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    border-radius: 8px
}

.dash-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted)
}

.dash-search input {
    width: 150px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 13px Arial
}

.dash-profile {
    font: 13px Arial
}

.notification-btn {
    position: relative
}

.notification-btn b {
    position: absolute;
    right: -2px;
    top: -3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font: 10px Arial
}

.dash-welcome {
    display: grid;
    grid-template-columns: 1fr 330px;
    min-height: 230px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #dce9df
}

.dash-welcome>div {
    padding: 38px
}

.dash-welcome img {
    height: 100%;
    min-height: 230px
}

.dash-welcome-meta {
    flex-wrap: wrap;
    font: 13px Arial;
    color: var(--teal)
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font: 600 12px Arial
}

.dash-stats {
    margin-bottom: 20px
}

.dash-stats .stat {
    display: flex;
    align-items: flex-start;
    gap: 15px
}

.dash-stats .stat>i {
    font-size: 23px;
    color: var(--coral)
}

.dash-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 20px;
    margin-bottom: 20px
}

.dash-panel {
    min-width: 0;
    background: var(--surface);
    padding: 25px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 35px rgba(20, 35, 33, .05)
}

.dash-panel h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.4rem);
    margin-bottom: 0
}

.trip-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 20px 0
}

.trip-details span {
    display: grid;
    grid-template-columns: 25px 1fr;
    column-gap: 8px;
    font: 13px Arial;
    color: var(--muted)
}

.trip-details b {
    color: var(--ink);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.payment-numbers {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font: 11px Arial;
    color: var(--muted)
}

.payment-numbers strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
    margin-top: 5px
}

.installments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin: 15px 0;
    font: 11px Arial;
    color: var(--muted)
}

.installments span {
    padding: 10px 5px;
    text-align: center;
    border: 1px solid var(--line)
}

.installments b {
    display: block;
    color: var(--teal);
    font-size: 13px;
    margin-bottom: 4px
}

.installments .pending {
    border-color: var(--coral)
}

.document-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
}

.document-list article {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px 10px;
    border: 1px solid var(--line)
}

.document-list article>i {
    color: var(--coral);
    font-size: 18px
}

.document-list article>span:nth-child(2) {
    min-width: 0;
    flex: 1
}

.document-list strong,
.document-list small {
    display: block;
    font: 600 12px Arial;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.document-list small {
    font-weight: 400;
    color: var(--teal);
    margin-top: 4px
}

.document-list .doc-pending {
    color: var(--coral)
}

.doc-actions {
    display: flex;
    gap: 3px
}

.doc-actions button {
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: var(--teal);
    cursor: pointer
}

.dashboard-trigger.active {
    color: var(--teal);
    box-shadow: inset 0 -3px var(--coral)
}

.table-scroll {
    overflow-x: auto
}

.recent-panel {
    margin-bottom: 20px
}

.recent-panel table {
    min-width: 760px
}

.recent-panel td:last-child a {
    color: var(--teal);
    font: 11px Arial;
    margin-right: 8px
}

.quick-actions {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0 15px
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    flex: 1;
    max-width: 760px
}

.quick-action-grid a {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--teal);
    font: 12px Arial
}

.quick-action-grid i {
    font-size: 20px;
    color: var(--coral)
}

html.dark .dashboard-shell {
    background: #101c1a
}

html.dark .dash-welcome {
    background: #1e3630
}

html.rtl .dash-side {
    order: 2
}

html.rtl .dash-main {
    order: 1
}

@media(max-width:1100px) {
    .dashboard-shell {
        grid-template-columns: 82px minmax(0, 1fr)
    }

    .dash-side {
        padding: 25px 10px
    }

    .dash-side .brand span:last-child,
    .dash-side .dash-user span:last-child,
    .dash-side nav a {
        font-size: 0
    }

    .dash-side nav a {
        justify-content: center
    }

    .dash-user {
        justify-content: center;
        border: 0
    }

    .dash-grid {
        grid-template-columns: 1fr
    }

    .quick-actions {
        display: block
    }

    .quick-action-grid {
        max-width: none;
        margin-top: 18px
    }
}

@media(max-width:700px) {
    .dashboard-shell {
        display: block
    }

    .dash-side {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(310px, 88vw);
        height: 100vh;
        transform: translateX(-105%);
        transition: transform .25s;
        box-shadow: 10px 0 35px rgba(0, 0, 0, .2);
        padding: 25px 18px
    }

    .dash-side.open {
        transform: translateX(0)
    }

    .dash-side .brand span:last-child,
    .dash-side .dash-user span:last-child,
    .dash-side nav a {
        font-size: 14px
    }

    .dash-side nav a {
        justify-content: flex-start
    }

    .dash-close {
        display: grid;
        place-items: center;
        position: absolute;
        right: 15px;
        top: 15px;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        background: transparent;
        color: #fff
    }

    .dash-menu {
        display: grid;
        place-items: center
    }

    .dash-main {
        padding: 20px 15px
    }

    .dash-top {
        align-items: flex-start
    }

    .dash-search {
        order: 4;
        width: 100%
    }

    .dash-search input {
        width: 100%
    }

    .dash-welcome {
        grid-template-columns: 1fr
    }

    .dash-welcome>div {
        padding: 25px
    }

    .dash-welcome img {
        height: 180px;
        min-height: 0
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr
    }

    .trip-details,
    .document-list {
        grid-template-columns: 1fr
    }

    .payment-numbers {
        flex-wrap: wrap
    }

    .installments {
        grid-template-columns: repeat(2, 1fr)
    }

    .quick-action-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    html.rtl .dash-side {
        right: 0;
        left: auto;
        transform: translateX(105%)
    }

    html.rtl .dash-side.open {
        transform: translateX(0)
    }
}

@media(max-width:400px) {
    .dash-stats {
        grid-template-columns: 1fr
    }

    .quick-action-grid {
        grid-template-columns: 1fr
    }
}

:root {
    --ink: #142321;
    --muted: #667570;
    --paper: #f7f5ef;
    --surface: #fffdf8;
    --line: #dfe5de;
    --teal: #0f766e;
    --teal-dark: #095b56;
    --coral: #e9795b;
    --gold: #e4b568;
    --shadow: 0 18px 50px rgba(20, 35, 33, .1);
    --radius: 18px
}

html,
body {
    overflow-x: hidden
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Georgia, 'Times New Roman', serif;
    overflow-x: hidden
}

body,
button,
input,
select,
textarea {
    font-size: 16px
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: 0
}

h1 {
    font-size: 60px;
    max-width: 850px
}

h2 {
    font-size: clamp(2.1rem, 4vw, 4rem)
}

h3 {
    font-size: 1.35rem
}

p {
    font-family: Arial, sans-serif;
    line-height: 1.65;
    color: var(--muted)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    width: 100%;
    object-fit: cover
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer;
    border: 0
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: .25s
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(20, 35, 33, .09);
    border-color: var(--line)
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: bold;
    white-space: nowrap
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font: 19px Arial
}

.brand small {
    display: block;
    font: 11px Arial;
    letter-spacing: 1.7px;
    color: var(--coral);
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 17px;
    font: 13px Arial;
    letter-spacing: .04em
}

.nav-links a {
    padding: 30px 0;
    color: var(--muted)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
    box-shadow: inset 0 -3px var(--coral)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.icon-btn,
.menu-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    color: var(--ink);
    display: grid;
    place-items: center
}

.menu-btn {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 20px;
        border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--teal);
    color: white;
    font: 600 13px Arial;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: .2s
}

.btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px)
}

.btn.secondary {

    color: #fff;
    border: 1px solid #e8bd70;
}

.btn.coral {
    background: var(--coral)
}

.hero {
    
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(90deg, rgba(7, 37, 35, .85), rgba(7, 37, 35, .15)), url('../images/') center/cover
}

.hero .container {
    position: relative
}

.eyebrow {
    font: 600 12px Arial;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: var(--coral);
    margin-bottom: 18px
}

.hero h1 {
    margin-bottom: 24px
}

.hero p {
    color: rgba(255, 255, 255, .84);
    max-width: 530px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0
}

.search-strip {
    background: var(--surface);
    color: var(--ink);
    padding: 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 10px;
    box-shadow: var(--shadow);
    margin-top: 35px
}

.field label {
    display: block;
    font: 11px Arial;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, .12)
}

section {
    padding: 80px 0
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px
}

.section-head p {
    max-width: 480px
}

.kicker {
    font: 600 16px Arial;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 13px
}

.destination-grid {
    display: grid;
    grid-template-columns: 1.35fr .9fr .9fr;
    grid-template-rows: 270px 270px;
    gap: 14px
}

.destination {
    position: relative;
    overflow: hidden;
    color: white;
    background: #234
}

.destination:first-child {
    grid-row: span 2
}

.destination:nth-child(4) {
    grid-column: span 2
}

.destination img {
    height: 100%;
    transition: .6s
}

.destination:hover img {
    transform: scale(1.06)
}

.destination:after {
    content: '';
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75))
}

.destination-copy {
    position: absolute;
    z-index: 1;
    bottom: 22px;
    left: 22px;
    right: 22px
}

.destination-copy p {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    margin: 5px 0
}

.price {
    font: 600 13px Arial;
    color: var(--gold)
}

.offer-band {
    background: var(--teal);
    color: white
}

.offer-band p {
    color: rgba(255, 255, 255, .75)
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .25)
}

.offer {
    padding: 30px 24px;
    background: var(--teal)
}

.offer strong {
    font: 12px Arial;
    color: var(--gold);
    text-transform: uppercase
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.package {
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden
}

.package img {
    height: 220px
}

.package-copy {
    padding: 22px
}

.package-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font: 12px Arial;
    margin: 13px 0
}

.package .price {
    font-size: 19px;
    color: var(--teal)
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.feature {
    background: var(--surface);
    padding: 25px 18px;
    min-height: 170px
}

.feature i {
    font-size: 24px;
    color: var(--coral);
    margin-bottom: 20px
}

.feature p {
    font-size: 13px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.split img {
    height: 70vh;

}

.split-copy {
    background: #e8efe8;
    padding: clamp(30px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    padding-left: 80px;
    justify-content: center
}

.quote {
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.25;
    color: var(--ink)
}

.testimonial {
    background: #193b38;
    color: white
}

.testimonial p {
    color: rgba(255, 255, 255, .8)
}

.testimonial .section-head h2 {
    max-width: 550px
}

.quote-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 35px;
    align-items: center
}

.quote-row img {
    height: 180px;
    border-radius: 50%
}

.cta {
    background: var(--coral);
    color: white;
    text-align: center
}

.cta p {
    color: rgba(255, 255, 255, .86);
    max-width: 600px;
    margin: 0 auto 25px
}

.cta .btn {
    background: white;
    color: var(--teal)
}

.page-hero {
    padding: 90px 0 70px;
    background: #b2d1c8;
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0 0 20px
}

.breadcrumbs {
    font: 12px Arial;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 28px
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center
}

.two-col img {
    max-height: 520px
}

.check-list {
    list-style: none;
    padding: 0
}

.check-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: Arial
}

.check-list i {
    color: var(--teal);
    margin-right: 10px
}

.form-panel {
    background: var(--surface);
    padding: 30px;
    box-shadow: var(--shadow)
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.utility-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .25s ease, box-shadow .25s ease
}

.utility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.utility-card i {
    color: var(--coral);
    font-size: 24px;
    margin-bottom: 16px
}

.utility-card h3 {
    margin-bottom: 8px
}

.utility-card p {
    font-size: 14px
}

.utility-note {
    background: #e8efe8
}

.utility-note .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

@media (max-width: 760px) {
    .utility-grid {
        grid-template-columns: 1fr
    }

    .utility-note .container {
        align-items: flex-start;
        flex-direction: column
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.form-grid .full {
    grid-column: 1/-1
}

.error {
    display: block;
    color: #c0392b;
    font: 12px Arial;
    margin-top: 5px
}

.success {
    padding: 14px;
    background: #e4f4e9;
    color: #1d6b42;
    font: 14px Arial;
    margin: 15px 0
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-weight: bold
}

.faq-a {
    display: none;
    padding: 0 0 20px
}

.faq-item.open .faq-a {
    display: block
}

.site-footer {
    background: #142321;
    color: white;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 35px
}

.site-footer p{
     margin-top: 18px;
}

.site-footer a {
    color: #777;
    font: 16px Arial;
    line-height: 2
}

.site-footer h3 {
    font: 12px Arial;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 45px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font: 12px Arial;
    color: rgba(255, 255, 255, .55)
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--teal-dark);
    z-index: 100;
    display: grid;
    place-items: center;
    color: #fff;
    transition: opacity .5s
}

.loader.hide {
    opacity: 0;
    pointer-events: none
}

.loader-inner {
    text-align: center
}

.loader-inner .brand-mark {
    margin: 0 auto 16px;
    background: var(--coral)
}

.loader-line {
    width: 130px;
    height: 2px;
    background: rgba(255, 255, 255, .25);
    overflow: hidden
}

.loader-line:after {
    content: '';
    display: block;
    width: 45%;
    height: 100%;
    background: var(--gold);
    animation: load 1.2s infinite
}

@keyframes load {
    to {
        transform: translateX(220%)
    }
}

.drawer {
    position: fixed;
    inset: 78px 0 0;
    background: var(--surface);
    z-index: 19;
    padding: 25px;
    overflow-y: auto;
    display: none
}

.drawer.open {
    display: block
}

.drawer a {
    display: block;
    font: 18px Arial;
    padding: 17px 0;
    border-bottom: 1px solid var(--line)
}

.no-js {
    padding: 30px
}

.dashboard-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px 1fr;
    background: #f2f5f2
}

.dash-side {
    background: #142321;
    color: white;
    padding: 25px 18px
}

.dash-side .brand {
    margin-bottom: 45px
}

.dash-side nav a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    color: rgba(255, 255, 255, .65);
    font: 14px Arial
}

.dash-side nav a.active,
.dash-side nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: white
}

.dash-main {
    padding: 28px 4vw
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.stat,
.dash-panel {
    background: var(--surface);
    padding: 22px;
    border: 1px solid var(--line)
}

.stat strong {
    font-size: 2rem
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    margin-top: 18px
}

.progress {
    height: 8px;
    background: var(--line);
    margin: 15px 0
}

.progress span {
    display: block;
    height: 100%;
    background: var(--coral)
}

.timeline {
    border-left: 2px solid var(--coral);
    padding-left: 22px
}

.timeline article {
    position: relative;
    padding-bottom: 25px
}

.timeline article:before {
    content: '';
    position: absolute;
    left: -29px;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal)
}

table {
    width: 100%;
    border-collapse: collapse;
    font: 13px Arial
}

th,
td {
    text-align: left;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line)
}

@media(max-width:1050px) {
    .nav-links {
        display: none
    }

    .menu-btn {
        display: grid
    }

    .search-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .feature-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 30px, 600px)
    }

    section {
        padding: 70px 0
    }

    .hero {
        min-height: 760px
    }

    .hero h1 {
        font-size: 3.2rem
    }

    .search-strip,
    .form-grid,
    .two-col,
    .split {
        grid-template-columns: 1fr
    }

    .destination-grid {
        display: flex;
        flex-direction: column
    }

    .destination {
        height: 240px
    }

    .offer-grid,
    .package-grid,
    .footer-grid,
    .dash-grid {
        grid-template-columns: 1fr
    }

    .feature-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .quote-row {
        grid-template-columns: 1fr
    }

    .quote-row img {
        width: 120px;
        height: 120px
    }

    .footer-bottom {
        display: block
    }

    .dashboard-shell {
        display: block
    }

    .dash-side {
        position: relative
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .dash-top {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column
    }

    .dash-main {
        padding: 25px 15px
    }

    .form-panel {
        padding: 20px
    }

    .nav-actions .btn {
        display: none
    }
}

/* ================================
   404 PAGE
================================ */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.error-content {
    max-width: 700px;
    margin: auto;
}

.error-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);

    color: var(--coral);
    font-size: 32px;
}

.error-content h1 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(100px, 18vw, 190px);
    line-height: .9;

    letter-spacing: -8px;
}

.error-content h2 {
    margin: 25px 0 15px;

    font-size: clamp(28px, 5vw, 48px);
}

.error-content p {
    max-width: 560px;

    margin: 0 auto 32px;

    color: var(--muted);

    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}


/* ================================
   404 RESPONSIVE
================================ */

@media (max-width: 768px) {

    .error-page {
        min-height: 65vh;
        padding: 70px 20px;
    }

    .error-content h1 {
        letter-spacing: -4px;
    }

    .error-content h2 {
        margin-top: 18px;
    }

    .error-content p {
        font-size: 15px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

}

/* Dashboard views and shared motion */
.dashboard-view-panel[hidden] {
    display: none
}

.dash-main.view-not-dashboard> :not(.dash-top):not([data-dashboard-panel]) {
    display: none
}

.dash-main.view-changing [data-dashboard-panel]:not([hidden]) {
    animation: dashboard-view-in .22s ease both
}

@keyframes dashboard-view-in {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

body {
    animation: page-fade-in .35s ease both
}

section,
.dash-panel,
.stat,
.destination,
.package-card,
.feature,
.quote {
    animation: section-rise-in .5s ease both
}

@keyframes page-fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes section-rise-in {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

img,
.destination img,
.package-card img {
    transition: transform .35s ease
}

.destination:hover img,
.package-card:hover img {
    transform: scale(1.03)
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(15, 118, 110, .14)
}

@media (min-width: 1051px) {
    .menu-btn {
        display: none !important
    }
}

@media (min-width: 901px) {
    .dashboard-shell {
        grid-template-columns: 250px minmax(0, 1fr)
    }

    .dash-side {
        padding: 25px 18px;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto
    }

    .dash-side .brand span:last-child,
    .dash-side .dash-user span:last-child,
    .dash-side nav a {
        font-size: inherit
    }

    .dash-side nav a {
        justify-content: flex-start
    }
}

@media (min-width: 901px) and (max-width: 1050px) {
    .nav-links {
        display: flex;
        gap: 9px;
        font-size: 11px
    }

    .nav-links a {
        padding: 30px 0
    }

    .menu-btn {
        display: none !important
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none
    }

    .menu-btn {
        display: grid
    }

    .dashboard-shell {
        display: block
    }

    .dash-side {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(310px, 88vw);
        height: 100vh;
        transform: translateX(-105%);
        transition: transform .25s ease;
        z-index: 40
    }

    .dash-side.open {
        transform: translateX(0)
    }

    .dash-close {
        display: grid
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

/* Admin management views */
.admin-stat-grid {
    grid-template-columns: repeat(3, 1fr)
}

.admin-table-scroll {
    overflow-x: auto
}

.admin-table {
    min-width: 980px
}

.admin-table th {
    white-space: nowrap;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.admin-table td {
    white-space: nowrap;
    vertical-align: middle
}

.table-action {
    border: 0;
    padding: 4px 6px;
    background: transparent;
    color: var(--teal);
    cursor: pointer;
    font: 600 12px Arial;
    transition: color .2s ease
}

.table-action:hover {
    color: var(--coral)
}

.table-action.danger {
    color: var(--coral)
}

.action-group {
    min-width: 175px
}

.admin-filters,
.admin-form {
    display: grid;
    gap: 14px;
    margin: 20px 0;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line)
}

.admin-filters {
    grid-template-columns: 2fr repeat(3, 1fr)
}

.admin-filters label,
.admin-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font: 600 11px Arial;
    text-transform: uppercase;
    letter-spacing: .05em
}

.admin-filters input,
.admin-filters select,
.admin-form input,
.admin-form select {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font: 13px Arial
}

.admin-form {
    max-width: 680px;
    grid-template-columns: repeat(2, 1fr)
}

.admin-form button,
.admin-form .form-success {
    grid-column: 1 / -1;
    justify-self: start
}

.admin-checkbox {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px !important;
    text-transform: none !important;
    letter-spacing: 0 !important
}

.admin-checkbox input {
    width: auto
}

.form-success {
    color: var(--teal);
    font: 600 12px Arial
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0
}

.report-card,
.report-lists>div {
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--paper)
}

.report-card strong {
    display: block;
    margin: 12px 0 5px;
    color: var(--ink);
    font-size: 1.7rem
}

.report-card p,
.report-card small {
    color: var(--muted);
    font: 12px Arial
}

.report-bar {
    height: 6px;
    margin: 18px 0 8px;
    background: var(--line)
}

.report-bar span {
    display: block;
    height: 100%;
    background: var(--coral)
}

.report-bookings span {
    width: 78%
}

.report-revenue span {
    width: 84%
}

.report-popular span {
    width: 68%
}

.report-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
}

.report-lists h3 {
    margin-bottom: 8px;
    font-size: 1.1rem
}

.report-lists p {
    margin: 0;
    color: var(--muted);
    font: 13px/1.8 Arial
}

@media (max-width: 900px) {

    .admin-stat-grid,
    .report-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .admin-filters {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 600px) {

    .admin-stat-grid,
    .admin-filters,
    .admin-form,
    .report-grid,
    .report-lists {
        grid-template-columns: 1fr
    }

    .admin-form button,
    .admin-form .form-success {
        grid-column: auto
    }
}

/* ================================
   LIVE LOCATION MAP
================================ */

.live-map {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #dce8e1;
}

#liveMap {
    width: 100%;
    height: 420px;
}

.location-status {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1000;

    padding: 12px 16px;

    background: rgba(255, 255, 255, 0.95);
    color: #17332f;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.location-status i {
    color: #128078;
    margin-right: 7px;
}

/* Tablet */

@media (max-width: 991px) {

    .live-map {
        min-height: 380px;
    }

    #liveMap {
        height: 380px;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .live-map {
        min-height: 320px;
    }

    #liveMap {
        height: 320px;
    }

    .location-status {
        left: 12px;
        bottom: 12px;
        padding: 10px 13px;
        font-size: 12px;
    }

}


/* ===============================================
FAQ SECTION
================================================== */

/* FAQ SECTION */
.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-q {
    width: 100%;
    min-height: 64px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    color: #44b7a7;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    text-align: left;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-q i {
    font-size: 14px;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-q.active i {
    transform: rotate(180deg);
}

.faq-a {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-a p {
    margin: 0;
    padding: 0 24px 22px;
    color: #b8c5c0;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-a {
    max-height: 200px;
    opacity: 1;
}

/* ==============================================
Mobile Responsive
====================================================== */

@media (max-width: 768px) {

    .faq-q {
        min-height: 58px;
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-a p {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .faq-q i {
        margin-left: 12px;
    }
}

/* Premium authentication pages */
.auth-page {
    min-height: 100vh;
    background: #edf1ec;
    color: var(--ink);
    overflow-x: hidden
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr)
}

.auth-visual {
    position: relative;
    min-height: 760px;
    padding: 38px clamp(30px, 5vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    background-position: center;
    background-size: cover;
    isolation: isolate
}

.auth-visual:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(155deg, rgba(13, 45, 41, .86), rgba(16, 44, 40, .18) 58%, rgba(11, 28, 27, .78))
}

.auth-login .auth-visual {
    background-image: url('../images/maldives.jpg')
}

.auth-register .auth-visual {
    background-image: url('../images/bali.jpg')
}

.auth-visual .brand {
    position: relative;
    color: #fff
}

.auth-visual .brand small {
    color: #f2b07d
}

.auth-visual-copy {
    position: relative;
    max-width: 520px;
    padding-bottom: 18px;
}

.auth-visual-copy h1 {
    max-width: 500px;
    margin: 12px 0 18px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 5.1rem);
    line-height: .98
}

.auth-visual-copy p {
    max-width: 440px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px
}

.auth-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    color: rgba(255, 255, 255, .76);
    font: 12px Arial;
    letter-spacing: .08em;
    text-transform: uppercase
}

.auth-caption span {
    width: 38px;
    height: 1px;
    background: var(--gold)
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 54px clamp(24px, 6vw, 90px);
    background: var(--surface)
}

.auth-card {
    width: min(100%, 480px);
    animation: auth-card-in .65s ease both
}

.auth-card .brand {
    margin-bottom: 58px
}

.auth-kicker {
    margin-bottom: 14px;
    color: var(--coral);
    font: 600 11px Arial;
    letter-spacing: .18em;
    text-transform: uppercase
}

.auth-card h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 3rem)
}

.auth-intro {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 15px
}

.auth-form {
    display: grid;
    gap: 18px
}

.auth-form .field {
    position: relative
}

.auth-form .field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font: 600 12px Arial;
    letter-spacing: .06em;
    text-transform: uppercase
}

.auth-form .field input {
    min-height: 52px;
    padding: 14px 16px;
    border-color: #d6ddd5;
    border-radius: 4px;
    background: #fbfcfa
}

.auth-form .field input:focus {
    border-color: var(--teal)
}

.auth-password-wrap input {
    padding-right: 52px !important
}

.password-toggle {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 32px;
    height: 32px;
    color: var(--muted);
    background: transparent
}

.password-toggle:hover {
    color: var(--teal)
}

.auth-options,
.auth-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 13px
}

.auth-options label,
.auth-terms label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted)
}

.auth-options input,
.auth-terms input {
    accent-color: var(--teal)
}

.auth-link {
    color: #e9795b;
    font-weight: 60
}

.auth-link:hover {
    color: var(--coral)
}

.auth-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
    border-radius: 4px
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--muted);
    font: 11px Arial;
    letter-spacing: .1em;
    text-transform: uppercase
}

.auth-divider:before,
.auth-divider:after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--line)
}

.auth-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.auth-social {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: transparent;
    font: 600 12px Arial;
    transition: .2s
}

.auth-social:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px)
}

.auth-switch {
    justify-content: center;
    margin-top: 28px;
    color: var(--muted)
}

.auth-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 30px;
    color: var(--muted);
    font: 12px Arial;
    text-transform: uppercase;
    letter-spacing: .08em
}

.auth-home:hover {
    color: var(--teal)
}

.auth-terms {
    color: var(--muted);
    font-size: 13px
}

.auth-message {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #cbe5d3;
    background: #eef9f0;
    color: #28683e;
    font-size: 13px
}

@keyframes auth-card-in {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr
    }

    .auth-visual {
        min-height: 440px;
        padding: 28px 30px
    }

    .auth-visual-copy h1 {
        font-size: clamp(2.5rem, 8vw, 4rem)
    }

    .auth-card .brand {
        margin-bottom: 38px
    }

    .auth-form-side {
        padding: 58px 30px 72px
    }
}

@media (max-width: 520px) {
    .auth-visual {
        min-height: 390px;
        padding: 24px 20px
    }

    .auth-form-side {
        padding: 44px 20px 58px
    }

    .auth-card .brand {
        margin-bottom: 32px
    }

    .auth-options {
        align-items: flex-start;
        flex-direction: column
    }

    .auth-socials {
        grid-template-columns: 1fr
    }
}

/* FIX: Home dropdown button background */
.nav-links .home-menu {
    position: relative;
}

.nav-links .home-trigger {
    appearance: none;
    -webkit-appearance: none;

    background: transparent !important;
    background-color: transparent !important;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;

    padding: 0 !important;
    margin: 0;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Remove background in every button state */
.nav-links .home-trigger:hover,
.nav-links .home-trigger:focus,
.nav-links .home-trigger:focus-visible,
.nav-links .home-trigger:active {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Arrow */
.nav-links .home-trigger i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

/* Arrow rotates when dropdown is open */
.home-menu.open .home-trigger i {
    transform: rotate(180deg);
}

/* ================================
   HEADER NAVIGATION UNDERLINE FIX
   ================================ */

.nav-links > a {
    padding: 0 !important;
    color: var(--muted);
    position: relative;
    text-decoration: none;
    box-shadow: none !important;
}

.nav-links > a:hover,
.nav-links > a.active {
    color: var(--teal);
    box-shadow: none !important;
}

/* Active underline for ALL header links */
.nav-links > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 3px;
    background: var(--coral);
    border-radius: 3px;
}

/* Home button */
.home-trigger {
    padding: 0 !important;
    box-shadow: none !important;
}

/* Dashboard button */
.dashboard-trigger {
    padding: 0 !important;
    box-shadow: none !important;
}

/* RIGHT PANEL - PERFECT CENTER */
.auth-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-visual-copy {
    position: relative;
    max-width: 520px;
    padding-bottom: 18px;
    margin: 0 auto;
    text-align: center;
}

/* ===== SPLIT IMAGE + CONTENT FINAL FIX ===== */

.split {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 520px !important;
    padding: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
}

.split > img {
    display: block !important;
    width: 100% !important;

    min-height: 540px !important;
    /* max-height: none !important; */
    object-fit: cover !important;
    margin: 0 !important;
}

.split > .split-copy {
    min-height: 520px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    padding: 30px !important;
    margin: 0 !important;
}

/* MOBILE */
@media (max-width: 700px) {
    .split {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .split > img {
        height: 350px !important;
        min-height: 350px !important;
    }

    .split > .split-copy {
        height: auto !important;
        min-height: auto !important;
        padding: 40px 25px !important;
    }
}

/* ===== FIX FOR YOUR TRIP SECTION ===== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
}

.split > img {
    display: block;
    width: 100%;

    /* min-height: 100%; */
    object-fit: cover;
    object-position: center;
}

.split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}


/* ===== TABLET ===== */

@media (max-width: 900px) {

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split-copy {
        padding: 45px 35px;
    }

}


/* ===== MOBILE ===== */

@media (max-width: 700px) {

    .split {
        grid-template-columns: 1fr;
    }

    .split > img {
        width: 100%;
        height: 380px;
        min-height: 380px;
    }

    .split-copy {
        padding: 45px 25px;
        min-height: auto;
    }

}

/* =========================================
   ABOUT PAGE
========================================= */

.about-story {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-story-image {
    height: 560px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-story-image:hover img {
    transform: scale(1.04);
}

.about-story-content {
    max-width: 560px;
}

.about-story-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    margin: 15px 0 30px;
}

.about-story-content p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-highlight {
    margin-top: 35px;
    padding: 20px 0;
    border-top: 1px solid rgba(15, 50, 46, 0.2);
    border-bottom: 1px solid rgba(15, 50, 46, 0.2);
    display: flex;
    gap: 20px;
    align-items: center;
}

.story-highlight strong {
    font-size: 18px;
    white-space: nowrap;
}

.story-highlight span {
    opacity: 0.75;
}


/* =========================================
   VISION
========================================= */

.about-vision {
    padding: 100px 0;
    background: #dfeae3;
}

.vision-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.vision-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.vision-number {
    font-size: 80px;
    font-family: Georgia, serif;
    opacity: 0.12;
}

.vision-content {
    max-width: 850px;
}

.vision-content h2 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    margin: 0 0 35px;
}

.vision-content p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
   MISSION
========================================= */

.about-mission {
    padding: 110px 0;
}

.mission-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.mission-heading h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    margin-top: 18px;
}

.mission-points {
    border-top: 1px solid rgba(15, 50, 46, 0.2);
}

.mission-point {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(15, 50, 46, 0.2);
}

.mission-point > span {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.mission-point h3 {
    margin: 0 0 10px;
    font-size: 25px;
}

.mission-point p {
    max-width: 650px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   CORE VALUES
========================================= */

.about-values {
    padding: 110px 0;
    background: #f1eee7;
}

.values-intro {
    max-width: 700px;
    margin-bottom: 65px;
}

.values-intro h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    margin-top: 18px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(15, 50, 46, 0.2);
}

.value-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    padding: 35px 30px 35px 0;
    border-bottom: 1px solid rgba(15, 50, 46, 0.2);
}

.value-item:nth-child(even) {
    padding-left: 30px;
    border-left: 1px solid rgba(15, 50, 46, 0.2);
}

.value-number {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.value-item h3 {
    margin: 0 0 12px;
    font-size: 25px;
}

.value-item p {
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}


/* =========================================
   PEOPLE / TEAM
========================================= */

.about-people {
    padding: 110px 0;
}

.people-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.people-content {
    max-width: 650px;
}

.people-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    margin: 18px 0 30px;
}

.people-content p {
    line-height: 1.8;
}

.people-content .btn {
    display: inline-flex;
    margin-top: 25px;
    gap: 10px;
    align-items: center;
}

.people-statement {
    padding: 55px;
    background: #153a35;
    color: #f5f1e9;
}

.statement-mark {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 0.5;
    opacity: 0.5;
}

.people-statement blockquote {
    font-family: Georgia, serif;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.25;
    margin: 30px 0;
}

.people-statement > span {
    font-size: 13px;
    opacity: 0.7;
}


/* =========================================
   FUTURE DIRECTION
========================================= */

.about-future {
    padding: 110px 0;
    background: #0f2926;
    color: #f4f0e8;
}

.future-layout {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
}

.future-number {
    font-family: Georgia, serif;
    font-size: 90px;
    opacity: 0.25;
}

.future-content {
    max-width: 850px;
}

.future-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    margin: 18px 0 30px;
}

.future-content > p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
}

.future-details {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.future-details div {
    padding-top: 22px;
    border-top: 1px solid rgba(244, 240, 232, 0.25);
}

.future-details strong,
.future-details span {
    display: block;
}

.future-details strong {
    margin-bottom: 10px;
    font-size: 18px;
}

.future-details span {
    line-height: 1.6;
    opacity: 0.7;
    font-size: 14px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .about-story-grid,
    .people-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-story-image {
        height: 450px;
    }

    .vision-layout {
        grid-template-columns: 100px 1fr;
        gap: 35px;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .value-item:nth-child(even) {
        padding-left: 0;
        border-left: none;
    }

    .future-details {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .about-story,
    .about-vision,
    .about-mission,
    .about-values,
    .about-people,
    .about-future {
        padding: 70px 0;
    }

    .about-story-grid {
        gap: 35px;
    }

    .about-story-image {
        height: 360px;
    }

    .vision-layout,
    .future-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-label {
        min-height: auto;
    }

    .vision-number,
    .future-number {
        display: none;
    }

    .mission-point {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .value-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .people-statement {
        padding: 35px 25px;
    }

    .story-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}

/* =========================================================
   CUSTOMIZE PAGE — PERSONAL TOUCH
========================================================= */

.customize-personal-section {
    padding: 115px 0;
    background: #d0dfd8;
}

.customize-personal-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.customize-personal-message {
    max-width: 680px;
}

.customize-personal-message h2 {
    margin: 18px 0 28px;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
}

.customize-personal-message p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.customize-personal-list {
    border-top: 1px solid rgba(16, 44, 41, 0.25);
}

.customize-personal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(16, 44, 41, 0.25);
}

.customize-personal-item span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.customize-personal-item strong {
    font-size: 17px;
}

/* =========================================================
   BLOG — GUIDE
========================================================= */

.blog-guide-section {
    padding: 110px 0;
    background: #d0dfd8;
}

.blog-guide-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
}

.blog-guide-heading h2 {
    max-width: 550px;
    margin: 18px 0 20px;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
}

.blog-guide-heading p {
    max-width: 500px;
    line-height: 1.8;
}

.blog-guide-items {
    border-top: 1px solid rgba(16, 44, 41, 0.2);
}

.blog-guide-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(16, 44, 41, 0.2);
}

.blog-guide-item > span {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.55;
}

.blog-guide-item h3 {
    margin: 0 0 9px;
    font-size: 22px;
}

.blog-guide-item p {
    margin: 0;
    line-height: 1.7;
}

/* =========================================
   WANDERFRAME HERO
========================================= */

.wanderframe {
    position: relative;
    min-height: 760px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.wanderframe-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.wanderframe-filter {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 37, 35, 0.88) 0%,
            rgba(7, 37, 35, 0.62) 45%,
            rgba(7, 37, 35, 0.15) 100%
        );
    z-index: -2;
}

.wanderframe-content {
    position: relative;
    z-index: 2;
    /* padding-top: 100px; */
    /* padding-bottom: 100px; */
}

.wanderframe-tag {
    display: block;
    margin-bottom: 24px;
    color: #f07859;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.wanderframe-title {
    max-width: 800px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.98;
}

.wanderframe-description {
    max-width: 620px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
}

.wanderframe-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================
   SMOOTH ANIMATION
========================================= */

.wanderframe-tag,
.wanderframe-title,
.wanderframe-description,
.wanderframe-controls {
    opacity: 0;
    animation: wanderframe-entry 0.8s ease forwards;
}

.wanderframe-tag {
    animation-delay: 0.1s;
}

.wanderframe-title {
    animation-delay: 0.2s;
}

.wanderframe-description {
    animation-delay: 0.3s;
}

.wanderframe-controls {
    animation-delay: 0.4s;
}

@keyframes wanderframe-entry {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .wanderframe {
        min-height: 680px;
    }

    .wanderframe-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .wanderframe-title {
        max-width: 680px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .wanderframe {
        min-height: 680px;
        align-items: flex-end;
    }

    .wanderframe-img {
        object-position: center;
    }

    .wanderframe-filter {
        background:
            linear-gradient(
                180deg,
                rgba(7, 37, 35, 0.25) 0%,
                rgba(7, 37, 35, 0.72) 48%,
                rgba(7, 37, 35, 0.96) 100%
            );
    }

    .wanderframe-content {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 55px;
    }

    .wanderframe-title {
        font-size: clamp(42px, 12vw, 62px);
        line-height: 1;
        margin-bottom: 22px;
    }

    .wanderframe-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .wanderframe-controls {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .wanderframe-controls .btn {
        width: 100%;
        text-align: center;
    }

}

/* =========================================
   TRAVELER NOTES
========================================= */

.traveler-notes {
    padding: 100px 0;
    background: #ffffff;
}

.traveler-notes-title {
    margin-bottom: 45px;
}

.traveler-notes-title h2 {
    margin: 15px 0 0;
    font-size: clamp(40px, 5vw, 62px);
}

.traveler-notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #d8dfdb;
    border-bottom: 1px solid #d8dfdb;
}

.traveler-note {
    padding: 35px 25px;
    border-right: 1px solid #d8dfdb;
}

.traveler-note:last-child {
    border-right: none;
}

.traveler-note-number {
    color: #ef7658;
    font-weight: 700;
    margin-bottom: 45px;
}

.traveler-note h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.traveler-note p {
    color: #687773;
    line-height: 1.7;
}


/* =========================================
   JOURNEY LETTER
========================================= */

.journey-letter {
    padding: 90px 0;
}

.journey-letter-box {
    padding: 65px;
    background: #0e4641;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 70px;
    align-items: center;
}

.journey-letter-box h2 {
    max-width: 600px;
    margin: 18px 0;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.journey-letter-box p {
    max-width: 560px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.journey-letter-box > div > span {
    color: #f07859;
}

.journey-letter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journey-letter-form input {
    width: 100%;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font: inherit;
    outline: none;
}

.journey-letter-form input::placeholder {
    color: rgba(255, 255, 255, .65);
}

.journey-letter-form button {
    padding: 17px;
    border: none;
    background: #ef7658;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.journey-letter-form button i {
    margin-left: 8px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .journal-feature-layout,
    .atlas-stories-layout {
        grid-template-columns: 1fr;
    }

    .journal-feature-content {
        padding: 55px;
    }

    .journal-entry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .traveler-notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .traveler-note:nth-child(2) {
        border-right: none;
    }

    .traveler-note:nth-child(3),
    .traveler-note:nth-child(4) {
        border-top: 1px solid #d8dfdb;
    }

    .journal-highlights-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .journey-letter-box {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px;
    }

}


@media (max-width: 600px) {

    .journal-feature,
    .journal-entries,
    .atlas-stories,
    .traveler-notes,
    .journal-highlights,
    .journey-letter {
        padding: 65px 0;
    }

    .journal-feature-content {
        padding: 40px 25px;
    }

    .journal-feature-image img {
        min-height: 330px;
    }

    .journal-entry-grid {
        grid-template-columns: 1fr;
    }

    .journal-entry-photo {
        height: 240px;
    }

    .atlas-stories-layout {
        gap: 45px;
    }

    .atlas-story-item {
        grid-template-columns: 32px 1fr 20px;
        gap: 12px;
    }

    .atlas-story-item h3 {
        font-size: 21px;
    }

    .traveler-notes-grid {
        grid-template-columns: 1fr;
    }

    .traveler-note,
    .traveler-note:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #d8dfdb;
    }

    .traveler-note:last-child {
        border-bottom: none;
    }

    .traveler-note-number {
        margin-bottom: 25px;
    }

    .journal-highlight-link {
        grid-template-columns: 1fr 25px;
        gap: 10px;
    }

    .journal-highlight-link span {
        grid-column: 1 / -1;
    }

    .journal-highlight-link strong {
        font-size: 18px;
    }

    .journey-letter-box {
        padding: 38px 25px;
    }

}

/* =========================================
   STICKY HEADER - ALL PAGES
========================================= */

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

/* Keep header content above the page */

.site-header .nav-wrap {
    position: relative;
    z-index: 100000;
}

/* Space for fixed header */

body {
    padding-top: 80px;
}

/* =========================================================
   FINAL DASHBOARD SIDEBAR + TOP SPACE FIX
   USER + ADMIN DASHBOARD
========================================================= */

/* Dashboard pages must start from the very top without changing normal pages. */
body[data-dashboard="true"],
body[data-dashboard="admin"] {
    margin: 0 !important;
    padding: 0 !important;
    height: 100vh !important;
    overflow: hidden !important;
}

/* Main dashboard layout */
.dashboard-shell {
    width: 100% !important;
    height: 100vh !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* =========================================================
   LEFT SIDEBAR
========================================================= */

.dashboard-shell > .dash-side {
    position: fixed !important;
    position: -webkit-fixed !important;

    top: 0 !important;
    left: 0 !important;

    width: 250px !important;
    min-width: 250px !important;

    height: 100vh !important;
    min-height: 100vh !important;

    max-height: 100vh !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-sizing: border-box !important;

    z-index: 999 !important;
}

/* Sidebar scrollbar */
.dashboard-shell > .dash-side::-webkit-scrollbar {
    width: 5px;
}

.dashboard-shell > .dash-side::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 10px;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.dashboard-shell > .dash-main {
    width: calc(100% - 250px) !important;
    height: 100vh !important;
    margin-left: 250px !important;
    min-width: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    box-sizing: border-box !important;
}

/* Dashboard top area */
.dashboard-shell .dash-top {
    margin-top: 0 !important;
}

/* =========================================================
   USER + ADMIN BOTH
========================================================= */

.admin-dashboard-shell {
    height: 100vh !important;
}

.admin-dashboard-shell > .dash-side {
    position: fixed !important;
    top: 0 !important;

    height: 100vh !important;
    min-height: 100vh !important;
}

/* =========================================================
   REMOVE OLD TOP SPACE
========================================================= */

body[data-dashboard="true"] > .site-header,
body[data-dashboard="admin"] > .site-header {
    display: none !important;
}

body[data-dashboard="true"] > .drawer,
body[data-dashboard="admin"] > .drawer {
    display: none !important;
}

/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 901px) {

    .dashboard-shell {
        display: block !important;
    }

    .dashboard-shell > .dash-side {
        position: fixed !important;
        top: 0 !important;

        width: 250px !important;
        min-width: 250px !important;

        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .dashboard-shell > .dash-main {
        width: calc(100% - 250px) !important;
        height: 100vh !important;
        margin-left: 250px !important;
        min-width: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 701px) and (max-width: 900px) {

    .dashboard-shell {
        display: block !important;
    }

    .dashboard-shell > .dash-side {
        position: fixed !important;
        top: 0 !important;

        width: 82px !important;
        min-width: 82px !important;

        height: 100vh !important;
        min-height: 100vh !important;

        transform: none !important;
        transition: none !important;
    }

    .dashboard-shell > .dash-main {
        width: calc(100% - 82px) !important;
        height: 100vh !important;
        margin-left: 82px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .dashboard-shell {
        width: 100% !important;
        height: 100vh !important;
        display: block !important;
        min-height: 0 !important;
    }

    /*
       Mobile sidebar is a drawer.
       Do NOT use position: relative here.
    */

    .dashboard-shell > .dash-side {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;

        width: min(310px, 88vw) !important;
        min-width: 0 !important;

        height: 100vh !important;
        min-height: 100vh !important;

        max-height: 100vh !important;

        z-index: 99999 !important;

        transform: translateX(-105%);
        transition: transform 0.25s ease;

        overflow-y: auto !important;
    }

    .dashboard-shell > .dash-side.open {
        transform: translateX(0) !important;
    }

    .dashboard-shell > .dash-main {
        width: 100% !important;
        height: 100vh !important;
        margin-left: 0 !important;
        padding: 25px 15px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    /* Mobile dashboard content */
    .dash-top {
        margin-top: 0 !important;
    }
}

/* =========================================================
   RTL
========================================================= */

html.rtl .dashboard-shell > .dash-side {
    left: auto;
    right: 0;
}

html.rtl .dashboard-shell > .dash-main {
    margin-left: 0 !important;
    margin-right: 250px !important;
}

@media (max-width: 700px) {

    html.rtl .dashboard-shell > .dash-side {
        transform: translateX(105%) !important;
    }

    html.rtl .dashboard-shell > .dash-side.open {
        transform: translateX(0) !important;
    }

    html.rtl .dashboard-shell > .dash-main {
        margin-right: 0 !important;
    }
}

