/* =========================================
   BASIC RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecee;

    position: sticky;
    top: 0;

    z-index: 999;
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 260px;
    object-fit: contain;
}


/* DESKTOP NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;

    padding: 30px 0;

    font-size: 13px;
    font-weight: 600;

    color: #3e484d;

    transition: color .2s ease;
}

.main-nav a:hover {
    color: #1597a8;
}


/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;

    border: 0;
    background: transparent;

    font-size: 27px;
    color: #26363d;

    cursor: pointer;
}


/* =========================================
   HEADER - MOBILE
========================================= */

/* =========================================
   HEADER - MOBILE
========================================= */

@media (max-width: 850px) {

    .header-inner {
        min-height: 70px;
        position: relative;
    }

    .site-logo img {
        height: 40px;
        max-width: 210px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 0;

        background: #ffffff;

        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;

        box-shadow: 0 8px 18px rgba(0,0,0,.08);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 14px 20px;

        font-size: 14px;

        border-bottom: 1px solid #f1f1f1;
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;

    background-image: url("../images/hero/home-hero.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 30, 38, .78) 0%,
        rgba(7, 30, 38, .55) 45%,
        rgba(7, 30, 38, .18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 70px;
    padding-bottom: 70px;

    color: #ffffff;
}

.hero-label {
    display: block;
    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;

    text-transform: uppercase;

    color: #8be0e7;
}

.hero h1 {
    max-width: 720px;

    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 700;
}

.hero p {
    max-width: 610px;

    margin-bottom: 30px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, .92);
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-primary {
    background: #1597a8;
    color: #ffffff;
}

.hero-btn-primary:hover {
    background: #117c8a;
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, .8);

    background: rgba(255, 255, 255, .08);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    color: #1d2930;
}


/* =========================================
   HERO - MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 500px;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(7, 30, 38, .62);
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-btn {
        flex: 1;
        min-width: 145px;
    }

}


/* =========================================
   TOUR SECTION
========================================= */

.tour-section {
    padding: 70px 0;
    background: #ffffff;
}

.tour-section-alt {
    background: #f7f8f8;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-us {
    padding: 90px 0;
    background: #ffffff;
}

.why-intro {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-label {
    display: block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;

    color: #1597a8;
}

.why-intro h2 {
    margin-bottom: 16px;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: #1d2930;
}

.why-intro > p {
    font-size: 16px;
    line-height: 1.7;

    color: #677279;
}


/* ITEMS */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}

.why-item {
    padding-top: 24px;

    border-top: 2px solid #e4eaec;
}

.why-number {
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #1597a8;
}

.why-item h3 {
    margin-bottom: 12px;

    font-size: 20px;
    line-height: 1.3;

    color: #1d2930;
}

.why-item p {
    font-size: 14px;
    line-height: 1.7;

    color: #677279;
}


/* TABLET */

@media (max-width: 900px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .why-us {
        padding: 65px 0;
    }

    .why-intro {
        margin-bottom: 35px;
    }

    .why-intro h2 {
        font-size: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

}


/* =========================================
   SECTION HEADER
========================================= */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 28px;
}

.section-label {
    display: block;
    margin-bottom: 5px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;

    color: #1597a8;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1c2931;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 600;

    color: #147f91;

    transition: gap .25s ease,
                color .25s ease;
}

.view-all:hover {
    gap: 13px;
    color: #0d5f6c;
}


/* =========================================
   SLIDER
========================================= */

.slider-wrapper {
    position: relative;
}

.tour-slider {
    display: flex;
    gap: 22px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding: 5px 2px 18px;

    scrollbar-width: none;
}

.tour-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================
   TOUR CARD
========================================= */

.tour-card {
    flex: 0 0 calc((100% - 66px) / 4);

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e6e9eb;
    border-radius: 14px;

    overflow: hidden;

    scroll-snap-align: start;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}


/* =========================================
   TOUR IMAGE
========================================= */

.tour-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #dcecef;
    color: #718084;

    font-size: 14px;
}


/* =========================================
   CARD CONTENT
========================================= */

.tour-content {
    padding: 20px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-type {
    display: block;
    margin-bottom: 7px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;

    color: #1597a8;
}

.tour-content h3 {
    margin-bottom: 10px;
    min-height: 78px;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;

    color: #1d2930;
}

.tour-content p {
    margin-bottom: 18px;
    min-height: 90px;

    font-size: 14px;
    line-height: 1.6;

    color: #677279;
}

.tour-link {
    margin-top: auto;

    font-size: 14px;
    font-weight: 700;

    color: #147f91;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.slider-arrow {
    position: absolute;
    top: 38%;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: #ffffff;
    color: #26363d;

    font-size: 20px;

    cursor: pointer;

    box-shadow: 0 3px 14px rgba(0,0,0,.15);

    z-index: 5;

    transition:
        transform .2s ease,
        background .2s ease;
}

.slider-arrow:hover {
    transform: scale(1.06);
    background: #f5f5f5;
}

.slider-prev {
    left: -21px;
}

.slider-next {
    right: -21px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tour-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .tour-section {
        padding: 50px 0;
    }

    .section-header {
        align-items: flex-end;
        gap: 15px;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 25px;
    }

    .section-label {
        font-size: 10px;
    }

    .view-all {
        font-size: 12px;
        white-space: nowrap;
    }

    .tour-slider {
        gap: 15px;
        padding-right: 35px;
    }

    .tour-card {
        /*
        Sedikit bagian card berikutnya terlihat.
        Ini memberi tanda bahwa slider bisa di-swipe.
        */
        flex: 0 0 92%;
    }

    .slider-arrow {
        display: none;
    }

}


/* =========================================
   EXPLORE THE ISLANDS
========================================= */

.islands-section {
    padding: 90px 0;
    background: #f6f8f9;
}

.islands-intro {
    max-width: 720px;
    margin-bottom: 40px;
}

.islands-intro h2 {
    margin-bottom: 15px;

    font-size: 36px;
    line-height: 1.2;

    color: #1d2930;
}

.islands-intro p {
    font-size: 16px;
    line-height: 1.7;

    color: #677279;
}


/* GRID */

.islands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* CARD */

.island-card {
    position: relative;

    height: 430px;

    overflow: hidden;
    border-radius: 14px;

    color: #ffffff;
}

.island-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.island-card:hover img {
    transform: scale(1.05);
}


/* OVERLAY */

.island-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(4, 24, 31, .82) 0%,
        rgba(4, 24, 31, .25) 55%,
        rgba(4, 24, 31, .05) 100%
    );
}


/* CONTENT */

.island-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 2;
}

.island-content span {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    color: #7de3ed;
}

.island-content h3 {
    margin-bottom: 8px;

    font-size: 27px;
    line-height: 1.2;
}

.island-content p {
    font-size: 14px;
    line-height: 1.6;

    color: rgba(255,255,255,.9);
}


/* TABLET */

@media (max-width: 900px) {

    .islands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .islands-section {
        padding: 65px 0;
    }

    .islands-intro h2 {
        font-size: 30px;
    }

    .islands-grid {
        grid-template-columns: 1fr;
    }

    .island-card {
        height: 360px;
    }

}


/* ========================================
   GUEST REVIEWS
========================================= */

.guest-reviews {
    padding: 90px 0;
    background: #ffffff;
}

.reviews-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.reviews-heading .section-label {
    display: block;
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #008ca8;
}

.reviews-heading h2 {
    margin: 0 0 14px;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: #1d2939;
}

.reviews-heading p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: #677279;
}


/* REVIEW GRID */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* REVIEW CARD */

.review-card {
    padding: 32px;

    background: #f7f9fa;

    border: 1px solid #e3e8eb;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
}

.review-stars {
    margin-bottom: 20px;

    font-size: 17px;
    letter-spacing: 3px;

    color: #f4b400;
}

.review-text {
    margin: 0 0 28px;

    font-size: 15px;
    line-height: 1.75;

    color: #4f5d64;

    flex: 1;
}

.review-guest {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-top: auto;
}

.review-guest strong {
    font-size: 15px;
    color: #1d2939;
}

.review-guest span {
    font-size: 13px;
    color: #7a858b;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .guest-reviews {
        padding: 65px 0;
    }

    .reviews-heading {
        margin-bottom: 30px;
    }

    .reviews-heading h2 {
        font-size: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 25px;
    }

}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    padding: 80px 0;
    background: #103c48;
    color: #ffffff;
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.final-cta h2 {
    max-width: 720px;
    margin: 8px 0 14px;

    font-size: 36px;
    line-height: 1.2;
}

.final-cta p {
    max-width: 650px;
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255,255,255,.85);
}

.final-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-btn {
    min-height: 48px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;
}

.cta-primary {
    background: #1597a8;
    color: #ffffff;
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,.75);
    color: #ffffff;
}

@media (max-width: 800px) {

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 600px) {

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .final-cta-actions {
        width: 100%;
    }

    .cta-btn {
        flex: 1;
    }

}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 70px 0 25px;

    background: #082f39;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 55px;

    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 45px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 390px;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255,255,255,.72);
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 8px;

    font-size: 15px;
    font-weight: 700;

    color: #ffffff;
}

.footer-column a {
    font-size: 14px;

    color: rgba(255,255,255,.72);

    transition: color .2s ease;
}

.footer-column a:hover {
    color: #5ed7e4;
}


/* BOTTOM */

.footer-bottom {
    padding-top: 24px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p {
    margin: 0;

    font-size: 13px;

    color: rgba(255,255,255,.58);
}


/* TABLET */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .site-footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo img {
        height: 40px;
    }

}


/* =========================================
   DESTINATION PAGE
========================================= */

.destination-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
}

.destination-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(5, 27, 34, .82) 0%,
        rgba(5, 27, 34, .35) 55%,
        rgba(5, 27, 34, .10) 100%
    );
}

.destination-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 65px;

    color: #ffffff;
}

.destination-hero-content h1 {
    margin: 8px 0 14px;

    font-size: 52px;
    line-height: 1.1;
}

.destination-hero-content p {
    max-width: 620px;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255,255,255,.9);
}


/* INTRO */

.destination-intro {
    padding: 85px 0;
    background: #ffffff;
}

.destination-intro-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;
}

.destination-intro h2 {
    margin-top: 8px;

    font-size: 36px;
    line-height: 1.25;
}

.destination-intro p {
    margin-bottom: 18px;

    font-size: 16px;
    line-height: 1.8;

    color: #677279;
}


/* HIGHLIGHTS */

.destination-highlights {
    padding: 85px 0;

    background: #f6f8f9;
}

.highlight-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

    margin-top: 40px;
}

.highlight-item {
    padding-top: 22px;

    border-top: 2px solid #dfe7ea;
}

.highlight-item h3 {
    margin-bottom: 10px;

    font-size: 20px;
}

.highlight-item p {
    font-size: 14px;
    line-height: 1.7;

    color: #677279;
}


/* TABLET */

@media (max-width: 900px) {

    .destination-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .destination-hero {
        min-height: 420px;
    }

    .destination-hero-content h1 {
        font-size: 38px;
    }

    .destination-intro {
        padding: 60px 0;
    }

    .destination-highlights {
        padding: 60px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

}


/* =========================================
   DESTINATION PAGE
========================================= */

.destination-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.destination-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 30, 38, 0.82) 0%,
        rgba(5, 30, 38, 0.38) 55%,
        rgba(5, 30, 38, 0.10) 100%
    );
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 65px;
    color: #ffffff;
}

.destination-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.destination-hero-content h1 {
    margin: 0 0 15px;
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
}

.destination-hero-content p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}


/* INTRODUCTION */

.destination-intro {
    padding: 85px 0;
    background: #ffffff;
}

.destination-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.destination-intro-title h2 {
    margin: 8px 0 0;
    font-size: 36px;
    line-height: 1.25;
}

.destination-intro-content p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #677279;
}


/* TABLET */

@media (max-width: 900px) {

    .destination-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .destination-hero {
        min-height: 420px;
    }

    .destination-hero-content {
        padding-bottom: 45px;
    }

    .destination-hero-content h1 {
        font-size: 38px;
    }

    .destination-hero-content p {
        font-size: 15px;
    }

    .destination-intro {
        padding: 60px 0;
    }

    .destination-intro-title h2 {
        font-size: 30px;
    }

}


/* =========================================
   DESTINATION PLACES
========================================= */

.destination-places {
    padding: 85px 0;
    background: #f6f8f9;
}

.destination-places .section-intro {
    max-width: 720px;
}

.destination-places .section-intro h2 {
    margin: 8px 0 12px;
    font-size: 36px;
    line-height: 1.25;
}

.destination-places .section-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #677279;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.place-card {
    background: #ffffff;
    overflow: hidden;
}

.place-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.04);
}

.place-content {
    padding: 22px 22px 25px;
}

.place-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.place-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #677279;
}


/* TABLET */

@media (max-width: 900px) {

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .destination-places {
        padding: 60px 0;
    }

    .destination-places .section-intro h2 {
        font-size: 30px;
    }

    .places-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }

}


/* =========================================
   DESTINATION - RELATED TOURS
========================================= */

.destination-tours {
    padding: 85px 0;
    background: #ffffff;
}

.destination-tours .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.destination-tours .tour-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
}

.destination-tours .tour-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.destination-tours .tour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* TABLET */

@media (max-width: 900px) {

    .destination-tours .tours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .destination-tours {
        padding: 60px 0;
    }

    .destination-tours .tours-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
    }

}


/* ========================================
   NUSA ISLAND HUB
========================================= */

.island-hub-section {
    padding: 85px 0;
    background: #f6f8f9;
}

.island-hub-section .section-intro {
    max-width: 760px;
}

.island-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
}

.island-hub-card {
    background: #ffffff;
    overflow: hidden;
}

.island-hub-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.island-hub-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.island-hub-card:hover .island-hub-image img {
    transform: scale(1.04);
}

.island-hub-content {
    padding: 24px 24px 28px;
}

.island-hub-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #009bb5;
}

.island-hub-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.island-hub-content p {
    margin: 0 0 20px;
    line-height: 1.7;
    color: #677279;
}

.island-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #008fa8;
}

.island-hub-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {

    .island-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .island-hub-section {
        padding: 60px 0;
    }

    .island-hub-grid {
        grid-template-columns: 1fr;
    }

}


/* ========================================
   ALL TOURS GRID
========================================= */

.all-tours-section {
    padding: 85px 0;
    background: #f6f8f9;
}

.all-tours-section .section-intro {
    max-width: 760px;
}

.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.all-tours-grid .tour-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
}

.all-tours-grid .tour-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.all-tours-grid .tour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .all-tours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .all-tours-section {
        padding: 60px 0;
    }

    .all-tours-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   TOUR OVERVIEW
========================================= */

.tour-overview {
    padding: 85px 0;
    background: #ffffff;
}

.tour-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.tour-overview-title h2 {
    margin: 8px 0 0;
    font-size: 36px;
    line-height: 1.25;
}

.tour-overview-content p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: #677279;
}


/* ========================================
   TOUR HIGHLIGHTS
========================================= */

.tour-highlights {
    padding: 85px 0;
    background: #f6f8f9;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.highlight-card {
    background: #ffffff;
    padding: 28px 24px;
}

.highlight-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.35;
}

.highlight-card p {
    margin: 0;
    line-height: 1.7;
    color: #677279;
}

@media (max-width: 900px) {

    .tour-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .tour-overview,
    .tour-highlights {
        padding: 60px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   TOUR DETAIL - ITINERARY
   ========================================= */

.tour-itinerary {
    padding: 60px 0 85px;
    background: #ffffff;
}

.tour-itinerary .section-intro {
    max-width: 720px;
    margin-bottom: 38px;
}

.tour-itinerary .section-intro h2 {
    margin: 8px 0 10px;
}

.tour-itinerary .section-intro p {
    margin: 0;
    color: #677279;
    line-height: 1.7;
}


/* ITINERARY LIST */

.itinerary-list {
    max-width: 1000px;
}

.itinerary-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid #e1e6e8;
}

.itinerary-item:last-child {
    border-bottom: 1px solid #e1e6e8;
}

.itinerary-time {
    font-size: 14px;
    font-weight: 700;
    color: #009bb5;
    letter-spacing: 0.03em;
}

.itinerary-content h3 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.35;
}

.itinerary-content p {
    margin: 0;
    color: #677279;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 600px) {

    .tour-itinerary {
        padding: 50px 0 65px;
    }

    .itinerary-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }

    .itinerary-content h3 {
        font-size: 17px;
    }
}


/* =========================================
   TOUR DETAIL - INFORMATION
   ========================================= */

.tour-information {
    padding: 85px 0;
    background: #f6f8f9;
}

.tour-information .section-intro {
    max-width: 720px;
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    margin-top: 42px;
}

.tour-info-card {
    background: #ffffff;
    padding: 30px 28px;
}

.tour-info-card h3,
.tour-bring-card h3,
.tour-note h3 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.35;
}

.tour-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-info-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    line-height: 1.6;
    color: #677279;
    border-bottom: 1px solid #eef1f2;
}

.tour-info-list li:last-child {
    border-bottom: 0;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: 700;
    color: #009bb5;
}

.excluded-list li::before {
    content: "–";
    position: absolute;
    left: 2px;
    top: 8px;
    font-weight: 700;
    color: #677279;
}

.tour-bring-card {
    margin-top: 28px;
    background: #ffffff;
    padding: 28px;
}

.tour-bring-card p {
    margin: 0;
    line-height: 1.8;
    color: #677279;
}

.tour-note {
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 4px solid #009bb5;
    background: #ffffff;
}

.tour-note p {
    margin: 0;
    line-height: 1.7;
    color: #677279;
}

@media (max-width: 800px) {

    .tour-info-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .tour-information {
        padding: 60px 0;
    }

    .tour-info-card,
    .tour-bring-card,
    .tour-note {
        padding: 22px 20px;
    }

}


/* =========================================
   MOBILE POLISH - TOUR DETAIL
   ========================================= */

@media (max-width: 600px) {

    /* HERO */
    .destination-hero-content h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .destination-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* CTA */
    .final-cta-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .final-cta-actions .cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}