:root {
    --pg-navy: #071e2c;
    --pg-navy-2: #0b2b3d;
    --pg-blue: #0c7694;
    --pg-cyan: #21b5c8;
    --pg-sky: #eaf8fa;
    --pg-cream: #f6f4ee;
    --pg-white: #ffffff;
    --pg-text: #1f313b;
    --pg-muted: #697b84;
    --pg-border: #dce7ea;
    --pg-radius: 24px;
    --pg-shadow: 0 24px 70px rgba(6, 35, 50, .11);
}


/* ==============================================================
   HERO
============================================================== */

.pungume-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #062333,
            #0c6078
        );
}

.pungume-hero__media,
.pungume-hero__overlay {
    position: absolute;
    inset: 0;
}

.pungume-hero__media video,
.pungume-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pungume-hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 22, 32, .90) 0%,
            rgba(3, 22, 32, .68) 45%,
            rgba(3, 22, 32, .20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 22, 32, .25),
            rgba(3, 22, 32, .08)
        );
}

.pungume-hero__container {
    position: relative;
    z-index: 3;
}

.pungume-hero__content {
    max-width: 790px;
    padding: 110px 0 80px;
}

.pungume-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d8fbff;
}

.pungume-kicker span {
    display: block;
    width: 42px;
    height: 2px;
    background: #56d8e5;
}

.pungume-hero h1 {
    margin: 0;
    max-width: 850px;
    color: #fff;
    font-size: clamp(
        52px,
        7vw,
        92px
    );
    font-weight: 800;
    line-height: .98;
    letter-spacing: -4px;
}

.pungume-hero__content > p {
    max-width: 700px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
}

.pungume-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pungume-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 100px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.pungume-btn:hover {
    transform: translateY(-2px);
}

.pungume-btn--light {
    color: #071e2c !important;
    background: #fff;
}

.pungume-btn--outline {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff !important;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.pungume-btn--dark {
    color: #fff !important;
    background: var(--pg-navy);
}

.pungume-hero__scroll {
    position: absolute;
    z-index: 4;
    right: 45px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==============================================================
   QUICK FACTS
============================================================== */

.pungume-facts {
    position: relative;
    z-index: 7;
    margin-top: -48px;
}

.pungume-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--pg-shadow);
}

.pungume-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 22px;
    border-right: 1px solid var(--pg-border);
}

.pungume-fact:last-child {
    border-right: 0;
}

.pungume-fact__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pg-sky);
    color: var(--pg-blue);
    font-size: 19px;
}

.pungume-fact small,
.boat-card__price small {
    display: block;
    margin-bottom: 3px;
    color: var(--pg-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.pungume-fact strong {
    color: var(--pg-navy);
    font-size: 14px;
}


/* ==============================================================
   GENERAL
============================================================== */

.pungume-section {
    padding: 105px 0;
}

.pungume-section__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--pg-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pungume-section__title {
    margin: 0;
    color: var(--pg-navy);
    font-size: clamp(
        34px,
        4vw,
        55px
    );
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.pungume-section__lead {
    margin: 24px 0 14px;
    color: var(--pg-text);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.75;
}

.pungume-description {
    color: var(--pg-muted);
    font-size: 16px;
    line-height: 1.9;
}

.pungume-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.pungume-heading > p {
    max-width: 610px;
    margin: 16px auto 0;
    color: var(--pg-muted);
    line-height: 1.75;
}


/* ==============================================================
   ABOUT
============================================================== */

.pungume-about {
    padding-top: 130px;
}

.pungume-about__card {
    padding: 34px;
    border-radius: var(--pg-radius);
    background: var(--pg-navy);
    color: #fff;
    box-shadow: var(--pg-shadow);
}

.pungume-about__card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 23px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.pungume-about__card-top > span {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,.1);
    font-size: 22px;
}

.pungume-about__card-top small {
    color: rgba(255,255,255,.65);
}

.pungume-about__card-top h3 {
    margin: 2px 0 0;
    color: #fff;
    font-size: 24px;
}

.pungume-mini-list {
    display: grid;
    gap: 13px;
}

.pungume-mini-list > div {
    display: flex;
    gap: 11px;
    color: rgba(255,255,255,.86);
    line-height: 1.55;
}

.pungume-mini-list i {
    margin-top: 4px;
    color: #53d6e3;
}

.pungume-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
    color: #56d8e5 !important;
    text-decoration: none !important;
    font-weight: 800;
}


/* ==============================================================
   HIGHLIGHTS
============================================================== */

.pungume-highlights {
    background: #f5f9fa;
}

.pungume-highlights__grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 15px;
}

.pungume-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 125px;
    padding: 25px;
    border: 1px solid var(--pg-border);
    border-radius: 18px;
    background: #fff;
}

.pungume-highlight > span {
    color: var(--pg-cyan);
    font-size: 12px;
    font-weight: 900;
}

.pungume-highlight p {
    margin: 0;
    color: var(--pg-text);
    font-weight: 700;
    line-height: 1.6;
}


/* ==============================================================
   EXPERIENCE CARDS
============================================================== */

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

.experience-card {
    overflow: hidden;
    border: 1px solid var(--pg-border);
    border-radius: 23px;
    background: #fff;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.experience-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--pg-shadow);
}

.experience-card__media {
    position: relative;
    height: 235px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #0a5168,
            #19a9bd
        );
}

.experience-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.experience-card:hover
.experience-card__media img {
    transform: scale(1.06);
}

.experience-card__placeholder,
.boat-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.87);
}

.experience-card__placeholder i,
.boat-card__placeholder i {
    font-size: 35px;
}

.experience-card__badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.experience-card__badges span {
    padding: 7px 11px;
    border-radius: 100px;
    background: rgba(3,31,44,.83);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.experience-card__body {
    padding: 24px;
}

.experience-card__type,
.boat-card__type {
    margin-bottom: 8px;
    color: var(--pg-blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-card h3,
.boat-card h3 {
    margin: 0;
    color: var(--pg-navy);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.25;
}

.experience-card__body > p,
.boat-card__body > p {
    margin: 13px 0 0;
    color: var(--pg-muted);
    font-size: 14px;
    line-height: 1.7;
}

.experience-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
    color: var(--pg-muted);
    font-size: 12px;
}

.experience-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.experience-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding-top: 19px;
    margin-top: 20px;
    border-top: 1px solid var(--pg-border);
}

.experience-card__footer small {
    display: block;
    color: var(--pg-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.experience-card__footer strong {
    color: var(--pg-navy);
    font-size: 17px;
}

.experience-card__footer > a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-radius: 50%;
    background: var(--pg-navy);
    color: #fff !important;
    text-decoration: none !important;
}


/* ==============================================================
   BOATS
============================================================== */

.pungume-boats {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #061d2a,
            #0a3346
        );
}

.pungume-boats::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -220px;
    top: -210px;
    background: rgba(36,182,202,.08);
}

.pungume-heading--light
.pungume-section__title {
    color: #fff;
}

.pungume-heading--light > p {
    color: rgba(255,255,255,.65);
}

.pungume-heading--light
.pungume-section__eyebrow {
    color: #64dbe6;
}

.pungume-boat-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 24px;
}

.boat-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 24px 60px
        rgba(0,0,0,.14);
}

.boat-card__media {
    position: relative;
    height: 280px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #137d98,
            #51c8d3
        );
}

.boat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.boat-card:hover
.boat-card__media img {
    transform: scale(1.05);
}

.boat-card__featured,
.boat-card__private {
    position: absolute;
    top: 17px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 100px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.boat-card__featured {
    left: 17px;
    background: #083345;
}

.boat-card__private {
    right: 17px;
    background: #0788a3;
}

.boat-card__body {
    padding: 25px;
}

.boat-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.boat-card__price {
    min-width: 92px;
    text-align: right;
}

.boat-card__price strong {
    display: block;
    white-space: nowrap;
    color: var(--pg-navy);
    font-size: 17px;
}

.boat-card__price > span {
    color: var(--pg-muted);
    font-size: 10px;
}

.boat-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.boat-card__details > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 9px;
    background: #f2f7f8;
    color: #526a75;
    font-size: 11px;
    font-weight: 700;
}

.boat-card__services {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 17px;
}

.boat-card__services > span {
    padding: 6px 9px;
    border: 1px solid #dce7e9;
    border-radius: 100px;
    color: #55707a;
    font-size: 10px;
}

.boat-card__actions {
    margin-top: 22px;
}

.boat-card__actions
.pungume-btn {
    width: 100%;
}


/* ==============================================================
   GUIDE
============================================================== */

.pungume-guide {
    background: var(--pg-cream);
}

.pungume-guide-card {
    height: 100%;
    padding: 38px;
    border-radius: var(--pg-radius);
    background: #fff;
    box-shadow:
        0 18px 50px
        rgba(25,47,58,.07);
}

.pungume-guide-card--blue {
    background: var(--pg-sky);
}

.pungume-guide-card h2 {
    margin: 0 0 25px;
    color: var(--pg-navy);
    font-size: 34px;
    font-weight: 800;
}

.pungume-guide-list {
    display: grid;
    gap: 14px;
}

.pungume-guide-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--pg-text);
    line-height: 1.55;
}

.pungume-guide-list i {
    margin-top: 3px;
    color: var(--pg-blue);
}


/* ==============================================================
   IMPORTANT
============================================================== */

.pungume-important__box {
    padding: 45px;
    border-radius: 28px;
    background: var(--pg-navy);
    color: #fff;
}

.pungume-important__heading {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-bottom: 25px;
    margin-bottom: 27px;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.pungume-important__heading > span {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
    color: #5ed9e4;
    font-size: 22px;
}

.pungume-important__heading small {
    color: rgba(255,255,255,.62);
}

.pungume-important__heading h2 {
    margin: 2px 0 0;
    color: #fff;
    font-size: 30px;
}

.pungume-important__grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 15px 25px;
}

.pungume-important__grid > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pungume-important__grid i {
    margin-top: 4px;
    color: #62dae5;
}

.pungume-important__grid p {
    margin: 0;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}


/* ==============================================================
   GALLERY
============================================================== */

.pungume-gallery {
    background: #f5f9fa;
}

.pungume-gallery__grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 13px;
}

.pungume-gallery__item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 18px;
}

.pungume-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.pungume-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pungume-gallery__item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(4,28,40,.76);
    color: #fff;
    font-size: 11px;
    backdrop-filter: blur(8px);
}


/* ==============================================================
   FAQ
============================================================== */

.pungume-faq {
    background: #fff;
}

.pungume-faq__intro {
    position: sticky;
    top: 110px;
}

.pungume-faq__intro > p {
    margin: 20px 0 0;
    color: var(--pg-muted);
    line-height: 1.75;
}

.pungume-faq__list {
    border-top: 1px solid var(--pg-border);
}

.pungume-faq__item {
    border-bottom: 1px solid var(--pg-border);
}

.pungume-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--pg-navy);
    text-align: left;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.pungume-faq__question i {
    transition: transform .25s ease;
}

.pungume-faq__answer {
    display: none;
    padding: 0 42px 22px 0;
}

.pungume-faq__answer p {
    margin: 0;
    color: var(--pg-muted);
    line-height: 1.75;
}

.pungume-faq__item.is-open
.pungume-faq__answer {
    display: block;
}

.pungume-faq__item.is-open
.pungume-faq__question i {
    transform: rotate(45deg);
}


/* ==============================================================
   FINAL CTA
============================================================== */

.pungume-final {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(50,190,207,.30),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061c28,
            #0c5267
        );
}

.pungume-final__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.pungume-final__content > span {
    color: #64dbe6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pungume-final h2 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(
        38px,
        5vw,
        65px
    );
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.pungume-final p {
    max-width: 620px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}

.pungume-final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}


/* ==============================================================
   EMPTY
============================================================== */

.pungume-empty {
    padding: 55px 20px;
    border: 1px dashed #cddcdf;
    border-radius: 22px;
    text-align: center;
}

.pungume-empty > i {
    display: block;
    margin-bottom: 12px;
    color: var(--pg-blue);
    font-size: 35px;
}

.pungume-empty h3 {
    color: var(--pg-navy);
}


/* ==============================================================
   RESPONSIVE
============================================================== */

@media (max-width: 1199px) {

    .pungume-experience-grid,
    .pungume-boat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pungume-highlights__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 991px) {

    .pungume-hero {
        min-height: 680px;
    }

    .pungume-hero h1 {
        letter-spacing: -2px;
    }

    .pungume-facts {
        margin-top: 0;
    }

    .pungume-facts__grid {
        grid-template-columns:
            repeat(2, 1fr);
        border-radius: 0;
        box-shadow: none;
    }

    .pungume-fact:nth-child(2) {
        border-right: 0;
    }

    .pungume-fact:nth-child(-n+2) {
        border-bottom:
            1px solid var(--pg-border);
    }

    .pungume-faq__intro {
        position: static;
    }
}


@media (max-width: 767px) {

    .pungume-section {
        padding: 75px 0;
    }

    .pungume-hero {
        min-height: 640px;
    }

    .pungume-hero__content {
        padding-top: 100px;
    }

    .pungume-hero h1 {
        font-size: 48px;
        line-height: 1.02;
    }

    .pungume-hero__content > p {
        font-size: 16px;
    }

    .pungume-hero__scroll {
        display: none;
    }

    .pungume-facts__grid {
        grid-template-columns: 1fr;
    }

    .pungume-fact {
        min-height: 82px;
        border-right: 0;
        border-bottom:
            1px solid var(--pg-border);
    }

    .pungume-fact:last-child {
        border-bottom: 0;
    }

    .pungume-experience-grid,
    .pungume-boat-grid,
    .pungume-highlights__grid {
        grid-template-columns: 1fr;
    }

    .pungume-section__title {
        letter-spacing: -1px;
    }

    .boat-card__top {
        flex-direction: column;
    }

    .boat-card__price {
        text-align: left;
    }

    .pungume-important__box,
    .pungume-guide-card,
    .pungume-about__card {
        padding: 27px 22px;
    }

    .pungume-important__grid {
        grid-template-columns: 1fr;
    }

    .pungume-gallery__grid {
        grid-template-columns:
            repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .pungume-gallery__item--large {
        grid-column: span 2;
    }
}


@media (max-width: 480px) {

    .pungume-hero__actions,
    .pungume-final__actions {
        flex-direction: column;
    }

    .pungume-hero__actions
    .pungume-btn,
    .pungume-final__actions
    .pungume-btn {
        width: 100%;
    }

    .pungume-gallery__grid {
        display: block;
    }

    .pungume-gallery__item {
        height: 230px;
        margin-bottom: 12px;
    }
}
