.dest-v3-page {
    background: #ffffff;
}

.dest-v3-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 115px;
    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(105, 199, 213, 0.2),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #edf7f8,
            #ffffff
        );
}

.dest-v3-hero::before,
.dest-v3-hero::after {
    position: absolute;
    border: 1px solid rgba(9, 47, 73, 0.08);
    border-radius: 50%;
    content: "";
}

.dest-v3-hero::before {
    top: -330px;
    right: -160px;
    width: 720px;
    height: 720px;
}

.dest-v3-hero::after {
    right: 240px;
    bottom: -230px;
    width: 450px;
    height: 450px;
}

.dest-v3-hero-inner {
    position: relative;
    z-index: 1;
}

.dest-v3-eyebrow,
.dest-v3-line-heading span,
.dest-v3-cta-card > div > span {
    color: var(--cm-mint-500);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dest-v3-hero h1 {
    max-width: 1050px;
    margin: 13px 0 22px;
    color: var(--cm-navy-900);
    font-size: clamp(3.8rem, 8vw, 8.2rem);
    line-height: 0.9;
    letter-spacing: -0.072em;
}

.dest-v3-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--cm-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.dest-v3-count {
    position: absolute;
    right: 20px;
    bottom: 0;
    display: grid;
    width: 145px;
    height: 145px;
    place-content: center;
    border: 1px solid rgba(9, 47, 73, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--cm-shadow-sm);
    text-align: center;
    backdrop-filter: blur(12px);
}

.dest-v3-count strong {
    color: var(--cm-navy-900);
    font-size: 2.5rem;
    line-height: 1;
}

.dest-v3-count span {
    max-width: 90px;
    margin-top: 7px;
    color: var(--cm-muted);
    font-size: 0.65rem;
    font-weight: 750;
}

.dest-v3-line-section {
    padding: 95px 0 80px;
}

.dest-v3-line-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 45px;
}

.dest-v3-line-heading h2 {
    margin: 9px 0 0;
    color: var(--cm-navy-900);
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.dest-v3-line-heading p {
    margin: 0;
    color: var(--cm-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

.dest-v3-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 115px);
    overflow-x: auto;
    padding: 20px 0 28px;
    scrollbar-width: thin;
}

.dest-v3-line-track {
    position: absolute;
    top: 60px;
    right: 50px;
    left: 50px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            rgba(22, 127, 159, 0.1),
            rgba(22, 127, 159, 0.55),
            rgba(22, 127, 159, 0.1)
        );
}

.dest-v3-line-stop {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 115px;
    flex-direction: column;
    align-items: center;
    padding-inline: 8px;
    color: var(--cm-navy-900);
    text-align: center;
    text-decoration: none;
}

.dest-v3-line-stop > span {
    color: #9eacb5;
    font-size: 0.61rem;
    font-weight: 850;
}

.dest-v3-line-stop i {
    width: 21px;
    height: 21px;
    margin: 17px 0;
    border: 6px solid #ffffff;
    border-radius: 50%;
    background: var(--cm-sea-500);
    box-shadow:
        0 0 0 1px var(--cm-line),
        0 7px 18px rgba(9, 47, 73, 0.13);
    transition:
        background var(--cm-ease),
        transform var(--cm-ease);
}

.dest-v3-line-stop:hover i {
    background: var(--cm-orange-500);
    transform: scale(1.35);
}

.dest-v3-line-stop strong {
    font-size: 0.71rem;
}

.dest-v3-grid-section {
    padding: 40px 0 115px;
    background: #f5f9fa;
}

.dest-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dest-v3-card {
    overflow: hidden;
    border: 1px solid var(--cm-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--cm-shadow-sm);
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.dest-v3-card:hover {
    box-shadow: var(--cm-shadow);
    transform: translateY(-7px);
}

.dest-v3-card.is-large {
    grid-column: span 2;
}

.dest-v3-card-media {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
}

.dest-v3-card.is-large .dest-v3-card-media {
    height: 390px;
}

.dest-v3-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.dest-v3-card:hover .dest-v3-card-media img {
    transform: scale(1.045);
}

.dest-v3-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(5, 31, 49, 0.8),
            transparent 58%
        );
}

.dest-v3-card-index {
    position: absolute;
    top: 16px;
    left: 17px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 12px;
    background: rgba(6, 31, 50, 0.24);
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.dest-v3-card-title {
    position: absolute;
    right: 19px;
    bottom: 18px;
    left: 19px;
    color: #ffffff;
}

.dest-v3-card-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    letter-spacing: -0.04em;
}

.dest-v3-card-title span {
    display: inline-block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.67rem;
}

.dest-v3-card-body {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 19px;
}

.dest-v3-card-body > div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.dest-v3-card-body small,
.dest-v3-card-body span {
    color: var(--cm-muted);
    font-size: 0.62rem;
}

.dest-v3-card-body strong {
    color: var(--cm-navy-900);
    font-size: 1rem;
}

.dest-v3-card-body p {
    max-width: 220px;
    margin: 0;
    color: var(--cm-muted);
    font-size: 0.69rem;
    line-height: 1.45;
}

.dest-v3-card-body > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cm-sea-600);
    font-size: 0.67rem;
    font-weight: 850;
    text-decoration: none;
}

.dest-v3-card-body > a span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: #eef7f8;
    color: var(--cm-sea-600);
}

.dest-v3-cta {
    padding: 0 0 115px;
    background: #f5f9fa;
}

.dest-v3-cta-card {
    display: flex;
    min-height: 315px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: clamp(45px, 7vw, 85px);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(105, 199, 213, 0.22),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--cm-navy-950),
            #0c4964
        );
    color: #ffffff;
}

.dest-v3-cta-card h2 {
    max-width: 720px;
    margin: 10px 0 14px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dest-v3-cta-card p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.83rem;
    line-height: 1.7;
}

.dest-v3-cta-card > a {
    display: flex;
    min-width: 220px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 13px 12px 19px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--cm-navy-900);
    font-size: 0.72rem;
    font-weight: 850;
    text-decoration: none;
}

.dest-v3-cta-card > a i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 10px;
    background: #edf7f8;
    color: var(--cm-sea-600);
    font-style: normal;
}

@media (max-width: 950px) {
    .dest-v3-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dest-v3-card.is-large {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .dest-v3-hero {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .dest-v3-count {
        display: none;
    }

    .dest-v3-line-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dest-v3-grid {
        grid-template-columns: 1fr;
    }

    .dest-v3-card.is-large {
        grid-column: auto;
    }

    .dest-v3-card-media,
    .dest-v3-card.is-large .dest-v3-card-media {
        height: 310px;
    }

    .dest-v3-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .dest-v3-cta-card > a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dest-v3-hero h1 {
        font-size: clamp(3.4rem, 17vw, 5.2rem);
    }

    .dest-v3-card-body {
        align-items: flex-start;
        flex-direction: column;
    }
}
