/* ==========================================================
   PANTAI MUTUN / MUTUN TRIP
   Main Stylesheet
   Version : 2.0
   Author  : Muhammad Raihan

   TABLE OF CONTENT

   01. ROOT & GLOBAL
   02. COMMON COMPONENTS
   03. NAVBAR
   04. HOME
       4.1 Hero
       4.2 Mutun AI
       4.3 Quick Booking
       4.4 About
       4.5 Destination
       4.6 Service
       4.7 Boat
       4.8 Final CTA
   05. DESTINATION
   06. GALLERY
   07. PRICE
   08. BOOKING SNORKELING
   09. BOOKING PRIVATE TRIP
   10. BOOKING MANCING
   11. RESPONSIVE
========================================================== */


/* ==========================================================
   01. ROOT & GLOBAL
========================================================== */

:root {
    --ocean: #0d6efd;
    --ocean-dark: #063970;
    --ocean-deep: #062c52;
    --ocean-light: #00b4ff;

    --sand: #f8f9fa;

    --text-dark: #1f2937;
    --text-muted: #64748b;

    --border-light: #e6ebf1;

    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc3545;

    --shadow-sm:
        0 5px 18px rgba(18, 63, 112, 0.06);

    --shadow-md:
        0 12px 35px rgba(18, 63, 112, 0.09);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    background: #ffffff;

    color: var(--text-dark);
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ==========================================================
   02. COMMON COMPONENTS
========================================================== */

.bg-ocean {
    background:
        linear-gradient(
            90deg,
            var(--ocean-dark),
            var(--ocean)
        );
}


.logo-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.15);

    margin-right: 10px;
}


.min-vh-75 {
    min-height: 75vh;
}


.glass-card {
    background:
        rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(8px);

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 20px;
}


.feature-box {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px;

    background:
        rgba(255, 255, 255, 0.12);

    border-radius: 16px;
}


/* ==========================================================
   03. NAVBAR
========================================================== */


/* ----------------------------------------------------------
   Desktop / Default
---------------------------------------------------------- */

.navbar > .container {
    display: flex;

    align-items: center;

    flex-wrap: nowrap;
}


.navbar-brand {
    flex-shrink: 0;
}


.navbar-collapse {
    display: flex;

    flex-basis: auto;

    flex-grow: 1;

    align-items: center;
}


.navbar-nav {
    display: flex;

    flex-direction: row;

    align-items: center;

    margin-left: auto;

    gap: 2px;
}


.navbar-nav .nav-item {
    flex: 0 0 auto;
}


.navbar-nav .nav-link {
    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease;
}


.navbar-toggler {
    display: none;
}


/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (min-width: 577px) and (max-width: 991px) {

    .navbar > .container {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        flex-wrap: nowrap !important;
    }


    .navbar-brand {
        width: auto !important;

        flex-shrink: 0 !important;

        margin-right: 1rem !important;
    }


    .navbar-collapse {
        display: flex !important;

        width: auto !important;

        flex-basis: auto !important;

        flex-grow: 1 !important;

        overflow: visible !important;

        border-top: none !important;
    }


    .navbar-nav {
        width: auto !important;

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        align-items: center !important;

        margin-left: auto !important;

        padding: 0 !important;

        gap: .25rem !important;
    }


    .navbar-nav .nav-item {
        flex: 0 0 auto !important;
    }


    .navbar-nav .nav-link {
        white-space: nowrap !important;
    }


    .navbar-toggler {
        display: none !important;
    }
}


/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 576px) {

    .navbar {
        padding-top: 9px;

        padding-bottom: 0;
    }


    .navbar > .container {
        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;
    }


    .navbar-brand {
        width: 100%;

        min-height: 45px;

        display: flex !important;

        align-items: center;

        margin-right: 0;

        padding-top: 4px;

        padding-bottom: 9px;
    }


    .navbar-collapse {
        display: block !important;

        width: 100%;

        overflow-x: auto;

        overflow-y: hidden;

        border-top:
            1px solid rgba(255, 255, 255, .12);

        scrollbar-width: none;
    }


    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }


    .navbar-nav {
        width: max-content;

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        align-items: center !important;

        gap: 2px !important;

        margin: 0 !important;

        padding: 6px 0 7px;
    }


    .navbar-nav .nav-item {
        flex: 0 0 auto;
    }


    .navbar-nav .nav-link {
        padding:
            7px 11px !important;

        border-radius: 7px;

        font-size: 12px;

        font-weight: 500;

        white-space: nowrap;

        color:
            rgba(255, 255, 255, .88);
    }


    .navbar-nav .nav-link:hover {
        background:
            rgba(255, 255, 255, .10);

        color: #ffffff;
    }


    .navbar-nav .btn-warning {
        margin-left: 4px !important;

        padding:
            7px 13px !important;

        border-radius: 7px;

        font-size: 12px;

        font-weight: 600;

        white-space: nowrap;
    }
}


/* ==========================================================
   04. HOME — MUTUN TRIP
========================================================== */


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

.mutun-home-hero {
    position: relative;

    min-height: 82vh;

    display: flex;

    align-items: center;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


.mutun-home-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(0, 180, 255, .16),
            transparent 35%
        );

    pointer-events: none;
}


.mutun-home-hero .container {
    position: relative;

    z-index: 2;
}


.mutun-hero-content {
    max-width: 720px;

    padding:
        70px 0;
}


.mutun-hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 20px;

    padding:
        8px 14px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .10);

    backdrop-filter: blur(8px);

    color: rgba(255, 255, 255, .95);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;
}


.mutun-pulse {
    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #38d9a9;

    box-shadow:
        0 0 0 5px rgba(56, 217, 169, .12);
}


.mutun-hero-content h1 {
    margin: 0 0 20px;

    max-width: 760px;

    color: #ffffff;

    font-size:
        clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.mutun-hero-description {
    max-width: 650px;

    margin: 0 0 30px;

    color:
        rgba(255, 255, 255, .84);

    font-size: 17px;

    line-height: 1.75;
}


.mutun-hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.mutun-btn-primary,
.mutun-btn-glass,
.mutun-btn-warning {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding:
        12px 21px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.mutun-btn-primary {
    background:
        linear-gradient(
            135deg,
            #0878f9,
            #1769d1
        );

    color: #ffffff;

    box-shadow:
        0 9px 24px rgba(8, 120, 249, .25);
}


.mutun-btn-primary:hover {
    transform: translateY(-2px);

    color: #ffffff;

    box-shadow:
        0 13px 30px rgba(8, 120, 249, .32);
}


.mutun-btn-glass {
    border:
        1px solid rgba(255, 255, 255, .28);

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(8px);

    color: #ffffff;
}


.mutun-btn-glass:hover {
    transform: translateY(-2px);

    background:
        rgba(255, 255, 255, .14);

    color: #ffffff;
}


.mutun-hero-info {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, .72);

    font-size: 12px;

    font-weight: 600;
}


.mutun-hero-info div {
    display: flex;

    align-items: center;

    gap: 7px;
}


.mutun-hero-info i {
    color: #38d9a9;
}


/* ==========================================================
   4.2 MUTUN AI
========================================================== */

.mutun-ai-card {
    position: relative;

    margin:
        30px 0;

    padding: 22px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, .07)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);

    color: #ffffff;
}


.mutun-ai-top {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, .12);
}


.mutun-ai-avatar {
    width: 44px;

    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #0878f9,
            #00b4ff
        );

    box-shadow:
        0 8px 20px rgba(0, 180, 255, .25);

    font-size: 20px;
}


.mutun-ai-label {
    display: block;

    margin-bottom: 2px;

    color:
        #73c8ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mutun-ai-top h4 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}


.mutun-ai-online {
    margin-left: auto;

    padding:
        5px 9px;

    border-radius: 50px;

    background:
        rgba(56, 217, 169, .12);

    color: #66e0ba;

    font-size: 10px;

    font-weight: 700;
}


.mutun-ai-message {
    display: flex;

    gap: 12px;

    margin-top: 18px;

    padding: 15px;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .08);
}


.mutun-ai-message-icon {
    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .10);

    color: #7ed8ff;
}


.mutun-ai-message p {
    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}


.mutun-ai-message span {
    display: block;

    color:
        rgba(255, 255, 255, .70);

    font-size: 11px;

    line-height: 1.65;
}


.mutun-ai-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

    margin-top: 14px;
}


.mutun-ai-options button {
    min-height: 40px;

    border:
        1px solid rgba(255, 255, 255, .12);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, .07);

    color: rgba(255, 255, 255, .86);

    font-size: 11px;

    cursor: pointer;

    transition: all .2s ease;
}


.mutun-ai-options button:hover {
    border-color:
        rgba(126, 216, 255, .45);

    background:
        rgba(126, 216, 255, .12);

    color: #ffffff;

    transform: translateY(-1px);
}


.mutun-ai-button {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 46px;

    margin-top: 14px;

    padding:
        11px 14px;

    border: none;

    border-radius: 10px;

    background:
        #ffffff;

    color: #123f70;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all .2s ease;
}


.mutun-ai-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12);
}


.mutun-ai-note {
    display: block;

    margin-top: 10px;

    color:
        rgba(255, 255, 255, .42);

    text-align: center;

    font-size: 9px;
}


/* ==========================================================
   4.3 QUICK BOOKING
========================================================== */

.mutun-quick-booking {
    position: relative;

    z-index: 5;

    margin-top: -48px;

    padding-bottom: 20px;
}


.mutun-quick-card {
    display: flex;

    align-items: center;

    gap: 35px;

    padding:
        20px 25px;

    border:
        1px solid #e2eaf2;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(18, 63, 112, .10);
}


.mutun-quick-title {
    min-width: 205px;
}


.mutun-quick-title span {
    display: block;

    margin-bottom: 4px;

    color: #1769d1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mutun-quick-title h5 {
    margin: 0;

    color: #123f70;

    font-size: 14px;

    font-weight: 700;
}


.mutun-quick-items {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    width: 100%;

    gap: 8px;
}


.mutun-quick-items a {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 8px 10px;

    border-radius: 9px;

    color: #526273;

    font-size: 11px;

    font-weight: 600;

    transition: all .2s ease;
}


.mutun-quick-items a i {
    color: #1769d1;

    font-size: 15px;
}


.mutun-quick-items a:hover {
    background: #eef6ff;

    color: #1769d1;

    transform: translateY(-2px);
}


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

.mutun-about-section {
    padding:
        90px 0;

    background: #ffffff;
}


.mutun-section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #1769d1;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.mutun-about-section h2,
.mutun-destination-section h2,
.mutun-service-section h2,
.mutun-boat-section h2,
.mutun-final-cta h2 {
    margin: 0;

    color: #123f70;

    font-size:
        clamp(28px, 3vw, 40px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.5px;
}


.mutun-about-section h2 span,
.mutun-destination-section h2 span,
.mutun-service-section h2 span,
.mutun-boat-section h2 span {
    color: #1769d1;
}


.mutun-about-text {
    max-width: 570px;

    margin:
        20px 0 0;

    color: #64748b;

    font-size: 15px;

    line-height: 1.8;
}


.mutun-text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #1769d1;

    font-size: 13px;

    font-weight: 700;
}


.mutun-text-link:hover {
    color: #0d6efd;

    gap: 12px;
}


.mutun-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.mutun-stat-card {
    padding:
        24px 20px;

    border:
        1px solid #e5edf5;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );

    box-shadow:
        0 8px 24px rgba(18, 63, 112, .04);

    transition: all .25s ease;
}


.mutun-stat-card:hover {
    transform: translateY(-4px);

    border-color: #cfe1f5;

    box-shadow:
        0 14px 30px rgba(18, 63, 112, .08);
}


.mutun-stat-icon {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    border-radius: 11px;

    background: #eaf3ff;

    color: #1769d1;

    font-size: 18px;
}


.mutun-stat-card strong {
    display: block;

    margin-bottom: 4px;

    color: #123f70;

    font-size: 24px;

    font-weight: 800;
}


.mutun-stat-card span {
    color: #718096;

    font-size: 11px;

    font-weight: 600;
}


/* ==========================================================
   4.5 DESTINATION
========================================================== */

.mutun-destination-section {
    padding:
        90px 0;

    background: #f6f9fd;
}


.mutun-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
}


.mutun-outline-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 16px;

    border:
        1px solid #cbdceb;

    border-radius: 9px;

    background: #ffffff;

    color: #1769d1;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition: all .2s ease;
}


.mutun-outline-link:hover {
    border-color: #1769d1;

    background: #1769d1;

    color: #ffffff;
}


.mutun-destination-card {
    display: block;

    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(18, 63, 112, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.mutun-destination-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(18, 63, 112, .12);
}


.mutun-destination-image {
    position: relative;

    height: 390px;

    overflow: hidden;
}


.mutun-destination-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.mutun-destination-card:hover
.mutun-destination-image img {
    transform: scale(1.06);
}


.mutun-destination-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(3, 25, 52, .82) 100%
        );
}


.mutun-destination-content {
    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 24px;
}


.mutun-destination-content > span {
    color:
        rgba(255, 255, 255, .72);

    font-size: 10px;

    font-weight: 600;
}


.mutun-destination-content h3 {
    margin:
        8px 0;

    color: #ffffff;

    font-size: 23px;

    font-weight: 800;
}


.mutun-destination-content p {
    max-width: 90%;

    margin: 0;

    color:
        rgba(255, 255, 255, .70);

    font-size: 11px;

    line-height: 1.6;
}


.mutun-destination-arrow {
    position: absolute;

    right: 22px;

    bottom: 22px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #1769d1;

    transition: all .2s ease;
}


.mutun-destination-card:hover
.mutun-destination-arrow {
    transform: rotate(45deg);
}


/* ==========================================================
   4.6 SERVICE
========================================================== */

.mutun-service-section {
    padding:
        90px 0;

    background: #ffffff;
}


.mutun-section-heading-center {
    max-width: 700px;

    margin:
        0 auto 38px;
}


.mutun-section-heading-center h2 {
    margin-bottom: 14px;
}


.mutun-section-heading-center p {
    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.7;
}


.mutun-service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 285px;

    padding:
        25px 22px;

    border:
        1px solid #e5edf5;

    border-radius: 16px;

    background: #ffffff;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.mutun-service-card:hover {
    transform: translateY(-6px);

    border-color: #cce0f5;

    box-shadow:
        0 15px 35px rgba(18, 63, 112, .09);
}


.mutun-service-number {
    position: absolute;

    top: 17px;

    right: 19px;

    color: #dce8f5;

    font-size: 24px;

    font-weight: 800;
}


.mutun-service-icon {
    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #eaf3ff,
            #d9efff
        );

    color: #1769d1;

    font-size: 23px;
}


.mutun-service-card h5 {
    margin:
        0 0 9px;

    color: #123f70;

    font-size: 16px;

    font-weight: 800;
}


.mutun-service-card p {
    margin: 0;

    color: #718096;

    font-size: 12px;

    line-height: 1.7;
}


.mutun-service-card > span {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    padding-top: 20px;

    color: #1769d1;

    font-size: 11px;

    font-weight: 700;
}


.mutun-service-card > span i {
    transition:
        transform .2s ease;
}


.mutun-service-card:hover
.mutun-service-card > span i {
    transform: translateX(4px);
}


/* ==========================================================
   4.7 BOAT
========================================================== */

.mutun-boat-section {
    padding:
        30px 0 90px;

    background: #ffffff;
}


.mutun-boat-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding:
        42px 45px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #063970,
            #0d6fae
        );

    box-shadow:
        0 20px 45px rgba(6, 57, 112, .15);
}


.mutun-boat-card .mutun-section-label {
    color: #73c8ff;
}


.mutun-boat-card h2 {
    color: #ffffff;
}


.mutun-boat-card h2 span {
    color: #70d8ff;
}


.mutun-boat-card p {
    max-width: 620px;

    margin:
        15px 0 0;

    color:
        rgba(255, 255, 255, .70);

    font-size: 13px;

    line-height: 1.7;
}


.mutun-boat-card .mutun-btn-primary {
    flex-shrink: 0;

    background: #ffffff;

    color: #123f70;

    box-shadow: none;
}


.mutun-boat-card .mutun-btn-primary:hover {
    background: #f3f8fd;

    color: #123f70;
}


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

.mutun-final-cta {
    padding:
        100px 0;

    background:
        linear-gradient(
            135deg,
            #062c52,
            #0d477d
        );

    text-align: center;

    color: #ffffff;
}


.mutun-final-cta-inner {
    max-width: 760px;

    margin: 0 auto;
}


.mutun-final-cta-inner > span {
    display: inline-block;

    margin-bottom: 15px;

    color: #73c8ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.mutun-final-cta h2 {
    color: #ffffff;

    font-size:
        clamp(30px, 4vw, 48px);
}


.mutun-final-cta h2 strong {
    color: #70d8ff;
}


.mutun-final-cta p {
    max-width: 620px;

    margin:
        20px auto 28px;

    color:
        rgba(255, 255, 255, .70);

    font-size: 14px;

    line-height: 1.8;
}


.mutun-btn-warning {
    border: none;

    background:
        linear-gradient(
            135deg,
            #ffc107,
            #f59e0b
        );

    color: #18212b;

    box-shadow:
        0 10px 25px rgba(245, 158, 11, .20);
}


.mutun-btn-warning:hover {
    transform: translateY(-2px);

    color: #18212b;

    box-shadow:
        0 15px 30px rgba(245, 158, 11, .28);
}


/* ==========================================================
   05. DESTINATION
========================================================== */


/* Detail Destination */

.destination-hero {
    position: relative;
}


.hero-image {
    position: relative;

    height: 500px;

    overflow: hidden;
}


.hero-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    background:
        rgba(0, 0, 0, .45);

    color: #ffffff;
}


.hero-overlay h1 {
    font-size: 55px;

    font-weight: 700;
}


.hero-overlay p {
    font-size: 22px;
}


/* ==========================================================
   06. GALLERY
========================================================== */

.gallery-card {
    overflow: hidden;

    border-radius: 15px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.gallery-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, .20);
}


.gallery-image {
    width: 100%;

    height: 260px;

    object-fit: cover;

    cursor: pointer;

    transition:
        transform .4s ease;
}


.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}


/* Upload Gallery */

.gallery-upload-card {
    overflow: hidden;

    border-radius: 20px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.gallery-upload-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);
}


.gallery-upload-card img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}


.gallery-upload-card .card-body {
    background: #ffffff;
}


.file-name {
    overflow: hidden;

    font-weight: 600;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.file-size {
    color: #888;

    font-size: 14px;
}


/* ==========================================================
   07. PRICE
========================================================== */

.price-section {
    background: #f8fbff;
}


.price-intro {
    width: 100%;

    padding:
        30px 20px 35px;

    background:
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #ffffff 100%
        );

    text-align: center;
}


.price-intro-content {
    width: 100%;

    max-width: 820px;

    margin:
        0 auto;

    text-align: center;
}


.price-eyebrow {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 8px;

    color: #1769d1;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.price-eyebrow span {
    width: 35px;

    height: 2px;

    border-radius: 10px;

    background: #1769d1;
}


.price-intro h2 {
    margin: 0;

    color: #123f70;

    font-size: 36px;

    line-height: 1.25;

    font-weight: 800;
}


.price-intro h2 span {
    color: #1769d1;
}


.price-intro p {
    max-width: 680px;

    margin:
        8px auto 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


.price-intro-services {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 15px;
}


.price-intro-service {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 14px;

    border:
        1px solid #dce8f5;

    border-radius: 50px;

    background: #ffffff;

    color: #526273;

    font-size: 12px;

    font-weight: 600;

    box-shadow:
        0 4px 14px rgba(18, 63, 112, .05);

    transition: all .2s ease;
}


.price-intro-service:hover {
    transform: translateY(-2px);

    border-color: #b8d3f0;

    box-shadow:
        0 7px 18px rgba(18, 63, 112, .09);
}


.intro-service-icon {
    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf3ff;

    color: #1769d1;

    font-size: 13px;
}


/* Price Card */

.price-card {
    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    overflow: hidden;

    border:
        1px solid rgba(13, 110, 253, .08);

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.price-card:hover {
    transform: translateY(-8px);

    border-color: #0d6efd20;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, .14);
}


.price-card::before {
    content: "";

    position: absolute;

    top: -100px;

    right: -90px;

    width: 220px;

    height: 220px;

    z-index: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .10);

    transition:
        transform .5s ease;
}


.price-card:hover::before {
    transform: scale(1.3);
}

.price-capacity {

    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-top: 5px;
    margin-bottom: 4px;

    padding: 4px 9px;

    border-radius: 7px;

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .18);

    color: rgba(255, 255, 255, .92);

    font-size: 10px;

    line-height: 1.2;

    white-space: nowrap;
}

.price-capacity i {
    font-size: 10px;
}

/* Price Header */

.price-card .price-header {
    position: relative;

    z-index: 2;

    min-height: 155px;

    padding:
        22px 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #ffffff;
}


.price-header::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 60px;

    background:
        linear-gradient(
            transparent,
            rgba(255, 255, 255, .08)
        );
}

/* Jarak Top Botom Card */

.price-header .service-icon {
    margin-bottom: 7px;
}

.price-header .service-type {
    margin-bottom: 5px;
}

.price-header .price-title {
    margin-bottom: 4px;
}

.price-header .price-capacity {
    margin-top: 2px;
    margin-bottom: 3px;
}

.price-header .price-price {
    margin-top: 2px;
}

.price-header .price-price small {
    margin-bottom: 0;
}

.price-header .price-price h3 {
    margin-top: 1px;
    margin-bottom: 0;
}


/* INFO DURASI & MAKSIMAL ORANG */

/* =====================================================
   PRICE INFO — DURASI KECIL
===================================================== */

.price-info {

    position: absolute;

    top: 9px;
    left: 10px;

    z-index: 5;

    display: flex;
    align-items: center;

    font-size: 11px;

    color: rgba(255, 255, 255, .85);
}


.price-info > div {

    display: inline-flex;

    align-items: center;

    gap: 3px;

    padding: 3px 5px;

    border-radius: 5px;

    background: rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(4px);

    white-space: nowrap;

    line-height: 1;
}


.price-info i {

    font-size: 5px;

    color: rgba(255, 255, 255, .85);
}

.price-card:hover .price-info > div {

    background:
        rgba(255, 255, 255, .24);
}

.price-header.ocean {
    background:
        linear-gradient(
            135deg,
            #0066cc,
            #0099ff
        );
}


.price-header.snorkeling {
    background:
        linear-gradient(
            135deg,
            #00a8e8,
            #00d4ff
        );
}


.price-header.trip {
    background:
        linear-gradient(
            135deg,
            #0f766e,
            #14b8a6
        );
}


.price-header.fishing {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #fb923c
        );
}


.price-header i {
    margin-bottom: 1px;

    font-size: 10px;
}


.service-type {
    display: inline-block;

    margin-bottom: 14px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: .85;
}


.price-title {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;

    transition:
        letter-spacing .35s ease;
}


.price-card:hover .price-title {
    letter-spacing: .5px;
}


.price-value {
    font-size: 38px;

    font-weight: 700;
}


.price-price {
    margin-top: 8px;
}


.price-price small {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 13px;

    letter-spacing: .8px;

    opacity: .85;
}


.price-price h3 {
    margin: 0;

    color: #ffffff;

    font-size: 22px;

    font-weight: 800;

    transition:
        transform .35s ease;
}


.price-card:hover .price-price h3 {
    transform: scale(1.05);
}


/* Price Body */

.price-body {
    position: relative;

    z-index: 2;

    min-height: 70px;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;
}


.price-feature li:last-child {
    border-bottom: none;
}


/* Service Icon */

.service-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 12px;
    background: var(--service-color) !important;
    backdrop-filter: blur(10px);
    transition: transform .3s ease;
}

.service-icon i {
    color: #ffffff;
    font-size: 30px;
}

.price-card:hover .service-icon {
    transform: scale(1.08);
}


/* Price Button */

.price-btn {
    width: 100%;

    padding:
        11px 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: none;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .3px;

    transition: all .3s ease;
}


.price-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(13, 110, 253, .25);
}


/* Price Badge */

.price-badge {
    position: absolute;

    top: 18px;

    right: -42px;

    z-index: 10;

    width: 150px;

    padding: 7px;

    transform: rotate(45deg);

    background: #ffc107;

    color: #222;

    text-align: center;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    pointer-events: none;
}


/* Price Section Header */

.service-section-header {
    position: relative;

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 70px;

    margin-bottom: 35px;
}


.service-section-header:first-of-type,
.service-section-header:first-child {
    margin-top: 0;
}


.service-section-header::after {
    content: "";

    position: absolute;

    left: 95px;

    bottom: -16px;

    width: 90px;

    height: 4px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #0d6efd,
            #00b4ff
        );
}


.service-icon-box {
    width: 72px;

    height: 72px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #00b4ff
        );

    color: #ffffff;

    font-size: 30px;

    box-shadow:
        0 12px 28px rgba(13, 110, 253, .18);

    transition:
        transform .3s ease;
}


.service-section-header:hover
.service-icon-box {
    transform:
        translateY(-5px)
        rotate(-4deg);
}


.service-icon-box.snorkeling {
    background:
        linear-gradient(
            135deg,
            #17c1e8,
            #0dcaf0
        );
}


.service-icon-box.trip {
    background:
        linear-gradient(
            135deg,
            #16a34a,
            #22c55e
        );
}


.service-icon-box.fishing {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #fb923c
        );
}


.service-label {
    color: #0d6efd;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.service-section-header h2 {
    margin:
        6px 0;

    font-size: 34px;

    font-weight: 700;
}


.service-section-header p {
    max-width: 650px;

    margin: 0;

    color: #6c757d;

    line-height: 1.7;
}


/* ==========================================================
   08. BOOKING SNORKELING
========================================================== */

.booking-snorkeling-section {
    padding:
        65px 0 80px;

    background: #f6f9fd;
}


.booking-snorkeling-card {
    max-width: 1100px;

    margin: 0 auto;

    padding: 40px;

    border:
        1px solid #e8eef5;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(18, 63, 112, .08);
}


.booking-snorkeling-header {
    margin-bottom: 32px;
}


.booking-snorkeling-header h2 {
    margin: 0 0 8px;

    color: #123f70;

    font-size: 30px;

    font-weight: 700;
}


.booking-snorkeling-header p {
    margin: 0;

    color: #718096;

    font-size: 15px;
}


.booking-snorkeling-field {
    margin-bottom: 20px;
}


.booking-snorkeling-field label {
    display: block;

    margin-bottom: 9px;

    color: #1f2937;

    font-size: 15px;

    font-weight: 600;
}


.booking-snorkeling-field .form-control,
.booking-snorkeling-field .form-select {
    min-height: 52px;

    padding:
        12px 15px;

    border:
        1px solid #d8e1eb;

    border-radius: 10px;

    background: #ffffff;

    color: #1f2937;

    font-size: 15px;

    transition: all .2s ease;
}


.booking-snorkeling-field .form-control:focus,
.booking-snorkeling-field .form-select:focus {
    border-color: #1677ff;

    box-shadow:
        0 0 0 3px rgba(22, 119, 255, .10);
}


.booking-snorkeling-section-title {
    margin-bottom: 20px;
}


.booking-snorkeling-section-title h4 {
    margin: 0 0 7px;

    color: #123f70;

    font-size: 21px;

    font-weight: 700;
}


.booking-snorkeling-section-title p {
    margin: 0;

    color: #718096;

    font-size: 14px;
}


.booking-snorkeling-equipment {
    height: 100%;

    padding: 18px;

    margin-bottom: 0;

    border:
        1px solid #dce4ed;

    border-radius: 14px;

    background: #ffffff;

    transition: all .2s ease;
}


.booking-snorkeling-equipment:hover {
    transform: translateY(-3px);

    border-color: #1677ff;

    box-shadow:
        0 8px 22px rgba(18, 63, 112, .09);
}


.booking-snorkeling-equipment-image {
    display: block;

    width: 100%;

    height: 160px;

    margin:
        0 auto 15px;

    border-radius: 10px;

    background: #f1f5f9;

    object-fit: cover;
}


.booking-snorkeling-equipment-name {
    margin:
        0 0 7px;

    color: #1f2937;

    font-size: 17px;

    font-weight: 700;
}


.booking-snorkeling-equipment-category {
    display: inline-block;

    margin-bottom: 9px;

    padding:
        5px 9px;

    border-radius: 6px;

    background: #eaf5ff;

    color: #1264b4;

    font-size: 12px;

    font-weight: 600;
}


.booking-snorkeling-equipment-description {
    margin:
        8px 0 10px;

    color: #718096;

    font-size: 13px;

    line-height: 1.6;
}


.booking-snorkeling-equipment-price {
    margin:
        0 0 4px;

    color: #123f70;

    font-size: 15px;

    font-weight: 700;
}


.booking-snorkeling-equipment-stock {
    margin:
        0 0 16px;

    color: #16a34a;

    font-size: 13px;

    font-weight: 600;
}


.booking-snorkeling-equipment-select {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    padding-top: 13px;

    border-top:
        1px solid #edf1f5;
}


.booking-snorkeling-equipment-select .form-check-input {
    width: 20px;

    height: 20px;

    margin: 0;

    cursor: pointer;
}


.booking-snorkeling-equipment-select span {
    color: #374151;

    font-size: 14px;

    font-weight: 600;
}


.booking-snorkeling-equipment-quantity label {
    display: block;

    margin-bottom: 7px;

    color: #4b5563;

    font-size: 13px;

    font-weight: 600;
}


.booking-snorkeling-equipment-quantity .form-control {
    min-height: 45px;

    border-radius: 9px;
}


.booking-snorkeling-equipment-card-price {
    margin-top: 13px;

    color: #15803d;

    font-size: 15px;

    font-weight: 800;
}


.booking-snorkeling-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 25px;

    padding:
        20px 22px;

    border:
        1px solid #cce8d5;

    border-radius: 12px;

    background: #f3fbf5;
}


.booking-snorkeling-total-label {
    color: #1f2937;

    font-size: 16px;

    font-weight: 700;
}


.booking-snorkeling-total-value {
    color: #15803d;

    font-size: 24px;

    font-weight: 800;
}


.booking-snorkeling-divider {
    height: 1px;

    margin: 32px 0;

    border: 0;

    background: #e5eaf0;
}


.booking-snorkeling-submit {
    margin-top: 25px;
}


.booking-snorkeling-submit .btn {
    min-height: 50px;

    padding:
        11px 28px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0878f9,
            #1769d1
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    transition: all .2s ease;
}


.booking-snorkeling-submit .btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(8, 120, 249, .25);
}


/* ==========================================================
   09. BOOKING PRIVATE TRIP
========================================================== */

.booking-private-section {
    padding:
        65px 0 80px;

    background: #f6f9fd;
}


.booking-private-card {
    max-width: 1100px;

    margin: 0 auto;

    padding: 40px;

    border:
        1px solid #e8eef5;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(18, 63, 112, .08);
}


.booking-private-header {
    margin-bottom: 32px;
}


.booking-private-header h2 {
    margin: 0 0 8px;

    color: #123f70;

    font-size: 30px;

    font-weight: 700;
}


.booking-private-header p {
    margin: 0;

    color: #718096;

    font-size: 15px;
}


.booking-private-section-title {
    margin-bottom: 20px;
}


.booking-private-section-title h5 {
    margin: 0 0 6px;

    color: #123f70;

    font-size: 18px;

    font-weight: 700;
}


.booking-private-section-title p {
    margin: 0;

    color: #718096;

    font-size: 14px;
}


.booking-private-field {
    margin-bottom: 20px;
}


.booking-private-field label {
    display: block;

    margin-bottom: 9px;

    color: #1f2937;

    font-size: 15px;

    font-weight: 600;
}


.booking-private-field .form-control,
.booking-private-field .form-select {
    min-height: 52px;

    padding:
        12px 15px;

    border:
        1px solid #d8e1eb;

    border-radius: 10px;

    background: #ffffff;

    color: #1f2937;

    font-size: 15px;

    transition: all .2s ease;
}


.booking-private-field .form-control:focus,
.booking-private-field .form-select:focus {
    border-color: #1677ff;

    box-shadow:
        0 0 0 3px rgba(22, 119, 255, .10);
}


.booking-private-package-info {
    display: none;

    margin-top: 14px;

    padding: 20px;

    border:
        1px solid #dcecfb;

    border-radius: 12px;

    background: #f7fbff;
}


.booking-private-package-item {
    padding:
        4px 12px;
}


.booking-private-package-item
+ .booking-private-package-item {
    border-left:
        1px solid #dce3ea;
}


.booking-private-package-label {
    display: block;

    margin-bottom: 5px;

    color: #718096;

    font-size: 12px;

    font-weight: 500;
}


.booking-private-package-value {
    color: #123f70;

    font-size: 16px;

    font-weight: 700;
}


.booking-private-destination-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}


.booking-private-destination-count {
    padding:
        7px 13px;

    border-radius: 20px;

    background: #edf6ff;

    color: #1264b4;

    font-size: 13px;

    font-weight: 700;
}


.booking-private-destination-grid {
    margin-top: 5px;
}


.booking-private-destination {
    position: relative;

    display: block;

    height: 100%;

    cursor: pointer;
}


.booking-private-destination input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.booking-private-destination-content {
    height: 100%;

    padding: 17px;

    border:
        1px solid #dce4ed;

    border-radius: 12px;

    background: #ffffff;

    transition: all .2s ease;
}


.booking-private-destination:hover
.booking-private-destination-content {
    transform: translateY(-2px);

    border-color: #1677ff;

    box-shadow:
        0 7px 18px rgba(22, 119, 255, .10);
}


.booking-private-destination input:checked
+ .booking-private-destination-content {
    border-color: #1677ff;

    background: #f1f8ff;

    box-shadow:
        0 0 0 2px rgba(22, 119, 255, .08);
}


.booking-private-destination input:disabled
+ .booking-private-destination-content {
    opacity: .5;

    cursor: not-allowed;
}


.booking-private-destination-top {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.booking-private-destination-check {
    width: 20px;

    height: 20px;

    flex: 0 0 20px;

    margin-top: 1px;

    border:
        2px solid #c8d3df;

    border-radius: 5px;

    background: #ffffff;

    transition: all .2s ease;
}


.booking-private-destination input:checked
+ .booking-private-destination-content
.booking-private-destination-check {
    border-color: #1677ff;

    background: #1677ff;
}


.booking-private-destination-check::after {
    content: "✓";

    display: block;

    color: #ffffff;

    font-size: 12px;

    line-height: 16px;

    text-align: center;

    opacity: 0;
}


.booking-private-destination input:checked
+ .booking-private-destination-content
.booking-private-destination-check::after {
    opacity: 1;
}


.booking-private-destination-name {
    display: block;

    color: #1f2937;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.4;
}


.booking-private-destination-location {
    display: block;

    margin-top: 5px;

    color: #718096;

    font-size: 13px;
}


.booking-private-rundown-default {
    margin: 0;

    padding:
        16px 18px;

    border:
        1px dashed #cbd5e1;

    border-radius: 10px;

    background: #f8fafc;

    color: #64748b;

    font-size: 14px;
}


.booking-private-rundown {
    display: none;

    padding: 5px 0;
}


.booking-private-rundown-item {
    position: relative;

    display: flex;

    gap: 18px;

    padding:
        16px 18px;

    border-left:
        3px solid #1677ff;

    background: #f8fbff;
}


.booking-private-rundown-item:first-child {
    border-radius:
        10px 10px 0 0;
}


.booking-private-rundown-item:last-child {
    border-radius:
        0 0 10px 10px;
}


.booking-private-rundown-time {
    min-width: 62px;

    color: #1264b4;

    font-size: 14px;

    font-weight: 800;
}


.booking-private-rundown-activity {
    color: #334155;

    font-size: 14px;

    line-height: 1.5;
}


.booking-private-trip-detail {
    margin-top: 5px;
}


.booking-private-submit {
    margin-top: 10px;
}


.booking-private-submit .btn {
    min-height: 50px;

    padding:
        11px 28px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0878f9,
            #1769d1
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    transition: all .2s ease;
}


.booking-private-submit .btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(8, 120, 249, .25);
}


.booking-private-alert {
    margin-bottom: 25px;

    border-radius: 10px;
}


/* ==========================================================
   10. BOOKING MANCING
========================================================== */

.booking-mancing-section {
    padding:
        65px 0 80px;

    background: #f6f9fd;
}


.booking-mancing-card {
    max-width: 1100px;

    margin: 0 auto;

    padding: 40px;

    border:
        1px solid #e8eef5;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(18, 63, 112, .08);
}


.booking-mancing-header {
    margin-bottom: 30px;
}


.booking-mancing-header h2 {
    margin: 0 0 8px;

    color: #123f70;

    font-size: 30px;

    font-weight: 700;
}


.booking-mancing-header p {
    margin: 0;

    color: #718096;

    font-size: 15px;
}


.booking-mancing-field {
    margin-bottom: 22px;
}


.booking-mancing-field label {
    display: block;

    margin-bottom: 9px;

    color: #1f2937;

    font-size: 15px;

    font-weight: 600;
}


.booking-mancing-field .form-control,
.booking-mancing-field .form-select {
    min-height: 52px;

    padding:
        12px 15px;

    border:
        1px solid #d8e1eb;

    border-radius: 10px;

    background-color: #ffffff;

    color: #1f2937;

    font-size: 15px;

    transition: all .2s ease;
}


.booking-mancing-field .form-control:focus,
.booking-mancing-field .form-select:focus {
    border-color: #1677ff;

    box-shadow:
        0 0 0 3px rgba(22, 119, 255, .10);
}


.booking-mancing-capacity {
    display: none;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: 10px;

    padding:
        7px 12px;

    border-radius: 8px;

    background: #edf6ff;

    color: #1264b4;

    font-size: 13px;

    font-weight: 600;
}


.booking-mancing-capacity strong {
    font-weight: 800;
}


.booking-mancing-error {
    margin-top: 7px;

    color: #dc3545;

    font-size: 13px;
}


.booking-mancing-submit {
    margin-top: 8px;
}


.booking-mancing-submit .btn {
    min-height: 50px;

    padding:
        11px 27px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0878f9,
            #1769d1
        );

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    transition: all .2s ease;
}


.booking-mancing-submit .btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(8, 120, 249, .25);
}


/* ==========================================================
   11. RESPONSIVE
========================================================== */


/* ----------------------------------------------------------
   Tablet / Small Laptop
---------------------------------------------------------- */

@media (max-width: 1200px) {

    .service-section-header h2 {
        font-size: 30px;
    }


    .price-value {
        font-size: 34px;
    }


    .mutun-hero-content h1 {
        font-size: 48px;
    }


    .mutun-quick-card {
        gap: 20px;
    }
}


/* ----------------------------------------------------------
   Tablet
---------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199px) {

    .price-card .price-header {
        min-height: 145px;

        padding: 18px;
    }


    .service-icon {
        width: 60px;

        height: 60px;
    }


    .service-icon i {
        font-size: 26px;
    }


    .service-type {
        font-size: 12px;
    }


    .price-title {
        font-size: 20px;
    }


    .price-price h3 {
        font-size: 26px;
    }


    .price-btn {
        padding: 10px;

        font-size: 14px;
    }


    .mutun-home-hero {
        min-height: 75vh;
    }


    .mutun-ai-card {
        margin-top: 45px;
    }


    .mutun-quick-card {
        flex-direction: column;

        align-items: stretch;
    }


    .mutun-quick-title {
        min-width: auto;
    }


    .mutun-quick-items {
        grid-template-columns:
            repeat(5, 1fr);
    }
}


/* ----------------------------------------------------------
   Mobile
---------------------------------------------------------- */

@media (max-width: 767px) {

    /* HOME */

    .mutun-home-hero {
        min-height: auto;
    }


    .mutun-hero-content {
        padding:
            55px 0 35px;
    }


    .mutun-hero-content h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .mutun-hero-description {
        font-size: 14px;

        line-height: 1.7;
    }


    .mutun-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .mutun-btn-primary,
    .mutun-btn-glass,
    .mutun-btn-warning {
        width: 100%;
    }


    .mutun-hero-info {
        gap: 10px 15px;

        font-size: 10px;
    }


    .mutun-ai-card {
        margin:
            10px 0 45px;

        padding: 17px;

        border-radius: 18px;
    }


    .mutun-ai-options {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .mutun-quick-booking {
        margin-top: -25px;

        padding:
            0 12px 15px;
    }


    .mutun-quick-card {
        flex-direction: column;

        align-items: stretch;

        gap: 14px;

        padding: 17px;

        border-radius: 14px;
    }


    .mutun-quick-title {
        min-width: auto;
    }


    .mutun-quick-items {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 4px;
    }


    .mutun-quick-items a {
        justify-content: flex-start;

        padding: 9px;

        font-size: 10px;
    }


    .mutun-about-section,
    .mutun-destination-section,
    .mutun-service-section {
        padding:
            65px 0;
    }


    .mutun-about-section h2,
    .mutun-destination-section h2,
    .mutun-service-section h2,
    .mutun-boat-section h2 {
        font-size: 28px;
    }


    .mutun-about-text {
        font-size: 13px;
    }


    .mutun-stat-grid {
        margin-top: 10px;
    }


    .mutun-stat-card {
        padding: 18px 15px;
    }


    .mutun-stat-card strong {
        font-size: 21px;
    }


    .mutun-section-heading {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 25px;
    }


    .mutun-destination-image {
        height: 330px;
    }


    .mutun-service-card {
        min-height: 255px;
    }


    .mutun-boat-section {
        padding:
            10px 0 65px;
    }


    .mutun-boat-card {
        flex-direction: column;

        align-items: flex-start;

        padding:
            30px 25px;
    }


    .mutun-boat-card .mutun-btn-primary {
        width: 100%;
    }


    .mutun-final-cta {
        padding:
            70px 15px;
    }


    .mutun-final-cta h2 {
        font-size: 30px;
    }


    /* DESTINATION */

    .hero-image {
        height: 350px;
    }


    .hero-overlay h1 {
        font-size: 38px;
    }


    .hero-overlay p {
        font-size: 17px;
    }


    /* PRICE */

    .price-intro {
        padding:
            20px 16px 25px;
    }


    .price-eyebrow {
        gap: 8px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .price-eyebrow span {
        width: 22px;
    }


    .price-intro h2 {
        font-size: 26px;

        line-height: 1.3;
    }


    .price-intro p {
        margin-top: 12px;

        font-size: 10px;

        line-height: 1.7;
    }


    .price-intro-services {
        gap: 7px;

        margin-top: 15px;
    }


    .price-intro-service {
        padding:
            7px 10px;

        font-size: 10px;
    }


    .intro-service-icon {
        width: 23px;

        height: 23px;

        font-size: 11px;
    }


    .service-section-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        margin-bottom: 24px;
    }


    .service-icon-box {
        width: 58px;

        height: 58px;

        border-radius: 16px;

        font-size: 24px;
    }


    .service-label {
        font-size: 11px;

        letter-spacing: 1px;
    }


    .service-section-header h2 {
        font-size: 24px;
    }


    .service-section-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    .price-card .price-header {
        min-height: 155px;

        height: auto;

        padding: 18px;
    }


    .service-icon {
        width: 56px;

        height: 56px;

        margin-bottom: 12px;
    }


    .service-icon i {
        font-size: 24px;
    }


    .service-type {
        padding:
            4px 10px;

        font-size: 10px;

        letter-spacing: 1px;
    }


    .price-title {
        font-size: 17px;

        line-height: 1.35;
    }


    .price-price h3 {
        font-size: 24px;
    }

    .price-info {
        gap: 4px 6px;
    
        margin-top: 7px;
    
        font-size: 9px;
    }
    
    
    .price-info > div {
        gap: 4px;
    
        padding: 4px 7px;
    
        border-radius: 6px;
    
        font-size: 9px;
    }
    
    
    .price-info i {
        font-size: 9px;
    }


    .price-feature li {
        font-size: 13px;
    }


    .price-btn {
        padding: 12px;

        font-size: 14px;
    }


    /* SNORKELING */

    .booking-snorkeling-section,
    .booking-private-section,
    .booking-mancing-section {
        padding:
            45px 15px 60px;
    }


    .booking-snorkeling-card,
    .booking-private-card,
    .booking-mancing-card {
        padding:
            25px 20px;

        border-radius: 16px;
    }


    .booking-snorkeling-header h2,
    .booking-private-header h2,
    .booking-mancing-header h2 {
        font-size: 25px;
    }


    .booking-snorkeling-equipment {
        padding: 15px;
    }


    .booking-snorkeling-equipment-image {
        height: 150px;
    }


    .booking-snorkeling-equipment-select {
        margin:
            15px 0;

        justify-content: flex-start;
    }


    .booking-snorkeling-total {
        flex-direction: column;

        align-items: flex-start;
    }


    .booking-snorkeling-total-value {
        font-size: 22px;
    }


    .booking-snorkeling-submit .btn,
    .booking-private-submit .btn,
    .booking-mancing-submit .btn {
        width: 100%;
    }


    .booking-snorkeling-equipment-description {
        margin:
            7px 0 9px;

        font-size: 11px;

        line-height: 1.5;
    }


    /* PRIVATE */

    .booking-private-destination-header {
        flex-direction: column;

        align-items: flex-start;
    }


    .booking-private-package-info {
        padding: 15px;
    }


    .booking-private-package-item {
        padding:
            8px 0;
    }


    .booking-private-package-item
    + .booking-private-package-item {
        border-top:
            1px solid #dce3ea;

        border-left: none;
    }


    .booking-private-rundown-item {
        gap: 12px;

        padding: 14px;
    }


    .booking-private-rundown-time {
        min-width: 52px;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .mutun-hero-content h1 {
        font-size: 32px;
    }


    .mutun-ai-options {
        grid-template-columns: 1fr;
    }


    .mutun-quick-items {
        grid-template-columns: 1fr;
    }


    .mutun-stat-grid {
        grid-template-columns: 1fr;
    }


    .mutun-destination-image {
        height: 300px;
    }


    .price-card {
        border-radius: 16px;
    }


    .price-card .price-header {
        min-height: 175px;

        padding: 18px;
    }


    .price-body {
        min-height: 70px;

        height: auto;

        padding: 16px;

        margin-top: auto;
    }


    .price-body .price-btn {
        margin-top: 0;
    }


    .service-icon {
        width: 52px;

        height: 52px;
    }


    .service-icon i {
        font-size: 22px;
    }


    .price-title {
        font-size: 15px;
    }


    .price-price small {
        font-size: 11px;
    }


    .price-price h3 {
        font-size: 22px;
    }
}


/* ==========================================================
   END OF CUSTOM.CSS
========================================================== */
