/* =========================================================
   RESET & GLOBAL
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: Arial, sans-serif;
    color: #14213d;
    line-height: 1.6;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.wrap {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER & NAVIGATION
========================================================= */

#header {
    position: absolute;
    z-index: 20;
    top: 18px;
    left: 0;
    right: 0;
}

#header.fixed {
    position: fixed;
    top: 0;
    background: #071a3d;
}

.nav {
    width: min(1180px, 92%);
    min-height: 68px;
    margin: auto;
    padding: 8px 16px;

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

    background: rgba(7, 26, 61, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand b {
    display: flex;
    flex-direction: column;

    font-size: 14px;
    line-height: 1.2;
}

.brand small {
    margin-top: 3px;

    font-size: 9px;
    letter-spacing: 1px;
    opacity: 0.7;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

nav a {
    position: relative;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

nav a:hover {
    color: #f5b72b;
}

nav .active {
    color: #f5b72b;
}

nav .cta {
    padding: 9px 13px;

    background: #f5b72b;
    color: #071a3d;

    border-radius: 10px;
}

nav .cta:hover {
    background: #ffffff;
    color: #071a3d;
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

#menu {
    display: none;

    background: none;
    border: 0;

    color: #ffffff;
    font-size: 25px;

    cursor: pointer;
}


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

.hero {
    position: relative;

    min-height: 770px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #071a3d;
}

/* --- MODIFIKASI BACKGROUND GAMBAR DANAU --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    /* Gambar danau */
    background-image: url('../assets/images/hero/pemandangan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Overlay gradien agar teks terbaca, kanan lebih transparan */
    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 61, 0.97),
            rgba(7, 26, 61, 0.75),
            rgba(7, 26, 61, 0.45)
        ),
        url('../assets/images/hero/pemandangan.jpg');
        
    background-size: cover, cover;
    background-position: center, center;
}
/* -------------------------------------------- */


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

.hero-inner {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    min-height: 650px;

    margin: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 55px;
}


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

.hero-content {
    position: relative;
    z-index: 3;

    padding-top: 30px;

    color: #ffffff;

    min-width: 0;
}

.hero-content h1 {
    margin: 14px 0;

    font-size: clamp(46px, 5.5vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero-content em {
    color: #f5b72b;
    font-style: normal;
}

.hero-content p {
    max-width: 600px;
    margin: 20px 0 28px;

    color: #dce5f2;
    font-size: 15px;
}


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

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}


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

.hero-image {
    position: relative;

    width: 100%;

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

.hero-image img {
    width: 100%;
    max-width: 570px;

    height: auto;

    object-fit: contain;

    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
    display: block;

    color: #0b55a3;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.gold {
    color: #f5b72b;
}

.muted {
    color: #69758a;
    font-size: 13px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 3px;
    padding: 13px 20px;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

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

.goldbtn {
    background: #f5b72b;
    color: #071a3d;
}

.goldbtn:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ghost {
    border: 1px solid rgba(255, 255, 255, 0.33);

    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.ghost:hover {
    background: #ffffff;
    color: #071a3d;
}

.navybtn {
    background: #071a3d;
    color: #ffffff;
}

.navybtn:hover {
    background: #0b55a3;
    box-shadow: 0 8px 20px rgba(7, 26, 61, 0.15);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 90px 0;
}

.content {
    padding: 75px 0;
}

.soft {
    background: #f6f7f3;
}

.dark {
    background: #071a3d;
    color: #ffffff;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.head {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.head h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.head p {
    max-width: 450px;

    color: #69758a;
    font-size: 13px;
}


/* =========================================================
   TOUR CARDS
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

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

    box-shadow:
        0 18px 40px rgba(7, 26, 61, 0.10);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.card-img {
    position: relative;

    width: 100%;
    aspect-ratio: 2 / 3;

    overflow: hidden;

    background: #eaf0f8;
}

.card-img img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    background: #eaf0f8;

    transition: 0.4s ease;
}

.card:hover .card-img img {
    transform: scale(1.03);
}


/* =========================================================
   BADGE
========================================================= */

.badge {
    position: absolute;
    z-index: 2;

    top: 14px;
    left: 14px;

    padding: 6px 10px;

    background: #ffffff;

    border-radius: 99px;

    font-size: 9px;
    font-weight: 900;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD BODY
========================================================= */

.card-body {
    padding: 20px;
}

.package-card .card-body {
    padding: 16px 20px 20px;
}

.package-booking {
    display: block;
    width: 100%;
    text-align: center;
}

.card-body h3 {
    font-size: 18px;
}

.card-body p {
    margin: 7px 0 14px;

    color: #69758a;
    font-size: 12px;
}

.card-foot {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.card-foot strong {
    display: block;

    color: #0b55a3;
    font-size: 19px;
}

.small {
    padding: 8px 11px;

    border: 1px solid #e5e9ef;
    border-radius: 9px;

    font-size: 11px;
    font-weight: bold;
}


/* =========================================================
   ARMADA / FLEET
========================================================= */

.fleet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.fleet-card {
    padding: 15px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

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

    box-shadow:
        0 15px 35px rgba(7, 26, 61, 0.08);
}

.fleet-img {
    height: 145px;

    overflow: hidden;

    background: #edf4ff;
    border-radius: 13px;
}

.fleet-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.04);
}

.fleet-card h3 {
    margin-top: 14px;
    font-size: 17px;
}

.fleet-card p {
    color: #69758a;
    font-size: 12px;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.features article {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 16px;

    box-shadow: 0 8px 22px rgba(7, 26, 61, 0.04);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.features article:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(245, 183, 43, 0.65);
    box-shadow: 0 15px 30px rgba(7, 26, 61, 0.08);
}

.features .feature-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: rgba(245, 183, 43, 0.13);
    color: #f5b72b;

    border-radius: 11px;

    font-style: normal;
}

.features .feature-icon svg {
    width: 25px;
    height: 25px;
}

.features h3 {
    margin: 14px 0 5px;
    color: #14213d;
    font-size: 15px;
}

.features p {
    color: #69758a;
    font-size: 12px;
}


/* =========================================================
   HOTEL PROMO SECTION
========================================================= */

.hotel-promo-section {
    background: linear-gradient(180deg, #f5f7fb 0%, #eef3fb 100%);
}

.hotel-promo-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 28px;
}

.hotel-promo-copy {
    padding-right: 12px;
}

.hotel-promo-copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hotel-promo-copy p {
    margin-bottom: 22px;
    color: #5c6780;
    font-size: 14px;
}

.hotel-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hotel-promo-card {
    padding: 24px 20px;
    background: #ffffff;
    border: 1px solid rgba(20, 33, 61, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(9, 24, 48, 0.06);
}

.hotel-promo-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: rgba(245, 183, 43, 0.12);
    border-radius: 12px;
    color: #071a3d;
    font-size: 22px;
    font-weight: 700;
}

.hotel-promo-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.hotel-promo-card p {
    color: #5f6d85;
    font-size: 12px;
}


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

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 50px;

    background: linear-gradient(
        120deg,
        #071a3d,
        #0b55a3
    );

    border-radius: 25px;

    color: #ffffff;
}

.cta-box h2 {
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.1;
}

.cta-box p {
    color: #d5deea;
    font-size: 13px;
}

.bottom-cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
}


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

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.gallery div {
    height: 250px;

    overflow: hidden;

    background: #eaf0f8;

    border-radius: 16px;
}

.gallery img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.gallery div:hover img {
    transform: scale(1.04);
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

#kontak {
    scroll-margin-top: 95px;
}

.contact-section {
    position: relative;
}

.contact-section .head {
    margin-bottom: 38px;
}

.contact-panel,
.location-panel {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-panel:hover,
.location-panel:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(7, 26, 61, 0.08);
}

.contact-panel h2,
.location-panel h2 {
    margin-top: 5px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}

.contact-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: #f1f5fa;
    color: #0b55a3;

    border-radius: 11px;

    font-size: 18px;
}

.contact-item strong {
    display: block;

    margin-bottom: 2px;

    color: #14213d;

    font-size: 12px;
}

.contact-item .muted {
    margin: 0;
}

.contact-btn {
    margin-top: 5px;
}

.location-panel {
    overflow: hidden;
}

.map {
    width: 100%;

    overflow: hidden;

    margin: 18px 0;

    background: #eaf0f8;

    border-radius: 14px;
}

.map iframe {
    display: block;

    width: 100%;
    height: 350px;

    border: 0;
}

.map-btn {
    margin-bottom: 0;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================================================
   FORM
========================================================= */

.form {
    display: grid;
    gap: 13px;
}

.form label {
    font-size: 11px;
    font-weight: bold;
}

.form input,
.form textarea,
.form select {
    width: 100%;

    padding: 12px;

    border: 1px solid #dce2e9;
    border-radius: 10px;

    font: inherit;
    font-size: 12px;

    outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #0b55a3;
}

.form textarea {
    min-height: 130px;
    resize: vertical;
}


/* =========================================================
   NOTICE
========================================================= */

.notice {
    padding: 25px;

    text-align: center;

    background: #f8fafc;

    border: 1px dashed #cbd4df;
    border-radius: 15px;

    color: #69758a;
}


/* =========================================================
   DETAIL PACKAGE
========================================================= */

.detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(280px, 0.7fr);

    gap: 30px;

    align-items: start;
}

.panel {
    padding: 24px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 18px;
}

.panel h2 {
    font-size: 30px;
    line-height: 1.15;
}

.about-overview .panel h2 {
    margin: 10px 0 16px;
}

.about-overview .muted + .muted {
    margin-top: 13px;
}

.service-list {
    display: grid;
    gap: 0;

    margin-top: 22px;
    padding: 0;

    text-align: left;
    background: #f8fafc;
    border: 1px solid #e5e9ef;
}

.service-list strong {
    padding: 13px 16px;

    color: #14213d;
    font-size: 12px;

    border-bottom: 1px solid #e5e9ef;
}

.service-list strong:last-child {
    border-bottom: 0;
}

.detail-img {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 25px;

    overflow: hidden;

    background: #f1f4f8;

    border-radius: 18px;
}

.detail-img img {
    width: 100%;
    height: auto;

    object-fit: contain;
}

.price {
    margin: 10px 0 18px;

    color: #0b55a3;

    font-size: 28px;
    font-weight: 900;
}


/* =========================================================
   TABLE
========================================================= */

.table-wrap {
    overflow-x: auto;

    border: 1px solid #e5e9ef;
    border-radius: 15px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;

    border-bottom: 1px solid #e5e9ef;

    text-align: left;

    font-size: 12px;
    white-space: nowrap;
}

.table th {
    background: #f3f6fa;
}

.table-price {
    color: #0b55a3;
}

.table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    background: #f5b72b;
    color: #071a3d;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   PRICELIST - TOUR
========================================================= */

.price-table {
    display: grid;
    gap: 14px;
}

.price-card {
    display: grid;

    grid-template-columns: 70px minmax(0, 1fr) auto;

    align-items: center;

    gap: 20px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

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

    box-shadow:
        0 15px 35px rgba(7, 26, 61, 0.10);
}

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

    display: grid;
    place-items: center;

    background: #f4f7fb;

    border-radius: 15px;

    font-size: 30px;
}

.price-info span {
    display: block;

    color: #0b55a3;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.price-info h3 {
    margin: 3px 0;

    color: #14213d;

    font-size: 20px;
}

.price-info p {
    color: #69758a;
    font-size: 12px;
}

.price-value {
    min-width: 170px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-value small {
    color: #69758a;
    font-size: 10px;
}

.price-value strong {
    margin-bottom: 7px;

    color: #0b55a3;

    font-size: 20px;
    font-weight: 900;
}

.price-value .small {
    display: inline-flex;

    background: #f5b72b;
    color: #071a3d;

    border: 0;
}

.price-note {
    margin-top: 18px;
    padding: 15px 18px;

    background: #f6f8fb;

    border-radius: 12px;

    color: #69758a;
    font-size: 11px;
}

.price-note strong {
    color: #14213d;
}


/* =========================================================
   PRICELIST - HOTEL
========================================================= */

.hotel-prices {
    display: grid;

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

    gap: 18px;
}

.hotel-price-card {
    position: relative;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(7, 26, 61, 0.05);
}

.hotel-price-card.featured {
    border: 2px solid #f5b72b;

    transform: translateY(-6px);
}

.hotel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.hotel-label {
    padding: 6px 9px;

    background: #eef5ff;
    color: #0b55a3;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.7px;
}

.hotel-price-card.featured .hotel-label {
    background: #f5b72b;
    color: #071a3d;
}

.hotel-stars {
    color: #f5b72b;

    font-size: 14px;
    letter-spacing: 2px;
}

.hotel-price-card h3 {
    margin-bottom: 8px;

    color: #14213d;
    font-size: 22px;
}

.hotel-price-card > p {
    min-height: 58px;

    color: #69758a;
    font-size: 12px;
}

.hotel-price {
    display: flex;
    flex-direction: column;

    margin: 20px 0;
}

.hotel-price small {
    color: #69758a;
    font-size: 10px;
}

.hotel-price strong {
    color: #0b55a3;

    font-size: 27px;
    line-height: 1.2;
}

.hotel-price span {
    color: #69758a;
    font-size: 10px;
}

.hotel-price-card .btn {
    width: 100%;
    margin: 0;
}


/* =========================================================
   HOTEL DESTINATION
========================================================= */

.hotel-destination {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;
    padding: 30px;

    background: #071a3d;

    border-radius: 20px;

    color: #ffffff;
}

.hotel-destination h3 {
    margin: 4px 0;
    font-size: 24px;
}

.hotel-destination p {
    max-width: 650px;

    color: #c3cfdf;
    font-size: 12px;
}


/* =========================================================
   PRICE INFORMATION
========================================================= */

.price-information {
    margin-top: 18px;
    padding: 15px 18px;

    background: #f6f8fb;

    border-radius: 12px;

    color: #69758a;

    font-size: 11px;
}

.price-information strong {
    color: #14213d;
}


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

.page-hero {
    padding: 170px 0 80px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 61, 0.94),
            rgba(7, 26, 61, 0.70),
            rgba(7, 26, 61, 0.44)
        ),
        url('../assets/images/hero/pemandangan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 650px;
    margin-top: 10px;

    color: #d5deea;
}


/* =========================================================
   FILTER
========================================================= */

.filters {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 24px;
}

.filter {
    padding: 9px 14px;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 99px;

    font-size: 11px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.25s ease;
}

.filter:hover {
    border-color: #0b55a3;
}

.filter.active {
    background: #071a3d;
    color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 55px 0 20px;

    background: #06142f;

    color: #aebbd0;
}

.footer-grid {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 35px;
}

.footer h3,
.footer h4 {
    color: #ffffff;
}

.footer h3 {
    font-size: 15px;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 13px;
}

.footer p,
.footer a,
.footer span {
    font-size: 12px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer a {
    transition: color 0.25s ease;
}

.footer a:hover {
    color: #f5b72b;
}

.footer-bottom {
    grid-column: 1 / -1;

    display: flex;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}


/* =========================================================
   WHATSAPP
========================================================= */

.wa {
    position: fixed;
    z-index: 99;

    right: 20px;
    bottom: 20px;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    background: #20bd5a;
    color: #ffffff;

    border-radius: 50%;

    font-size: 27px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wa svg {
    width: 29px;
    height: 29px;
}

.wa:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.23);
}


/* =========================================================
   ARMADA SHOWCASE
========================================================= */

.fleet-showcase-section {
    padding: 80px 0 90px;
    background: #ffffff;
}

.fleet-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;

    margin-bottom: 40px;
}

.fleet-heading h2 {
    margin-top: 5px;

    color: #14213d;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.fleet-heading p {
    max-width: 500px;

    color: #69758a;
    font-size: 13px;
}

.fleet-showcase {
    display: grid;

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

    gap: 18px;
}

.fleet-showcase-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(7, 26, 61, 0.06);

    transition: 0.3s ease;
}

.fleet-showcase-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(7, 26, 61, 0.13);
}

.fleet-card-image {
    position: relative;

    height: 230px;

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

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #eef5ff 0%,
            #dfeaf7 100%
        );
}

.fleet-card-image img {
    position: relative;
    z-index: 2;

    width: 94%;
    height: 175px;

    margin-bottom: 0;

    object-fit: contain;

    transition: 0.35s ease;
}

.fleet-showcase-card:hover
.fleet-card-image img {
    transform: scale(1.04);
}

.fleet-showcase-content {
    padding: 20px 20px 24px;

    text-align: center;
}

.fleet-showcase-content h3 {
    color: #071a3d;

    font-size: 18px;
    line-height: 1.2;

    letter-spacing: 0.3px;
}

.fleet-showcase-content strong {
    display: block;

    margin-top: 5px;

    color: #0b55a3;

    font-size: 13px;
}

.fleet-showcase-content p {
    margin-top: 9px;

    color: #69758a;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   FLEET BENEFITS
========================================================= */

.fleet-benefit-section {
    padding: 60px 0;

    background: #071a3d;

    color: #ffffff;
}

.fleet-benefit-title {
    text-align: center;

    margin-bottom: 35px;
}

.fleet-benefit-title h2 {
    margin-top: 5px;

    color: #ffffff;

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

.fleet-benefits {
    display: grid;

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

    gap: 15px;

    padding: 8px;

    border: 1px solid rgba(245, 183, 43, 0.5);

    border-radius: 20px;
}

.fleet-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fleet-benefit:last-child {
    border-right: 0;
}

.fleet-benefit-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(245, 183, 43, 0.8);
    border-radius: 10px;

    color: #f5b72b;
}

.fleet-benefit-icon svg {
    width: 25px;
    height: 25px;
}

.fleet-benefit h3 {
    color: #ffffff;

    font-size: 13px;

    line-height: 1.25;
}

.fleet-benefit h3 span {
    display: block;

    color: #f5b72b;
}

.fleet-benefit p {
    margin-top: 5px;

    color: #c0ccdd;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   GLOBAL SERVICE
========================================================= */

.fleet-global-section {
    padding: 65px 0;

    background: #ffffff;
}

.fleet-global {
    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 30px 35px;

    background:
        linear-gradient(
            120deg,
            #f7f9fc,
            #ffffff
        );

    border-radius: 22px;

    border: 1px solid #e5e9ef;
}

.global-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    background: #071a3d;

    border-radius: 50%;

    color: #f5b72b;

    font-size: 32px;
}

.fleet-global h2 {
    margin-top: 3px;

    color: #071a3d;

    font-size: 30px;

    line-height: 1.1;
}

.fleet-global p {
    max-width: 620px;

    margin-top: 7px;

    color: #69758a;

    font-size: 12px;
}

.global-message {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 20px;

    background: #f5b72b;

    border-radius: 12px;

    color: #071a3d;
}

.global-message span {
    font-size: 25px;
}

.global-message strong {
    font-size: 13px;

    line-height: 1.35;
}


/* =========================================================
   TABLET - 1100px
========================================================= */

@media (max-width: 1100px) {

    .hero-inner {
        gap: 35px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 5vw, 64px);
    }

    nav {
        gap: 9px;
    }

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

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

}


/* =========================================================
   TABLET - 850px
========================================================= */

@media (max-width: 850px) {

    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }

    .hero-inner {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        padding-top: 0;
        text-align: center;
    }

    .hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 650px;
    }

    .head {
        align-items: flex-start;
    }

    .hotel-prices {
        grid-template-columns: 1fr;
    }

    .hotel-price-card.featured {
        transform: none;
    }

    .detail {
        grid-template-columns: 1fr;
    }

    .two {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE - 760px
========================================================= */

@media (max-width: 760px) {

    /* HEADER */

    #header {
        top: 8px;
    }

    .nav {
        min-height: 60px;
    }

    #menu {
        display: block;
    }

    nav {
        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: #071a3d;

        border-radius: 14px;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.18);
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 11px;
    }


    /* HERO */

    .hero {
        min-height: auto;
        padding: 135px 0 60px;
    }

    /* --- MODIFIKASI: HILANGKAN GAMBAR DI MOBILE --- */
    .hero-inner {
        width: 92%;

        display: flex;
        flex-direction: column; 

        gap: 20px;

        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        padding-top: 0;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .hero-content p {
        margin: 18px 0 24px;
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }
    /* -------------------------------------------------- */


    /* SECTION */

    .section {
        padding: 65px 0;
    }

    .head {
        display: block;
    }

    .head p {
        margin-top: 12px;
    }


    /* CARDS */

    .cards,
    .gallery {
        grid-template-columns: 1fr;
    }


    /* FLEET */

    .fleet {
        grid-template-columns: 1fr 1fr;
    }


    /* FEATURES */

    .features {
        grid-template-columns: 1fr 1fr;
    }


    /* TWO */

    .two {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-panel,
    .location-panel {
        padding: 22px;
    }

    .map iframe {
        height: 300px;
    }

    .contact-item {
        gap: 10px;
    }


    /* CTA */

    .cta-box {
        display: block;
        padding: 35px 25px;
    }

    .cta-box .btn {
        margin-top: 20px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-top: 7px;
    }


    /* PRICELIST TOUR */

    .price-card {
        grid-template-columns: 55px minmax(0, 1fr);

        gap: 14px;

        padding: 17px;
    }

    .price-icon {
        width: 52px;
        height: 52px;

        font-size: 25px;
    }

    .price-info h3 {
        font-size: 17px;
    }

    .price-info p {
        font-size: 11px;
    }

    .price-value {
        grid-column: 1 / -1;

        width: 100%;

        align-items: flex-start;

        padding-top: 13px;

        border-top: 1px solid #e5e9ef;
    }

    .price-value strong {
        font-size: 19px;
    }

    .price-value .small {
        margin-top: 4px;
    }


    /* HOTEL */

    .hotel-price-card {
        padding: 22px;
    }

    .hotel-price-card h3 {
        font-size: 20px;
    }

    .hotel-price strong {
        font-size: 24px;
    }


    /* HOTEL DESTINATION */

    .hotel-destination {
        display: block;
        padding: 25px;
    }

    .hotel-destination h3 {
        font-size: 21px;
    }

    .hotel-destination .btn {
        width: 100%;
        margin-top: 18px;
    }


    /* TABLE */

    .table th,
    .table td {
        padding: 12px;
        font-size: 11px;
    }


    /* DETAIL IMAGE */

    .detail-img {
        max-width: 100%;
    }


    /* --- PERBAIKAN HOTEL PROMO DI MOBILE --- */
    .hotel-promo-wrap {
        grid-template-columns: 1fr; /* Ubah jadi 1 kolom */
        gap: 30px;
    }

    .hotel-promo-copy {
        padding-right: 0; /* Hapus padding kanan berlebih */
    }

    .hotel-promo-grid {
        grid-template-columns: 1fr; /* Kartu jadi 1 kolom bertumpuk */
    }

    .hotel-promo-card {
        padding: 24px;
    }
    /* --------------------------------------- */

}


/* =========================================================
   SMALL MOBILE - 480px
========================================================= */

@media (max-width: 480px) {

    .hero {
        padding-top: 125px;
    }

    .hero-content h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 3px 0;
    }

    .fleet,
    .features {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }


    /* PRICE CARD */

    .price-card {
        padding: 15px;
    }

    .price-icon {
        width: 48px;
        height: 48px;

        font-size: 22px;
    }

    .price-info h3 {
        font-size: 16px;
    }

    .price-info p {
        font-size: 10px;
    }


    /* HOTEL CARD */

    .hotel-price-card {
        padding: 20px;
    }

    .hotel-top {
        margin-bottom: 15px;
    }


    /* PAGE HERO */

    .page-hero {
        padding: 145px 0 65px;
    }

    .page-hero h1 {
        font-size: 36px;
    }


    /* PANEL */

    .panel {
        padding: 20px;
    }

    .panel h2 {
        font-size: 25px;
    }


    /* CONTACT */

    .contact-item {
        align-items: flex-start;
    }

    .contact-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .contact-item .muted {
        font-size: 12px;
        word-break: break-word;
    }

    .map iframe {
        height: 260px;
    }

    .contact-btn,
    .map-btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

}


/* =========================================================
   ARMADA SHOWCASE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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

    .fleet-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .fleet-benefits {
        grid-template-columns: 1fr;
    }

    .fleet-benefit {
        border-right: 0;

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

    .fleet-benefit:last-child {
        border-bottom: 0;
    }

    .fleet-global {
        grid-template-columns: auto 1fr;
    }

    .global-message {
        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .fleet-showcase-section {
        padding: 60px 0;
    }

    .fleet-showcase {
        grid-template-columns: 1fr;
    }

    .fleet-card-image {
        height: 250px;
    }

    .fleet-card-image img {
        height: 195px;
    }

    .fleet-heading h2 {
        font-size: 30px;
    }

    .fleet-global {
        display: block;

        padding: 25px;
    }

    .global-icon {
        margin-bottom: 18px;
    }

    .fleet-global h2 {
        font-size: 27px;
    }

    .global-message {
        margin-top: 20px;
    }

}


@media (max-width: 480px) {

    .fleet-showcase-card {
        border-radius: 16px;
    }

    .fleet-card-image {
        height: 225px;
    }

    .fleet-card-image img {
        height: 175px;
    }

    .fleet-showcase-content {
        padding: 18px;
    }

    .fleet-showcase-content h3 {
        font-size: 17px;
    }

    .fleet-benefit {
        padding: 18px 12px;
    }

}

/* =========================================================
   KONTAK - SCROLL POSITION
========================================================= */

html {
    scroll-behavior: smooth;
}

#kontak {
    scroll-margin-top: 100px;
}

@media (max-width: 760px) {

    #kontak {
        scroll-margin-top: 80px;
    }

}

/* =========================================================
   MOBILE NAVIGATION FIX
========================================================= */

@media (max-width: 768px) {

    header {
        position: relative;
        z-index: 9999;
    }

    .nav {
        position: relative;
        z-index: 10000;
    }

    #menu {
        position: relative;
        z-index: 10002;
        cursor: pointer;
    }

    #nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        z-index: 10001;

        display: none;

        pointer-events: none;
    }

    #nav.open {
        display: flex;

        pointer-events: auto;
    }

    #nav a {
        position: relative;
        z-index: 10002;

        pointer-events: auto;
        cursor: pointer;
    }

}
/* =========================================================
   BOOKING HOTEL
   LUHINEZ HAPPY TOUR
   ========================================================= */

/* =========================================================
   PAGE BASE
   ========================================================= */

.hotel-hero,
.hotel-intro,
.hotel-services,
.hotel-benefits,
.hotel-note,
.hotel-cta-section,
.footer {
    width: 100%;
}

.hotel-hero .wrap,
.hotel-intro .wrap,
.hotel-services .wrap,
.hotel-benefits .wrap,
.hotel-note .wrap,
.hotel-cta-section .wrap {
    width: min(1180px, 92%);
    margin-left: auto;
    margin-right: auto;
}


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

.hotel-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    padding: 125px 0 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(245, 183, 43, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071a3d 0%,
            #0b2852 55%,
            #163762 100%
        );

    color: #ffffff;
}


/* Dekorasi */

.hotel-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    top: -210px;

    border: 1px solid rgba(245, 183, 43, 0.15);

    border-radius: 50%;
}

.hotel-hero::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: 70px;
    bottom: -210px;

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

    border-radius: 50%;
}


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

.hotel-hero .wrap {
    position: relative;
    z-index: 2;
}

.hotel-hero-content {
    width: 100%;
    max-width: 760px;
}


/* Label */

.hotel-hero .eyebrow {
    display: inline-block;

    margin-bottom: 17px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


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

.hotel-hero h1 {
    margin: 0;

    max-width: 760px;

    /*
       Dibuat lebih kecil agar seimbang
       dengan halaman Index / Armada
    */
    font-size: clamp(42px, 4.5vw, 62px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 800;

    color: #ffffff;
}

.hotel-hero h1 span {
    display: block;

    color: #f5b72b;
}


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

.hotel-hero p {
    max-width: 620px;

    margin: 22px 0 28px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;

    line-height: 1.7;
}


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

.hotel-hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.hotel-hero-buttons .btn {
    margin: 0;

    min-height: 48px;

    padding: 0 21px;

    font-size: 13px;
}


/* Tombol outline */

.hotel-outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);

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

    color: #ffffff;
}

.hotel-outline-btn:hover {
    background: #ffffff;

    color: #071a3d;
}


/* =========================================================
   INTRO
   ========================================================= */

.hotel-intro {
    padding: 85px 0;

    background: #ffffff;
}

.hotel-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, 0.9fr);

    align-items: center;

    gap: 65px;
}

.hotel-intro-text {
    max-width: 620px;
}


/* Intro heading */

.hotel-intro-text h2 {
    margin: 10px 0 20px;

    color: #0b2852;

    font-size: clamp(34px, 3.5vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.hotel-intro-text h2 span {
    color: #e5a819;
}

.hotel-intro-text p {
    margin: 0 0 14px;

    color: #667085;

    font-size: 14px;

    line-height: 1.75;
}


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

.hotel-highlight {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.hotel-highlight-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 21px;

    background: #ffffff;

    border: 1px solid #e5e9ef;

    border-radius: 15px;

    box-shadow:
        0 7px 22px rgba(7, 26, 61, 0.05);

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

.hotel-highlight-item:hover {
    transform: translateY(-3px);

    border-color: rgba(229, 168, 25, 0.45);

    box-shadow:
        0 13px 30px rgba(7, 26, 61, 0.08);
}

.hotel-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #071a3d;

    color: #f5b72b;

    font-size: 12px;

    font-weight: 800;
}

.hotel-highlight-item h3 {
    margin: 1px 0 5px;

    color: #0b2852;

    font-size: 16px;

    font-weight: 700;
}

.hotel-highlight-item p {
    margin: 0;

    color: #727b89;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   SERVICES
   ========================================================= */

.hotel-services {
    padding: 85px 0;

    background: #f6f8fb;
}

.section-heading {
    max-width: 680px;

    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 9px 0 11px;

    color: #0b2852;

    font-size: clamp(32px, 3.5vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.4px;

    font-weight: 800;
}

.section-heading p {
    margin: 0;

    color: #69758a;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.hotel-service-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.hotel-service-card {
    position: relative;

    min-height: 250px;

    padding: 24px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e7ed;

    border-radius: 16px;

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

.hotel-service-card::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -50px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: rgba(245, 183, 43, 0.09);

    pointer-events: none;
}

.hotel-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(229, 168, 25, 0.45);

    box-shadow:
        0 16px 35px rgba(7, 26, 61, 0.08);
}

.service-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}

.service-number {
    color: #aeb5bf;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.service-symbol {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    background: #071a3d;

    border-radius: 12px;

    color: #f5b72b;

    font-size: 20px;
}

.hotel-service-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 9px;

    color: #0b2852;

    font-size: 17px;

    font-weight: 700;
}

.hotel-service-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #737b87;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.hotel-benefits {
    padding: 85px 0;

    background: #ffffff;
}

.benefit-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.benefit-card {
    min-height: 225px;

    padding: 25px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #071a3d,
            #0b2852
        );

    color: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 17px 33px rgba(7, 26, 61, 0.14);
}

.benefit-card > span {
    display: inline-flex;

    margin-bottom: 36px;

    color: #f5b72b;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}

.benefit-card h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}

.benefit-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PRICE NOTE
   ========================================================= */

.hotel-note {
    padding: 0 0 85px;

    background: #ffffff;
}

.hotel-note-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 36px 42px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #0a244a,
            #123765
        );

    color: #ffffff;
}

.hotel-note-inner h2 {
    margin: 9px 0 10px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.2;
}

.hotel-note-inner p {
    max-width: 700px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;

    line-height: 1.7;
}

.hotel-note-badge {
    flex: 0 0 175px;

    padding: 19px;

    text-align: center;

    border: 1px solid rgba(245, 183, 43, 0.35);

    border-radius: 13px;

    background: rgba(245, 183, 43, 0.08);
}

.hotel-note-badge strong {
    display: block;

    margin-bottom: 4px;

    color: #f5b72b;

    font-size: 15px;
}

.hotel-note-badge span {
    color: rgba(255, 255, 255, 0.70);

    font-size: 10px;
}


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

.hotel-cta-section {
    padding: 0 0 85px;

    background: #ffffff;
}

.hotel-cta {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 42px;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            120deg,
            #071a3d,
            #0b55a3
        );

    color: #ffffff;
}

.hotel-cta::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -180px;

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

    border-radius: 50%;
}

.hotel-cta > div {
    position: relative;
    z-index: 2;

    max-width: 700px;
}

.hotel-cta h2 {
    margin: 9px 0 11px;

    color: #ffffff;

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

    line-height: 1.1;

    letter-spacing: -1px;
}

.hotel-cta p {
    margin: 0;

    color: #d5deea;

    font-size: 12px;

    line-height: 1.75;
}

.hotel-cta .btn {
    position: relative;
    z-index: 3;

    flex: 0 0 auto;

    margin: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    width: 100%;

    padding: 55px 0 20px;

    background: #06142f;

    color: #aebbd0;
}

.footer-grid {
    width: min(1180px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 35px;
}

.footer-brand .brand {
    display: inline-flex;

    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;

    margin: 0;

    color: #8e9db4;

    font-size: 11px;

    line-height: 1.7;
}

.footer h4 {
    margin: 4px 0 13px;

    color: #ffffff;

    font-size: 12px;
}

.footer-links {
    display: grid;

    gap: 8px;
}

.footer-links a,
.footer-links span {
    color: #aebbd0;

    font-size: 11px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f5b72b;
}

.footer-bottom {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom span {
    color: #718099;

    font-size: 10px;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.wa {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    background: #20bd5a;

    border-radius: 50%;

    color: #ffffff;

    font-size: 26px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.wa svg {
    width: 29px;
    height: 29px;
}

.wa:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.23);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .hotel-service-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hotel-intro-text {
        max-width: 750px;
    }

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


/* =========================================================
   MOBILE NAV
   ========================================================= */

@media (max-width: 760px) {

    #header {
        top: 8px;
    }

    .nav {
        min-height: 60px;
    }

    #menu {
        display: block;
    }

    #nav {
        position: absolute;

        top: calc(100% + 8px);

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: #071a3d;

        border-radius: 14px;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.20);
    }

    #nav.open {
        display: flex;
    }

    #nav a {
        padding: 12px;

        border-radius: 8px;
    }

    #nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    #nav .cta {
        margin-top: 5px;

        text-align: center;
    }


    /* HERO */

    .hotel-hero {
        min-height: auto;

        padding: 120px 0 65px;
    }

    .hotel-hero-content {
        max-width: 650px;
    }

    .hotel-hero .eyebrow {
        font-size: 11px;

        letter-spacing: 2px;

        margin-bottom: 15px;
    }

    .hotel-hero h1 {
        font-size: clamp(38px, 9vw, 52px);

        line-height: 1.05;

        letter-spacing: -1.8px;
    }

    .hotel-hero p {
        margin: 19px 0 25px;

        font-size: 14px;

        line-height: 1.65;
    }

    .hotel-hero-buttons {
        align-items: stretch;

        flex-direction: column;

        max-width: 250px;
    }

    .hotel-hero-buttons .btn {
        width: 100%;
    }


    /* INTRO */

    .hotel-intro {
        padding: 65px 0;
    }

    .hotel-intro-text h2 {
        font-size: 36px;
    }


    /* SERVICES */

    .hotel-services {
        padding: 65px 0;
    }

    .hotel-service-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hotel-service-card {
        min-height: auto;

        padding: 23px;
    }


    /* BENEFITS */

    .hotel-benefits {
        padding: 65px 0;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-card > span {
        margin-bottom: 27px;
    }


    /* PRICE NOTE */

    .hotel-note {
        padding-bottom: 65px;
    }

    .hotel-note-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 28px;
    }

    .hotel-note-badge {
        flex: 0 0 auto;
        width: 320px;
        height: auto;
        max-width: 100%;
        padding: 14px 18px;
    }


    /* CTA */

    .hotel-cta-section {
        padding-bottom: 65px;
    }

    .hotel-cta {
        display: block;

        padding: 32px 23px;
    }

    .hotel-cta .btn {
        width: 100%;

        margin-top: 20px;
    }


    /* FOOTER */

    .footer {
        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;

        margin-top: 7px;
    }

    .wa {
        right: 16px;
        bottom: 16px;

        width: 51px;
        height: 51px;
    }

    .wa svg {
        width: 27px;
        height: 27px;
    }
}


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

@media (max-width: 480px) {

    .hotel-hero {
        padding-top: 115px;
    }

    .hotel-hero h1 {
        font-size: 38px;

        line-height: 1.06;

        letter-spacing: -1.5px;
    }

    .hotel-hero p {
        font-size: 13px;
    }

    .hotel-hero-buttons {
        max-width: 100%;
    }

    .hotel-highlight-item {
        padding: 18px;

        gap: 12px;
    }

    .hotel-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;
    }

    .hotel-highlight-item h3 {
        font-size: 14px;
    }

    .hotel-highlight-item p {
        font-size: 11px;
    }

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

    .hotel-note-inner {
        padding: 23px;
    }

    .hotel-note-inner h2 {
        font-size: 23px;
    }

    .hotel-cta h2 {
        font-size: 27px;
    }
}

/* =========================================================
   HOTEL SERVICE CARDS WITH IMAGE
   ========================================================= */

.hotel-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* CARD */

.hotel-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    min-height: 0;

    padding: 0;

    background: #ffffff;

    border: 1px solid #e3e7ed;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(7, 26, 61, 0.05);

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


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

    border-color: rgba(229, 168, 25, 0.45);

    box-shadow:
        0 18px 40px rgba(7, 26, 61, 0.12);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.service-image {
    position: relative;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #e9edf3;
}


.service-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(7, 26, 61, 0.02),
            rgba(7, 26, 61, 0.20)
        );

    pointer-events: none;
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.hotel-service-card:hover .service-image img {
    transform: scale(1.05);
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.service-content {
    position: relative;

    flex: 1;

    padding: 25px 27px 28px;
}


/* DECORATION */

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

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(245, 183, 43, 0.08);

    pointer-events: none;
}


/* =========================================================
   SERVICE TOP
   ========================================================= */

.service-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.service-number {
    color: #aeb5bf;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


.service-symbol {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    background: #071a3d;

    border-radius: 12px;

    color: #f5b72b;

    font-size: 20px;
}

.service-symbol svg {
    display: block;
    width: 25px;
    height: 25px;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.hotel-service-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #0b2852;

    font-size: 19px;

    line-height: 1.3;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.hotel-service-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #737b87;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .hotel-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 760px) {

    .hotel-service-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .service-image {
        height: 210px;
    }


    .service-content {
        padding: 23px;
    }

}


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

@media (max-width: 480px) {

    .service-image {
        height: 190px;
    }


    .service-content {
        padding: 21px;
    }


    .hotel-service-card h3 {
        font-size: 17px;
    }


    .hotel-service-card p {
        font-size: 12px;
    }

}
/* =========================================================
   PROFESSIONAL SERVICE ICONS
   Booking Hotel & Why Luhinez
   ========================================================= */

/* Booking Hotel */

.hotel-promo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: currentColor;
}

.hotel-promo-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    overflow: visible;
}


/* =========================================================
   WHY LUHINEZ ICONS
   ========================================================= */

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-style: normal;
    color: currentColor;
}

.feature-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    overflow: visible;
}


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

@media (max-width: 600px) {

    .hotel-promo-icon,
    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .hotel-promo-icon svg,
    .feature-icon svg {
        width: 31px;
        height: 31px;
    }

}