/*
Theme Name: Finita Tour Travel
Theme URI:
Author: Finita Tour Travel
Description: Custom WordPress Theme untuk Finita Tour Travel
Version: 1.0
Text Domain: finita-tour
*/


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #10243a;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* =====================================================
   HOMEPAGE
===================================================== */

.finita-home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.finita-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


/* =====================================================
   VIDEO BACKGROUND
===================================================== */

.finita-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.finita-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 18, 35, 0.72) 0%,
            rgba(2, 18, 35, 0.28) 50%,
            rgba(2, 18, 35, 0.45) 100%
        );
    z-index: 2;
}


/* =====================================================
   HEADER
===================================================== */

.finita-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 80px);
    max-width: 1450px;

    z-index: 1000;

    padding: 14px 22px;

    background: rgba(5, 30, 55, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.finita-header-inner {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGO
===================================================== */

.finita-logo {
    flex-shrink: 0;
}

.finita-logo img {
    display: block;
    width: 150px;
    height: auto;
}

.finita-logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =====================================================
   NAVIGATION
===================================================== */

.finita-navigation {
    flex: 1;

    display: flex;
    justify-content: center;
}

.finita-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.finita-menu > li {
    position: relative;
}

.finita-menu > li > a {
    display: block;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s ease;
}

.finita-menu > li > a:hover {
    color: #ff8a00;
}
/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 768px) {

    .finita-navigation {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background: #092f59;
        padding: 20px;
        border-radius: 0 0 16px 16px;
        z-index: 9999;
    }

    .finita-navigation.mobile-open {
        display: block;
    }

    .finita-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .finita-menu > li {
        width: 100%;
    }

    .finita-menu > li > a {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    .finita-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        z-index: 10000;
    }

}

/* =====================================================
   DROPDOWN
===================================================== */

.finita-menu .sub-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    min-width: 210px;

    padding: 10px 0;

    list-style: none;

    background: rgba(5, 24, 45, 0.98);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.finita-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.finita-menu .sub-menu a {
    display: block;

    padding: 11px 18px;

    color: #ffffff;

    font-size: 13px;

    transition: 0.2s ease;
}

.finita-menu .sub-menu a:hover {
    background: rgba(255, 138, 0, 0.15);
    color: #ff8a00;
}


/* =====================================================
   WHATSAPP
===================================================== */

.finita-whatsapp {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 20px;

    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 30px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.finita-whatsapp:hover {
    background: #ffffff;
    color: #123c6c;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.finita-hero-content {
    position: relative;

    z-index: 5;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 30px 80px;
}

.finita-hero-title {
    max-width: 950px;

    margin: 0 auto 24px;

    font-size: clamp(40px, 5vw, 76px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
    color: #ffffff;

    text-shadow: 0 3px 20px rgba(0,0,0,0.35);
}

.finita-hero-subtitle {
    margin-bottom: 40px;

    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}


/* =====================================================
   SCROLL
===================================================== */

.finita-scroll {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 6;

    text-align: center;
}

.finita-scroll-icon {
    width: 24px;
    height: 38px;

    margin: 0 auto 8px;

    border: 2px solid #ffffff;
    border-radius: 20px;

    position: relative;
}

.finita-scroll-icon::after {
    content: "";

    position: absolute;

    top: 7px;
    left: 50%;

    width: 4px;
    height: 7px;

    background: #ffffff;

    border-radius: 5px;

    transform: translateX(-50%);

    animation: scrollDown 1.8s infinite;
}

.finita-scroll-text {
    font-size: 13px;
}

@keyframes scrollDown {

    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}


/* =====================================================
   SOUND
===================================================== */

.finita-sound {
    position: absolute;

    right: 35px;
    bottom: 30px;

    z-index: 7;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    background: transparent;

    border: none;

    cursor: pointer;

    font-size: 13px;
}

.finita-sound:hover {
    opacity: 0.75;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.finita-mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    cursor: pointer;
}


/* =====================================================
   PROFILE PAGE
===================================================== */

.finita-profile {
    background: #ffffff;
    color: #10243a;
}


/* =====================================================
   PROFILE HERO
===================================================== */

.profile-hero {
    position: relative;

    height: 78vh;
    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;
}

.profile-hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("assets/images/profile-hero.jpg");

    background-size: cover;
    background-position: center;
}

.profile-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 22, 40, 0.88),
            rgba(4, 22, 40, 0.45),
            rgba(4, 22, 40, 0.18)
        );
}

.profile-hero-content {
    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: 0 auto;

    padding-top: 80px;
}

.profile-eyebrow {
    display: block;

    margin-bottom: 25px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #ff8a00;
}

.profile-hero h1 {
    max-width: 850px;

    margin: 0 0 25px;

    font-size: clamp(52px, 6vw, 88px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 700;
}

.profile-hero p {
    max-width: 570px;

    margin: 0;

    font-size: 20px;

    line-height: 1.6;

    color: rgba(255,255,255,0.88);
}

.profile-hero-bottom {
    position: absolute;

    z-index: 3;

    left: 5%;
    right: 5%;
    bottom: 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 11px;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.75);
}


/* =====================================================
   PROFILE CONTAINER
===================================================== */

.profile-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =====================================================
   PROFILE INTRO
===================================================== */

.profile-intro {
    padding: 130px 0;
}

.profile-intro-label {
    display: flex;

    gap: 20px;

    align-items: center;

    margin-bottom: 55px;

    font-size: 11px;

    letter-spacing: 2px;

    color: #7890a7;
}

.profile-intro-label span:first-child {
    color: #ff8a00;
    font-weight: 700;
}

.profile-intro-content {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 100px;

    align-items: start;
}

.profile-intro-content h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: #09213a;
}

.profile-intro-text {
    padding-top: 8px;
}

.profile-intro-text p {
    margin: 0 0 25px;

    font-size: 17px;

    line-height: 1.8;

    color: #637386;
}


/* =====================================================
   PROFILE STATS
===================================================== */

.profile-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #08223d;

    color: #ffffff;
}

.profile-stat {
    padding: 60px 35px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,0.12);
}

.profile-stat:last-child {
    border-right: none;
}

.profile-stat strong {
    display: block;

    margin-bottom: 10px;

    font-size: 48px;

    line-height: 1;

    color: #ff8a00;
}

.profile-stat span {
    font-size: 13px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.7);
}


/* =====================================================
   PROFILE VALUES
===================================================== */

.profile-values {
    padding: 130px 0;
}

.profile-values-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 70px;
}

.profile-values-header h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;

    color: #09213a;
}

.profile-values-header p {
    max-width: 420px;

    margin: 0;

    font-size: 17px;

    line-height: 1.7;

    color: #68788b;
}

.profile-value-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    border-top: 1px solid #dce2e8;
}

.profile-value {
    padding: 45px 40px;

    border-right: 1px solid #dce2e8;
}

.profile-value:first-child {
    padding-left: 0;
}

.profile-value:last-child {
    border-right: none;
}

.profile-value > span {
    display: block;

    margin-bottom: 55px;

    font-size: 12px;

    color: #ff8a00;

    font-weight: 700;
}

.profile-value h3 {
    margin: 0 0 15px;

    font-size: 30px;

    color: #09213a;
}

.profile-value p {
    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #718095;
}


/* =====================================================
   PROFILE CTA
===================================================== */

.profile-cta {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #ffffff;

    background:
        url("assets/images/profile-cta.jpg")
        center / cover no-repeat;
}

.profile-cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3, 20, 37, 0.78);
}

.profile-cta-content {
    position: relative;
    z-index: 2;
}

.profile-cta-content > span {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;

    letter-spacing: 3px;

    color: #ff8a00;
}

.profile-cta h2 {
    margin: 0 0 35px;

    font-size: clamp(46px, 6vw, 78px);

    line-height: 1;

    letter-spacing: -3px;
}

.profile-cta a {
    display: inline-block;

    padding: 15px 30px;

    border: 1px solid #ffffff;

    border-radius: 30px;

    font-size: 14px;

    transition: 0.3s ease;
}

.profile-cta a:hover {
    background: #ffffff;
    color: #09213a;
}


/* =====================================================
   SEWA MOBIL
===================================================== */

.finita-rental-page {
    background: #f5f7fa;
    color: #102d50;
}

.rental-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   RENTAL HERO
===================================================== */

.rental-hero {
    position: relative;

    /*
       PENTING:
       Tidak menggunakan height tetap.
       Supaya isi Hero tidak terpotong.
    */
    min-height: 650px;
    height: auto;

    padding-top: 85px;
    padding-bottom: 95px;

    overflow: visible;

    background:
        linear-gradient(
            115deg,
            #073b73 0%,
            #0b528f 45%,
            #5f91b3 100%
        );
}

.rental-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,0.12),
            transparent 30%
        );

    pointer-events: none;
}

.rental-hero .rental-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 40px;
}


/* =====================================================
   RENTAL HERO CONTENT
===================================================== */

.rental-hero-content {
    position: relative;

    z-index: 2;

    padding-bottom: 20px;
}

.rental-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #ff8500;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.rental-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.rental-hero-content > p {
    max-width: 570px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.9);

    font-size: 17px;

    line-height: 1.7;
}


/* =====================================================
   RENTAL BENEFITS
===================================================== */

.rental-hero-benefits {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    max-width: 600px;

    padding: 14px;

    background: rgba(4, 35, 67, 0.65);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    backdrop-filter: blur(10px);
}

.rental-benefit {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 10px;

    color: #ffffff;
}

.benefit-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    color: #ffffff;

    font-size: 17px;
}

.rental-benefit strong {
    font-size: 11px;
    line-height: 1.3;
}


/* =====================================================
   RENTAL HERO VEHICLE
===================================================== */

.rental-hero-vehicle {
    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.vehicle-placeholder {
    width: 100%;

    max-width: 570px;

    height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 24px;

    border: 1px dashed rgba(255,255,255,0.35);

    background: rgba(255,255,255,0.06);

    color: rgba(255,255,255,0.8);

    text-align: center;
}

.vehicle-placeholder span {
    font-size: 20px;

    font-weight: 800;

    letter-spacing: 2px;
}

.vehicle-placeholder small {
    font-size: 13px;

    opacity: 0.7;
}


/* =====================================================
   HIDE OLD SEARCH BOX
===================================================== */

/*
   Search box sudah tidak digunakan.
   Sekarang semua konsultasi melalui WhatsApp.
*/

.rental-search-wrapper {
    display: none !important;
}


/* =====================================================
   CONSULTATION CTA
===================================================== */

.rental-contact {
    position: relative;

    width: min(1180px, calc(100% - 80px));

    margin: -70px auto 0;

    padding: 28px 34px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 18px 45px rgba(5, 30, 55, 0.16);

    z-index: 20;
}
.rental-contact-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.rental-contact-text {
    flex: 1;
}

.rental-contact-label {
    display: block;

    margin-bottom: 7px;

    color: #ff7a00;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.rental-contact-text h2 {
    margin: 0 0 6px;

    color: #08284d;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 700;
}

.rental-contact-text p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   WHATSAPP CTA BUTTON
===================================================== */

.rental-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 190px;

    padding: 15px 24px;

    background: #ff7900;

    color: #ffffff;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.rental-contact-button:hover {
    background: #e96800;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(255, 121, 0, 0.25);
}

.whatsapp-icon {
    font-size: 16px;
    line-height: 1;
}

.rental-contact-button .arrow {
    margin-left: 3px;

    font-size: 18px;

    transition: transform 0.25s ease;
}

.rental-contact-button:hover .arrow {
    transform: translateX(4px);
}


/* =====================================================
   FLEET
===================================================== */

.rental-fleet {
    padding: 85px 0 70px;

    background: #f5f7fa;
}
.rental-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.rental-section-heading h2 {
    margin: 0 0 6px;

    color: #102d50;

    font-size: 34px;

    line-height: 1.15;
}

.rental-section-heading p {
    margin: 0;

    color: #66778a;

    font-size: 14px;
}

.rental-outline-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 18px;

    border: 1px solid #a9b8c7;

    border-radius: 7px;

    color: #173c63;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}

.rental-outline-button:hover {
    border-color: #ff8200;

    color: #ff8200;
}


/* =====================================================
   FLEET GRID
===================================================== */

.rental-fleet-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.rental-car-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(15, 46, 78, 0.07);

    transition: 0.3s ease;
}

.rental-car-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(15, 46, 78, 0.12);
}


/* =====================================================
   CAR IMAGE
===================================================== */

.car-image {
    height: 175px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eef2f5,
            #dfe6ec
        );

    color: #8a98a6;

    text-align: center;
}

.car-image span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   CAR CONTENT
===================================================== */

.car-content {
    padding: 15px;
}

.car-content h3 {
    margin: 0 0 12px;

    color: #102d50;

    font-size: 16px;
}

.car-specs {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 16px;
}

.car-specs span {
    color: #67798c;

    font-size: 10px;
}

.car-price {
    margin-bottom: 15px;
}

.car-price small {
    display: block;

    margin-bottom: 2px;

    color: #738398;

    font-size: 10px;
}

.car-price strong {
    color: #ff7b00;

    font-size: 20px;

    font-weight: 800;
}

.car-price span {
    color: #6d7d8f;

    font-size: 10px;
}

.car-button {
    display: block;

    padding: 11px;

    border-radius: 6px;

    background: #092f58;

    color: #ffffff;

    text-align: center;

    font-size: 10px;

    font-weight: 800;

    transition: 0.25s ease;
}

.car-button:hover {
    background: #ff8200;

    color: #ffffff;
}


/* =====================================================
   BOTTOM BENEFITS
===================================================== */

.rental-benefits-section {
    padding: 35px 0;

    background: #f5f7fa;
}

.rental-benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border-radius: 15px;

    background: #062f59;
}

.rental-bottom-benefit {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 25px 20px;

    border-right: 1px solid rgba(255,255,255,0.1);

    color: #ffffff;
}

.rental-bottom-benefit:last-child {
    border-right: 0;
}

.bottom-benefit-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,0.1);

    color: #ffffff;

    font-size: 20px;
}

.rental-bottom-benefit h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 14px;
}

.rental-bottom-benefit p {
    margin: 0;

    color: rgba(255,255,255,0.7);

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .finita-header {
        width: calc(100% - 40px);
        padding: 14px 20px;
    }

    .finita-menu {
        gap: 18px;
    }

    .finita-menu > li > a {
        font-size: 12px;
    }

    .finita-logo img {
        width: 130px;
    }

    .finita-whatsapp {
        padding: 10px 15px;
        font-size: 12px;
    }

    .rental-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 992px) {

    .finita-navigation {
        display: none;
    }

    .finita-mobile-toggle {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .finita-header-inner {
        justify-content: space-between;
    }

    .finita-hero-title {
        font-size: 52px;
    }

    .rental-hero {
        min-height: auto;

        padding-top: 135px;
        padding-bottom: 80px;
    }

    .rental-hero .rental-container {
        grid-template-columns: 1fr;
    }

    .rental-hero-vehicle {
        min-height: 300px;
    }

    .vehicle-placeholder {
        height: 280px;
    }

    .rental-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rental-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .finita-header {
        top: 10px;

        width: calc(100% - 24px);

        padding: 12px 15px;
    }

    .finita-logo img {
        width: 120px;
    }

    .finita-whatsapp {
        display: none;
    }

    .finita-hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .finita-hero-title {
        font-size: 40px;

        line-height: 1.1;
    }

    .finita-hero-subtitle {
        font-size: 17px;
    }


    /* PROFILE */

    .profile-hero {
        min-height: 620px;
        height: 75vh;
    }

    .profile-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .profile-hero p {
        font-size: 17px;
    }

    .profile-intro {
        padding: 90px 0;
    }

    .profile-intro-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-values {
        padding: 90px 0;
    }

    .profile-values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .profile-value-grid {
        grid-template-columns: 1fr;
    }

    .profile-value,
    .profile-value:first-child {
        padding: 35px 0;

        border-right: none;
        border-bottom: 1px solid #dce2e8;
    }

    .profile-value:last-child {
        border-bottom: none;
    }


    /* RENTAL */

    .rental-container {
        width: calc(100% - 28px);
    }

    .rental-hero {
        min-height: auto;

        padding-top: 115px;
        padding-bottom: 70px;
    }

    .rental-hero h1 {
        font-size: 38px;
    }

    .rental-hero-content > p {
        font-size: 14px;
    }

    .rental-hero-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .rental-hero-vehicle {
        min-height: 230px;
    }

    .vehicle-placeholder {
        height: 230px;
    }


    /* CTA */

    .rental-contact {
        width: calc(100% - 30px);

        margin: 25px auto 45px;

        padding: 25px 22px;
    }

    .rental-contact-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;
    }

    .rental-contact-button {
        width: 100%;
    }


    /* FLEET */

    .rental-fleet {
        padding: 60px 0;
    }

    .rental-section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .rental-fleet-grid {
        grid-template-columns: 1fr;
    }


    /* BOTTOM BENEFITS */

    .rental-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rental-bottom-benefit {
        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .rental-bottom-benefit:last-child {
        border-bottom: 0;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .finita-hero-title {
        font-size: 34px;
    }

    .finita-hero-subtitle {
        font-size: 16px;
    }

    .finita-scroll {
        bottom: 20px;
    }

    .finita-sound {
        right: 15px;
        bottom: 20px;
    }

    .rental-hero-benefits {
        grid-template-columns: 1fr;
    }

    .rental-benefit {
        padding: 10px;
    }

    .rental-contact-text h2 {
        font-size: 24px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   FINITA ARTICLE PAGE
========================================================= */

.finita-article-page {
    background: #f4f7fa;
    color: #082f59;
}


/* =========================================================
   CONTAINER
========================================================= */

.article-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   ARTICLE HERO
========================================================= */

.article-hero {
    position: relative;

    min-height: 360px;

    padding-top: 150px;
    padding-bottom: 65px;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #eef7ff 0%,
            #e6f2fc 55%,
            #d6eafa 100%
        );
}


.article-hero::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -180px;

    width: 650px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255,255,255,0.5);

    pointer-events: none;
}


.article-hero .article-container {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    z-index: 2;
}


.article-hero-content {
    max-width: 650px;
}


.article-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #ff7900;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.article-hero h1 {
    margin: 0 0 15px;

    color: #082f59;

    font-size: clamp(52px, 6vw, 76px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -2px;
}


.article-hero p {
    max-width: 560px;

    margin: 0;

    color: #47637f;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.article-hero-visual {
    position: relative;

    height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            #dceefe 0%,
            #c2dff5 100%
        );
}


.article-hero-visual::before {
    content: "";

    position: absolute;

    left: -50px;
    right: -50px;
    bottom: -70px;

    height: 150px;

    border-radius: 50%;

    background: #a5cae9;
}


.article-hero-bus {
    position: relative;

    z-index: 2;

    font-size: 110px;

    filter: drop-shadow(
        0 20px 20px rgba(0,0,0,0.15)
    );
}


.article-hero-mountain {
    position: absolute;

    bottom: 15px;

    z-index: 3;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   ARTICLE SECTION
========================================================= */

.article-section {
    padding: 45px 0 90px;

    background: #f4f7fa;
}


/* =========================================================
   TOOLBAR
========================================================= */

.article-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;

    padding: 18px 22px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(7, 48, 88, 0.06);
}


.article-categories {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.article-category {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 18px;

    border: 1px solid #d9e3ed;

    border-radius: 30px;

    background: #ffffff;

    color: #153d66;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.article-category:hover {
    border-color: #0d55a0;

    color: #0d55a0;

    transform: translateY(-2px);
}


.article-category.active {
    border-color: #0b56a5;

    background: #0b56a5;

    color: #ffffff;
}


/* =========================================================
   SEARCH
========================================================= */

.article-search {
    position: relative;

    flex: 0 0 250px;
}


.article-search-icon {
    position: absolute;

    top: 50%;

    left: 15px;

    transform: translateY(-50%);

    font-size: 14px;
}


.article-search input {
    width: 100%;

    height: 42px;

    padding: 0 16px 0 42px;

    border: 1px solid #dbe4ed;

    border-radius: 30px;

    outline: none;

    background: #ffffff;

    color: #082f59;

    font-family: inherit;

    font-size: 13px;
}


.article-search input:focus {
    border-color: #0b56a5;

    box-shadow:
        0 0 0 3px rgba(11,86,165,0.08);
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 28px;

    align-items: start;
}


.article-main {
    min-width: 0;
}


/* =========================================================
   ARTICLE GRID
========================================================= */

.article-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   ARTICLE CARD
========================================================= */

.article-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e9ef;

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(9, 48, 85, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.article-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(9, 48, 85, 0.12);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.article-card-image {
    position: relative;

    display: block;

    height: 250px;

    overflow: hidden;

    background: #dfe8ef;
}


.article-card-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.article-card:hover
.article-card-image img {
    transform: scale(1.05);
}


.article-placeholder {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0b4f8a,
            #5b91b8
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.article-card-category {
    position: absolute;

    left: 16px;

    bottom: 16px;

    padding: 7px 12px;

    border-radius: 7px;

    background: #0b56a5;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.article-card-content {
    padding: 22px;
}


.article-date {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color: #71859a;

    font-size: 12px;
}


.article-card h2 {
    margin: 0 0 10px;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 750;

    letter-spacing: -0.3px;
}


.article-card h2 a {
    color: #082f59;

    transition: color 0.2s ease;
}


.article-card h2 a:hover {
    color: #0b56a5;
}


.article-card p {
    margin: 0 0 18px;

    color: #61758c;

    font-size: 14px;

    line-height: 1.7;
}


.article-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0b56a5;

    font-size: 13px;

    font-weight: 800;
}


.article-read-more span {
    transition: transform 0.2s ease;
}


.article-read-more:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SIDEBAR
========================================================= */

.article-sidebar {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.article-sidebar-box {
    padding: 24px;

    background: #ffffff;

    border: 1px solid #e2e9ef;

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(9, 48, 85, 0.05);
}


.article-sidebar-box h3 {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 0 0 20px;

    color: #082f59;

    font-size: 17px;

    font-weight: 800;
}


.article-sidebar-box h3 span {
    display: block;

    width: 4px;

    height: 22px;

    border-radius: 5px;

    background: #0b56a5;
}


/* =========================================================
   POPULAR ARTICLES
========================================================= */

.popular-list {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.popular-item {
    display: grid;

    grid-template-columns: 92px 1fr;

    gap: 13px;

    align-items: center;
}


.popular-image {
    width: 92px;

    height: 70px;

    overflow: hidden;

    border-radius: 9px;

    background: #dfe8ef;
}


.popular-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.popular-placeholder {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #0b56a5;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;
}


.popular-content h4 {
    margin: 0 0 7px;

    color: #082f59;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 750;
}


.popular-content span {
    color: #8494a5;

    font-size: 11px;
}


/* =========================================================
   SIDEBAR CATEGORY
========================================================= */

.article-sidebar-categories {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.sidebar-category-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 13px;

    border-radius: 9px;

    background: #f7f9fb;

    color: #244766;

    transition: all 0.2s ease;
}


.sidebar-category-item:hover {
    background: #edf5fc;

    color: #0b56a5;
}


.sidebar-category-name {
    font-size: 13px;

    font-weight: 600;
}


.sidebar-category-count {
    min-width: 27px;

    padding: 4px 7px;

    border-radius: 20px;

    background: #e8eef5;

    color: #526c85;

    text-align: center;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.article-sidebar-cta {
    padding: 28px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #0b56a5 0%,
            #07386b 100%
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(11, 86, 165, 0.2);
}


.article-cta-icon {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: rgba(255,255,255,0.16);

    font-size: 20px;
}


.article-sidebar-cta h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.3;
}


.article-sidebar-cta p {
    margin: 0 0 20px;

    color: rgba(255,255,255,0.8);

    font-size: 13px;

    line-height: 1.7;
}


.article-sidebar-cta a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 42px;

    padding: 0 20px;

    border-radius: 30px;

    background: #ffffff;

    color: #0b56a5;

    font-size: 12px;

    font-weight: 800;

    transition: transform 0.2s ease;
}


.article-sidebar-cta a:hover {
    transform: translateY(-2px);
}


.article-sidebar-cta a span {
    font-size: 16px;
}


/* =========================================================
   EMPTY
========================================================= */

.article-empty {
    padding: 70px 30px;

    border-radius: 18px;

    background: #ffffff;

    text-align: center;
}


.article-empty h2 {
    margin: 0 0 10px;

    color: #082f59;
}


.article-empty p {
    margin: 0;

    color: #71859a;
}


/* =========================================================
   PAGINATION
========================================================= */

.article-pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 35px;

    flex-wrap: wrap;
}


.article-pagination .page-numbers {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 42px;

    height: 42px;

    padding: 0 13px;

    border: 1px solid #dbe4ed;

    border-radius: 8px;

    background: #ffffff;

    color: #0b56a5;

    font-size: 13px;

    font-weight: 700;
}


.article-pagination .page-numbers.current {
    border-color: #0b56a5;

    background: #0b56a5;

    color: #ffffff;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1100px) {

    .article-layout {
        grid-template-columns: 1fr;
    }


    .article-sidebar {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .article-sidebar-cta {
        grid-column: span 2;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 800px) {

    .article-container {
        width: min(
            100% - 32px,
            700px
        );
    }


    .article-hero {
        min-height: auto;

        padding-top: 120px;

        padding-bottom: 45px;
    }


    .article-hero .article-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .article-hero h1 {
        font-size: 52px;
    }


    .article-hero-visual {
        height: 180px;
    }


    .article-toolbar {
        flex-direction: column;

        align-items: stretch;
    }


    .article-search {
        width: 100%;

        flex: none;
    }


    .article-grid {
        grid-template-columns: 1fr;
    }


    .article-sidebar {
        display: flex;
    }


    .article-sidebar-cta {
        grid-column: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .article-container {
        width: calc(100% - 24px);
    }


    .article-hero {
        padding-top: 105px;
    }


    .article-hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }


    .article-hero p {
        font-size: 15px;
    }


    .article-categories {
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 4px;
    }


    .article-category {
        flex: 0 0 auto;
    }


    .article-card-image {
        height: 220px;
    }


    .article-card-content {
        padding: 18px;
    }


    .article-card h2 {
        font-size: 20px;
    }

}
/* =========================================================
   FINITA - FAMILY GATHERING PAGE
========================================================= */

.finita-family-page {
    background: #f5f7fa;
    color: #092f59;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.family-container {
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
}

/* =========================================================
   HERO
========================================================= */

.family-hero {
    position: relative;
    min-height: auto;
    padding: 95px 0 90px;
    background:
        linear-gradient(
            115deg,
            #073b70 0%,
            #0b548f 50%,
            #75a8c9 100%
        );
    overflow: hidden;
}

.family-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.family-hero .family-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.family-hero-content {
    color: #ffffff;
}

.family-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #ff7900;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.family-hero-content h1 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: clamp(52px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -2px;
}

.family-hero-content p {
    max-width: 600px;
    margin: 0 0 34px;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.75;
}

/* =========================================================
   BUTTONS
========================================================= */

.family-hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.family-btn-primary,
.family-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.family-btn-primary {
    background: #ff7900;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(255,121,0,0.25);
}

.family-btn-primary:hover {
    background: #e96800;
    transform: translateY(-2px);
    color: #ffffff;
}

.family-btn-secondary {
    border: 1px solid rgba(255,255,255,0.45);
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.family-btn-secondary:hover {
    background: rgba(255,255,255,0.16);
    color: #ffffff;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.family-hero-image {
    position: relative;
    height: 480px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.04)
        );
    box-shadow: 0 30px 70px rgba(0,0,0,0.16);
}

.family-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(4,31,57,0.65),
        transparent 55%
    );
    pointer-events: none;
}

.family-image-caption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #ffffff;
}

.family-image-caption strong {
    font-size: 20px;
}

.family-image-caption span {
    font-size: 13px;
    opacity: 0.85;
}

/* =========================================================
   BENEFITS
========================================================= */

.family-benefits {
    padding: 110px 0;
    background: #f5f7fa;
}

.family-section-title {
    max-width: 700px;
    margin-bottom: 48px;
}

.family-section-title > span {
    display: block;
    margin-bottom: 12px;
    color: #ff7900;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.family-section-title h2 {
    margin: 0 0 14px;
    color: #092f59;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.family-section-title p {
    margin: 0;
    color: #63758b;
    font-size: 17px;
    line-height: 1.7;
}

/* =========================================================
   BENEFIT GRID
========================================================= */

.family-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.family-benefit-card {
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(9,47,89,0.06);
    transition: all 0.25s ease;
}

.family-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(9,47,89,0.11);
}

.family-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #eaf3fa;
    color: #0b548f;
    font-size: 20px;
    font-weight: 700;
}

.family-benefit-card h3 {
    margin: 0 0 10px;
    color: #092f59;
    font-size: 20px;
}

.family-benefit-card p {
    margin: 0;
    color: #697b8f;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   PACKAGES
========================================================= */

.family-packages {
    padding: 110px 0;
    background: #ffffff;
}

.family-package-title {
    margin-bottom: 45px;
}

.family-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.family-package-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e9ef;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(9,47,89,0.07);
    transition: all 0.25s ease;
}

.family-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(9,47,89,0.12);
}

/* =========================================================
   PACKAGE IMAGE
========================================================= */

.family-package-photo {
    position: relative;
    height: 230px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #dce8f1,
            #b9d0e0
        );
}

.family-package-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-package-photo span {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 6px;
    background: #ff7900;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* =========================================================
   PACKAGE CONTENT
========================================================= */

.family-package-content {
    padding: 25px;
}

.family-package-content h3 {
    margin: 0 0 10px;
    color: #092f59;
    font-size: 22px;
}

.family-package-content > p {
    min-height: 68px;
    margin: 0 0 18px;
    color: #697b8f;
    font-size: 14px;
    line-height: 1.6;
}

.family-package-content ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.family-package-content li {
    margin-bottom: 9px;
    color: #536a80;
    font-size: 13px;
}

.family-package-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 17px;
    border-radius: 8px;
    background: #092f59;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.family-package-btn:hover {
    background: #ff7900;
    color: #ffffff;
}

/* =========================================================
   CTA
========================================================= */

.family-cta {
    padding: 80px 0;
    background: #f5f7fa;
}

.family-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 22px;
    background:
        linear-gradient(
            110deg,
            #092f59,
            #0c5a91
        );
    box-shadow: 0 25px 60px rgba(9,47,89,0.15);
}

.family-cta-box span {
    display: block;
    margin-bottom: 12px;
    color: #ff7900;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.family-cta-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 34px;
}

.family-cta-box p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.family-cta-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 8px;
    background: #ff7900;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.family-cta-button:hover {
    background: #e96800;
    color: #ffffff;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {

    .family-hero {
        padding-top: 140px;
    }

    .family-hero .family-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .family-hero-image {
        height: 420px;
    }

    .family-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .family-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .family-cta-box {
        padding: 45px;
    }

}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 650px) {

    .family-container {
        width: min(100% - 36px, 1180px);
    }

    .family-hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .family-hero-content h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .family-hero-content p {
        font-size: 16px;
    }

    .family-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .family-btn-primary,
    .family-btn-secondary {
        width: 100%;
    }

    .family-hero-image {
        height: 320px;
    }

    .family-benefits,
    .family-packages {
        padding: 75px 0;
    }

    .family-section-title h2 {
        font-size: 36px;
    }

    .family-benefit-grid,
    .family-package-grid {
        grid-template-columns: 1fr;
    }

    .family-package-photo {
        height: 240px;
    }

    .family-cta {
        padding: 60px 0;
    }

    .family-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 28px;
    }

    .family-cta-box h2 {
        font-size: 28px;
    }

    .family-cta-button {
        width: 100%;
    }

}
/* =========================================================
   FINITA - STUDY TOUR PAGE
========================================================= */

.finita-study-page {
    background: #f5f8fc;
    color: #092f59;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.study-container {
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.study-hero {
    position: relative;

    min-height: 650px;

    /* Lebih dekat dengan navbar */
    padding: 95px 0 65px;

    background:
        linear-gradient(
            110deg,
            #f7faff 0%,
            #eef5fb 48%,
            #d8e9f5 100%
        );

    overflow: hidden;
}

.study-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -250px;
    top: -180px;
    border-radius: 50%;
    background: rgba(22, 103, 157, 0.07);
}

.study-hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 65px;
    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.study-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: #ff7900;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.study-hero-content h1 {
    max-width: 540px;

    margin: 0 0 20px;

    color: #092f59;

    font-size: 48px;

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.study-hero-content > p {
    max-width: 580px;

    margin: 0 0 30px;

    color: #63758b;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.study-hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 35px;
}

.study-btn-primary,
.study-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.study-btn-primary {
    background: #ff7900;
    color: #ffffff;

    box-shadow:
        0 12px 25px rgba(255,121,0,0.20);
}

.study-btn-primary:hover {
    background: #e86d00;
    color: #ffffff;

    transform: translateY(-2px);
}

.study-btn-secondary {
    border: 1px solid #8aa2b8;
    color: #092f59;
    background: #ffffff;
}

.study-btn-secondary:hover {
    background: #092f59;
    color: #ffffff;
}


/* =========================================================
   HERO FEATURES
========================================================= */

.study-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.study-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.study-mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #e7f0f8;

    color: #092f59;

    font-size: 15px;
    font-weight: 700;
}

.study-mini-feature strong {
    display: block;

    color: #092f59;

    font-size: 13px;
}

.study-mini-feature span {
    display: block;

    margin-top: 2px;

    color: #74869a;

    font-size: 11px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.study-hero-image {
    position: relative;

    height: 470px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #c5dcea,
            #79a9c7
        );

    box-shadow:
        0 25px 60px rgba(9,47,89,0.13);
}

.study-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.study-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4,31,57,0.55),
            transparent 60%
        );
}

.study-hero-card {
    position: absolute;

    z-index: 3;

    left: 35px;
    right: 35px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 23px;

    border-radius: 16px;

    background: rgba(5,48,88,0.94);

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.15);
}

.study-hero-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #ffffff;
}

.study-hero-card strong {
    display: block;

    margin-bottom: 5px;

    font-size: 16px;
}

.study-hero-card p {
    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.study-section-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.study-section-heading span {
    display: block;

    margin-bottom: 10px;

    color: #ff7900;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.study-section-heading h2 {
    margin: 0 0 13px;

    color: #092f59;

    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.1;

    letter-spacing: -1px;
}

.study-section-heading p {
    margin: 0;

    color: #718297;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.study-benefits {
    padding: 95px 0;

    background: #f5f8fc;
}

.study-benefit-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.study-benefit-card {
    padding: 32px 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e4ebf2;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(9,47,89,0.055);

    transition: all 0.25s ease;
}

.study-benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(9,47,89,0.10);
}

.study-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eaf2fa;

    color: #092f59;

    font-size: 18px;
    font-weight: 700;
}

.study-benefit-card h3 {
    margin: 0 0 10px;

    color: #092f59;

    font-size: 17px;
}

.study-benefit-card p {
    margin: 0;

    color: #718297;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PACKAGES
========================================================= */

.study-packages {
    padding: 100px 0;

    background: #ffffff;
}

.study-package-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.study-package-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e8ef;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(9,47,89,0.06);

    transition: all 0.25s ease;
}

.study-package-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(9,47,89,0.12);
}


/* PACKAGE IMAGE */

.study-package-image {
    position: relative;

    height: 205px;

    overflow: hidden;

    background: #dce8f1;
}

.study-package-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.study-package-card:hover
.study-package-image img {
    transform: scale(1.04);
}

.study-label {
    position: absolute;

    top: 13px;
    left: 13px;

    padding: 6px 10px;

    border-radius: 6px;

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.study-label.green {
    background: #4ba84f;
}

.study-label.blue {
    background: #1475c4;
}

.study-label.orange {
    background: #ff7900;
}

.study-label.purple {
    background: #7955c8;
}


/* PACKAGE CONTENT */

.study-package-content {
    padding: 22px;
}

.study-package-content h3 {
    margin: 0 0 9px;

    color: #092f59;

    font-size: 20px;
}

.study-package-content > p {
    min-height: 52px;

    margin: 0 0 16px;

    color: #718297;

    font-size: 13px;

    line-height: 1.6;
}

.study-package-content ul {
    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.study-package-content li {
    margin-bottom: 8px;

    color: #60748a;

    font-size: 12px;
}

.study-package-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 42px;

    border: 1px solid #7895ae;

    border-radius: 22px;

    color: #092f59;

    background: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.study-package-button:hover {
    background: #092f59;

    border-color: #092f59;

    color: #ffffff;
}


/* =========================================================
   PROCESS
========================================================= */

.study-process {
    padding: 95px 0;

    background: #f5f8fc;
}

.study-process-grid {
    display: flex;

    align-items: flex-start;

    justify-content: center;
}

.study-process-item {
    width: 180px;

    text-align: center;
}

.study-process-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 16px;

    border-radius: 50%;

    background: #e5eff8;

    color: #092f59;

    font-size: 13px;
    font-weight: 800;
}

.study-process-item h3 {
    margin: 0 0 7px;

    color: #092f59;

    font-size: 15px;
}

.study-process-item p {
    margin: 0;

    color: #718297;

    font-size: 11px;

    line-height: 1.6;
}

.study-process-line {
    width: 45px;

    height: 1px;

    margin-top: 26px;

    background: #a9bdce;
}


/* =========================================================
   CTA
========================================================= */

.study-cta {
    padding: 75px 0;

    background: #f5f8fc;
}

.study-cta-box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    overflow: hidden;

    padding: 50px 55px;

    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            #062f58,
            #0d568b
        );

    box-shadow:
        0 25px 55px rgba(9,47,89,0.15);
}

.study-cta-box::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -100px;
    top: -160px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}

.study-cta-box > div {
    position: relative;
    z-index: 2;
}

.study-cta-box span {
    display: block;

    margin-bottom: 10px;

    color: #ff7900;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.study-cta-box h2 {
    max-width: 600px;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
}

.study-cta-box p {
    max-width: 590px;

    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 14px;

    line-height: 1.7;
}

.study-cta-button {
    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-shrink: 0;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 25px;

    background: #ff7900;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);
}

.study-cta-button:hover {
    background: #e96d00;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .study-hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .study-hero-image {
        height: 430px;
    }

    .study-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .study-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .study-process-grid {
        flex-wrap: wrap;

        gap: 30px;
    }

    .study-process-line {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .study-container {
        width: min(100% - 36px, 1180px);
    }

    .study-hero {
        min-height: auto;

        padding: 125px 0 65px;
    }

    .study-hero-content h1 {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .study-hero-content > p {
        font-size: 15px;
    }

    .study-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .study-btn-primary,
    .study-btn-secondary {
        width: 100%;
    }

    .study-hero-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .study-hero-image {
        height: 330px;
    }

    .study-hero-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 15px;
    }

    .study-benefits,
    .study-packages,
    .study-process {
        padding: 75px 0;
    }

    .study-benefit-grid,
    .study-package-grid {
        grid-template-columns: 1fr;
    }

    .study-package-image {
        height: 230px;
    }

    .study-process-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 35px 15px;
    }

    .study-process-item {
        width: auto;
    }

    .study-cta {
        padding: 55px 0;
    }

    .study-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .study-cta-box h2 {
        font-size: 27px;
    }

    .study-cta-button {
        width: 100%;
    }

}
/* =========================================================
   OUTBOUND PAGE
========================================================= */

.outbound-page {
    background: #ffffff;
    color: #102c57;
    overflow: hidden;
    font-family: inherit;
}

.outbound-page * {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.outbound-hero {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;

    min-height: 570px;

    display: grid;
    grid-template-columns: 42% 58%;

    position: relative;
    overflow: hidden;
}


.outbound-hero-content {
    padding: 80px 40px 70px 7%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 3;

    background: #ffffff;
}


.hero-label {
    color: #f47b20;
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.outbound-hero h1 {
    margin: 0;

    color: #102f61;

    font-size: clamp(58px, 5.2vw, 86px);

    line-height: .86;

    font-weight: 900;

    letter-spacing: -3px;
}


.outbound-hero h1 span {
    display: block;

    color: #f47721;

    margin-top: 12px;
}


.outbound-hero h2 {
    margin: 28px 0 0;

    font-size: 20px;

    line-height: 1.3;

    color: #173761;

    font-weight: 800;
}


.hero-line {
    width: 65px;
    height: 4px;

    background: #f47721;

    margin: 17px 0;
}


.outbound-hero p {
    max-width: 560px;

    margin: 0;

    color: #4e5d70;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.outbound-benefits {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 28px;

    gap: 12px;
}


.benefit-item {
    text-align: center;

    padding-right: 10px;

    border-right: 1px solid #e3e7ed;
}


.benefit-item:last-child {
    border-right: 0;
}


.benefit-icon {
    font-size: 27px;

    margin-bottom: 7px;
}


.benefit-item strong {
    display: block;

    color: #102f61;

    font-size: 12px;
}


.benefit-item span {
    display: block;

    color: #6c7785;

    font-size: 9px;

    margin-top: 4px;
}


/* =========================================================
   BUTTON
========================================================= */

.outbound-button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    width: fit-content;

    margin-top: 30px;

    padding: 14px 20px;

    border-radius: 8px;

    background: #f47721;

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}


.outbound-button span {
    width: 24px;
    height: 24px;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.outbound-button:hover {
    background: #df6613;

    transform: translateY(-2px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.outbound-hero-image {
    height: 100%;

    min-height: 570px;

    position: relative;

    overflow: hidden;
}


.outbound-hero-image::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 120px;
    height: 100%;

    z-index: 2;

    background: linear-gradient(
        to right,
        #ffffff,
        rgba(255,255,255,0)
    );
}


.outbound-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   PROGRAM SECTION
========================================================= */

.program-section {
    max-width: 1280px;

    margin: 0 auto;

    padding: 70px 40px 80px;
}


.section-heading {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 35px;
}


.section-heading h2 {
    margin: 0;

    font-size: 30px;

    font-weight: 800;

    color: #102f61;

    text-align: center;
}


.heading-decoration {
    color: #f47721;

    font-size: 30px;

    font-weight: 900;
}


/* =========================================================
   PROGRAM GRID
========================================================= */

.program-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.program-card {
    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(16,47,97,.10);

    transition: .3s ease;
}


.program-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 35px rgba(16,47,97,.15);
}


.program-image {
    height: 185px;

    overflow: hidden;
}


.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}


.program-card:hover .program-image img {
    transform: scale(1.05);
}


.program-content {
    padding: 0 20px 23px;

    position: relative;
}


.program-icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;

    margin-top: -25px;

    position: relative;
}


.program-icon.orange {
    background: #f47721;
}


.program-icon.blue {
    background: #1d5fa7;
}


.program-icon.green {
    background: #54a94b;
}


.program-icon.purple {
    background: #9655c5;
}


.program-content h3 {
    margin: 15px 0 7px;

    color: #102f61;

    font-size: 17px;
}


.program-content p {
    margin: 0;

    color: #697586;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   FLOW
========================================================= */

.outbound-flow {
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 40px 80px;
}


.flow-left h2 {
    margin: 0;

    color: #102f61;

    font-size: 28px;
}


.orange-line {
    width: 55px;
    height: 4px;

    background: #f47721;

    margin: 13px 0 35px;
}


.flow-steps {
    display: grid;

    grid-template-columns:
        1fr 50px
        1fr 50px
        1fr 50px
        1fr;

    align-items: start;

    gap: 5px;
}


.flow-item {
    text-align: center;
}


.flow-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 8px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    box-shadow:
        0 5px 20px rgba(16,47,97,.12);
}


.flow-number {
    width: 22px;
    height: 22px;

    margin: -2px auto 7px;

    border-radius: 50%;

    background: #f47721;

    color: white;

    font-size: 11px;

    font-weight: 700;

    display: flex;

    align-items: center;
    justify-content: center;
}


.flow-item h3 {
    margin: 0 0 6px;

    color: #102f61;

    font-size: 13px;
}


.flow-item p {
    margin: 0 auto;

    max-width: 180px;

    color: #737f8f;

    font-size: 10px;

    line-height: 1.5;
}


.flow-arrow {
    display: flex;

    justify-content: center;

    align-items: center;

    padding-top: 32px;

    color: #7c8794;

    font-size: 25px;
}


/* =========================================================
   COMMITMENT
========================================================= */

.commitment-section {
    max-width: 1280px;

    margin: 0 auto 80px;

    padding: 0 40px;

    display: grid;

    grid-template-columns: 45% 55%;

    min-height: 250px;

    border-radius: 22px;

    overflow: hidden;

    background: #102f61;
}


.commitment-content {
    padding: 35px 35px;

    color: white;
}


.commitment-text h2 {
    margin: 0;

    color: #fff;

    font-size: 28px;
}


.commitment-text .orange-line {
    margin: 10px 0 12px;
}


.commitment-text p {
    max-width: 470px;

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 12px;

    line-height: 1.6;
}


.commitment-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 28px;
}


.commitment-item {
    text-align: center;
}


.commitment-icon {
    font-size: 25px;

    margin-bottom: 7px;
}


.commitment-item strong,
.commitment-item span {
    display: block;
}


.commitment-item strong {
    color: #fff;

    font-size: 11px;
}


.commitment-item span {
    color: rgba(255,255,255,.65);

    font-size: 9px;

    margin-top: 3px;
}


.commitment-image {
    min-height: 250px;
}


.commitment-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   CTA
========================================================= */

.outbound-cta {
    max-width: 1280px;

    margin: 0 auto 70px;

    padding: 35px 45px;

    border-radius: 18px;

    background:
        linear-gradient(
            120deg,
            #f47721,
            #f58b35
        );

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.outbound-cta span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.outbound-cta h2 {
    margin: 7px 0 0;

    font-size: 26px;

    line-height: 1.25;

    max-width: 700px;
}


.outbound-cta a {
    flex-shrink: 0;

    padding: 14px 23px;

    border-radius: 8px;

    background: #fff;

    color: #102f61;

    text-decoration: none;

    font-weight: 800;

    font-size: 13px;

    display: flex;

    align-items: center;

    gap: 15px;

    transition: .3s ease;
}


.outbound-cta a:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .outbound-hero {
        grid-template-columns: 45% 55%;
    }

    .outbound-hero-content {
        padding-left: 40px;
    }

    .outbound-hero h1 {
        font-size: 60px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-section {
        grid-template-columns: 1fr;
    }

    .commitment-image {
        height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .outbound-hero {
        display: flex;

        flex-direction: column;
    }

    .outbound-hero-content {
        padding: 55px 25px 40px;
    }

    .outbound-hero h1 {
        font-size: 55px;
    }

    .outbound-hero-image {
        min-height: 350px;

        order: 2;
    }

    .outbound-hero-image::before {
        display: none;
    }


    .outbound-benefits {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

        margin-top: 25px;
    }

    .benefit-item:nth-child(2) {
        border-right: 0;
    }


    .program-section,
    .outbound-flow {
        padding-left: 22px;
        padding-right: 22px;
    }


    .section-heading h2 {
        font-size: 23px;
    }


    .program-grid {
        grid-template-columns: 1fr;
    }


    .program-image {
        height: 210px;
    }


    .flow-steps {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    .flow-arrow {
        display: none;
    }


    .flow-item {
        width: 100%;
    }


    .commitment-section {
        margin-left: 22px;
        margin-right: 22px;

        padding: 0;
    }


    .commitment-content {
        padding: 30px 25px;
    }


    .commitment-items {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }


    .commitment-image {
        min-height: 230px;
    }


    .outbound-cta {
        margin-left: 22px;
        margin-right: 22px;

        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .outbound-cta h2 {
        font-size: 22px;
    }


}
/* =========================================================
   SEWA MOBIL - HERO IMAGE
========================================================= */

.sewa-armada-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 20px;
}
/* =========================================================
   PAKET WISATA BANDUNG
========================================================= */

.bandung-page {
    background: #f7f9fc;
    color: #092f59;
}


/* =========================================================
   CONTAINER
========================================================= */

.bandung-container {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.bandung-hero {
    position: relative;

    min-height: 500px;

    padding: 115px 0 60px;

    background: #ffffff;

    overflow: hidden;
}


.bandung-hero .bandung-container {
    position: relative;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    min-height: 400px;

    align-items: center;

    gap: 40px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.bandung-hero-content {
    position: relative;

    z-index: 2;

    padding-left: 15px;
}


.bandung-label {
    margin-bottom: 15px;

    color: #ff7900;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.bandung-hero h1 {
    margin: 0 0 20px;

    color: #092f59;

    font-size: clamp(58px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -3px;
}


.bandung-hero p {
    max-width: 470px;

    margin: 0;

    color: #64748b;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.bandung-hero-image {
    position: relative;
    height: 390px;
    overflow: hidden;

    /* Membulatkan semua sudut gambar */
    border-radius: 28px;

    background: #dbe8f2;
}

.bandung-hero-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.9) 0%,
            rgba(255,255,255,0) 45%
        );

    pointer-events: none;
}


.bandung-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   PACKAGES
========================================================= */

.bandung-packages {
    padding: 70px 0 80px;

    background: #f7f9fc;
}


.bandung-section-heading {
    margin-bottom: 35px;

    text-align: center;
}


.bandung-section-heading .bandung-label {
    margin-bottom: 10px;
}


.bandung-section-heading h2 {
    margin: 0 0 10px;

    color: #092f59;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}


.bandung-section-heading p {
    margin: 0;

    color: #64748b;

    font-size: 16px;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.bandung-package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.bandung-package-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(9,47,89,0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.bandung-package-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(9,47,89,0.13);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.bandung-card-image {
    position: relative;

    height: 215px;

    overflow: hidden;

    background: #dbe5ee;
}


.bandung-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.bandung-package-card:hover
.bandung-card-image img {
    transform: scale(1.05);
}


/* =========================================================
   BADGE
========================================================= */

.bandung-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 8px 14px;

    color: #ffffff;

    background: #ff7900;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.bandung-card-content {
    padding: 24px;
}


.bandung-card-content h3 {
    margin: 0 0 8px;

    color: #092f59;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 800;
}


.bandung-card-content > p {
    min-height: 50px;

    margin: 0 0 20px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   CARD INFO
========================================================= */

.bandung-card-info {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}


.bandung-card-info span {
    display: inline-flex;

    align-items: center;

    padding: 8px 10px;

    color: #092f59;

    background: #f1f6fa;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.bandung-card-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding-top: 18px;

    border-top: 1px solid #edf1f5;
}


/* =========================================================
   PRICE
========================================================= */

.bandung-price {
    display: flex;

    flex-wrap: wrap;

    align-items: baseline;

    column-gap: 5px;
}


.bandung-price small {
    width: 100%;

    margin-bottom: 4px;

    color: #94a3b8;

    font-size: 11px;
}


.bandung-price strong {
    color: #ff7900;

    font-size: 21px;

    line-height: 1;

    font-weight: 800;
}


.bandung-price span {
    color: #64748b;

    font-size: 11px;
}


/* =========================================================
   DETAIL BUTTON
========================================================= */

.bandung-detail-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 12px 17px;

    color: #ffffff !important;

    background: #092f59;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.bandung-detail-btn:hover {
    color: #ffffff !important;

    background: #ff7900;

    transform: translateX(2px);
}


.bandung-detail-btn span {
    font-size: 17px;

    line-height: 1;
}


/* =========================================================
   CTA
========================================================= */

.bandung-cta {
    padding: 0 0 80px;

    background: #f7f9fc;
}


.bandung-cta-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 35px 40px;

    background:
        linear-gradient(
            110deg,
            #092f59,
            #145d91
        );

    border-radius: 22px;
}


.bandung-cta-box .bandung-label {
    margin-bottom: 8px;
}


.bandung-cta-box h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 800;
}


.bandung-cta-box p {
    margin: 0;

    color: rgba(255,255,255,0.75);

    font-size: 14px;
}


.bandung-whatsapp-btn {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    padding: 15px 22px;

    color: #ffffff !important;

    background: #ff7900;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.bandung-whatsapp-btn:hover {
    color: #ffffff !important;

    background: #e96c00;

    transform: translateY(-2px);
}


.bandung-whatsapp-btn span {
    font-size: 18px;
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 900px) {

    .bandung-hero {
        padding: 100px 0 50px;
    }


    .bandung-hero .bandung-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .bandung-hero-content {
        padding-left: 0;
    }


    .bandung-hero-image {
        height: 330px;
    }


    .bandung-package-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .bandung-cta-box {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 600px) {

    .bandung-container {
        width: min(
            100% - 32px,
            1180px
        );
    }


    .bandung-hero {
        padding: 90px 0 40px;
    }


    .bandung-hero h1 {
        font-size: 54px;

        letter-spacing: -2px;
    }


    .bandung-hero p {
        font-size: 16px;
    }


    .bandung-hero-image {
        height: 260px;

        border-radius: 20px;
    }


    .bandung-packages {
        padding: 50px 0 60px;
    }


    .bandung-package-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .bandung-card-image {
        height: 200px;
    }


    .bandung-card-content {
        padding: 20px;
    }


    .bandung-card-bottom {
        align-items: stretch;

        flex-direction: column;
    }


    .bandung-detail-btn {
        justify-content: center;
    }


    .bandung-cta {
        padding-bottom: 50px;
    }


    .bandung-cta-box {
        padding: 28px 24px;

        border-radius: 18px;
    }


    .bandung-cta-box h2 {
        font-size: 24px;
    }


    .bandung-whatsapp-btn {
        width: 100%;

        justify-content: center;
    }

}
/* =========================================================
   BANDUNG PACKAGE MODAL
========================================================= */

.bandung-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.bandung-modal.is-open {
    visibility: visible;

    opacity: 1;
}


/* =========================================================
   OVERLAY
========================================================= */

.bandung-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(3, 20, 38, 0.72);

    backdrop-filter: blur(6px);

    -webkit-backdrop-filter: blur(6px);
}


/* =========================================================
   MODAL BOX
========================================================= */

.bandung-modal-box {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    width: min(900px, 100%);

    max-height: 90vh;

    overflow: hidden;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.3);

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.3s ease;
}


.bandung-modal.is-open
.bandung-modal-box {
    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.bandung-modal-close {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 10;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    color: #092f59;

    background: #ffffff;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.15);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.bandung-modal-close:hover {
    color: #ffffff;

    background: #ff7900;

    transform: rotate(90deg);
}


/* =========================================================
   MODAL IMAGE
========================================================= */

.bandung-modal-image {
    min-height: 470px;

    background: #dbe5ee;
}


.bandung-modal-image img {
    width: 100%;

    height: 100%;

    min-height: 470px;

    display: block;

    object-fit: cover;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.bandung-modal-content {
    overflow-y: auto;

    padding: 45px 40px;
}


.bandung-modal-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    margin-bottom: 15px;

    color: #ffffff;

    background: #ff7900;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.bandung-modal-content h2 {
    margin: 0 0 15px;

    color: #092f59;

    font-size: 34px;

    line-height: 1.15;

    font-weight: 800;
}


.bandung-modal-content > p {
    margin: 0 0 30px;

    color: #64748b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SECTION
========================================================= */

.bandung-modal-section {
    padding-top: 22px;

    border-top: 1px solid #e7edf3;
}


.bandung-modal-section h3 {
    margin: 0 0 15px;

    color: #092f59;

    font-size: 17px;

    font-weight: 800;
}


/* =========================================================
   FACILITIES
========================================================= */

.bandung-modal-facilities {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.bandung-modal-facility {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 12px;

    color: #092f59;

    background: #f1f6fa;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 600;
}


.bandung-modal-facility span:first-child {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 21px;

    height: 21px;

    flex-shrink: 0;

    color: #ffffff;

    background: #092f59;

    border-radius: 50%;

    font-size: 11px;
}


.bandung-modal-empty {
    color: #94a3b8;

    font-size: 13px;
}


/* =========================================================
   ACTION
========================================================= */

.bandung-modal-action {
    margin-top: 30px;
}


.bandung-modal-whatsapp {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    padding: 15px 20px;

    color: #ffffff !important;

    background: #ff7900;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.bandung-modal-whatsapp:hover {
    color: #ffffff !important;

    background: #e96c00;

    transform: translateY(-2px);
}


.bandung-modal-whatsapp span {
    font-size: 18px;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.bandung-modal-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bandung-modal {
        padding: 15px;
    }


    .bandung-modal-box {
        display: block;

        max-height: 92vh;

        overflow-y: auto;

        border-radius: 20px;
    }


    .bandung-modal-image {
        height: 230px;

        min-height: 230px;
    }


    .bandung-modal-image img {
        height: 230px;

        min-height: 230px;
    }


    .bandung-modal-content {
        padding: 28px 22px 25px;
    }


    .bandung-modal-content h2 {
        font-size: 27px;
    }


    .bandung-modal-facilities {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PANGANDARAN
========================================================= */

.pangandaran-container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.pangandaran-hero {
    padding: 120px 0 70px;
    background: #ffffff;
}


.pangandaran-hero .pangandaran-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}


.pangandaran-hero-content {
    padding-left: 20px;
}


.pangandaran-label {
    margin-bottom: 22px;
    color: #ff7900;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}


.pangandaran-hero h1 {
    margin: 0 0 18px;
    color: #092f59;
    font-size: clamp(60px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 800;
}


.pangandaran-hero p {
    max-width: 500px;
    margin: 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}


.pangandaran-hero-image {
    height: 390px;
    overflow: hidden;

    border-radius: 30px;

    background: #dce7ef;
}


.pangandaran-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   PACKAGES
========================================================= */

.pangandaran-packages {
    padding: 70px 0 90px;
    background: #f5f8fb;
}


.pangandaran-section-heading {
    margin-bottom: 35px;
    text-align: center;
}


.pangandaran-section-heading .pangandaran-label {
    margin-bottom: 12px;
}


.pangandaran-section-heading h2 {
    margin: 0 0 8px;
    color: #092f59;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
}


.pangandaran-section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
}


.pangandaran-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.pangandaran-package-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(9,47,89,0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.pangandaran-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(9,47,89,0.12);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.pangandaran-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #dce7ef;
}


.pangandaran-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.pangandaran-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ca0b3;
    font-size: 13px;
    font-weight: 800;
}


.pangandaran-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    color: #ffffff;
    background: #ff7900;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.pangandaran-card-content {
    padding: 25px;
}


.pangandaran-card-content h3 {
    margin: 0 0 10px;
    color: #092f59;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}


.pangandaran-card-content p {
    min-height: 52px;
    margin: 0 0 20px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}


.pangandaran-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}


.pangandaran-card-info span {
    padding: 7px 10px;
    color: #092f59;
    background: #f1f6fa;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}


.pangandaran-card-bottom {
    padding-top: 18px;
    border-top: 1px solid #edf1f5;
}


.pangandaran-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 130px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    color: #ffffff !important;
    background: #092f59;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.pangandaran-detail-btn:hover {
    color: #ffffff !important;
    background: #ff7900;
    transform: translateY(-2px);
}


.pangandaran-empty {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 18px;
}


.pangandaran-empty h3 {
    margin: 0 0 10px;
    color: #092f59;
}


.pangandaran-empty p {
    margin: 0;
    color: #64748b;
}


/* =========================================================
   MODAL
========================================================= */

.pangandaran-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.pangandaran-modal.is-open {
    visibility: visible;
    opacity: 1;
}


.pangandaran-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,20,38,.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


.pangandaran-modal-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    width: min(900px,100%);
    max-height: 90vh;
    overflow: hidden;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    transform: translateY(20px) scale(.97);
    transition: transform .3s ease;
}


.pangandaran-modal.is-open
.pangandaran-modal-box {
    transform: translateY(0) scale(1);
}


.pangandaran-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #092f59;
    background: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.pangandaran-modal-close:hover {
    color: #ffffff;
    background: #ff7900;
    transform: rotate(90deg);
}


.pangandaran-modal-image {
    min-height: 470px;
    background: #dce7ef;
}


.pangandaran-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
}


.pangandaran-modal-content {
    overflow-y: auto;
    padding: 45px 40px;
}


.pangandaran-modal-badge {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 15px;
    color: #ffffff;
    background: #ff7900;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
}


.pangandaran-modal-content h2 {
    margin: 0 0 15px;
    color: #092f59;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}


.pangandaran-modal-content > p {
    margin: 0 0 30px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


.pangandaran-modal-section {
    padding-top: 22px;
    border-top: 1px solid #e7edf3;
}


.pangandaran-modal-section h3 {
    margin: 0 0 15px;
    color: #092f59;
    font-size: 17px;
    font-weight: 800;
}


.pangandaran-modal-facilities {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}


.pangandaran-modal-facility {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    color: #092f59;
    background: #f1f6fa;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
}


.pangandaran-modal-facility span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    color: #ffffff;
    background: #092f59;
    border-radius: 50%;
    font-size: 11px;
}


.pangandaran-modal-empty {
    color: #94a3b8;
    font-size: 13px;
}


.pangandaran-modal-action {
    margin-top: 30px;
}


.pangandaran-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    color: #ffffff !important;
    background: #ff7900;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition:
        background .2s ease,
        transform .2s ease;
}


.pangandaran-modal-whatsapp:hover {
    color: #ffffff !important;
    background: #e96c00;
    transform: translateY(-2px);
}


body.pangandaran-modal-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .pangandaran-hero {
        padding: 100px 0 50px;
    }


    .pangandaran-hero .pangandaran-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .pangandaran-hero-content {
        padding-left: 0;
    }


    .pangandaran-hero h1 {
        font-size: 64px;
    }


    .pangandaran-hero-image {
        height: 300px;
        border-radius: 24px;
    }


    .pangandaran-package-grid {
        grid-template-columns: 1fr;
    }


    .pangandaran-modal {
        padding: 15px;
    }


    .pangandaran-modal-box {
        display: block;
        max-height: 92vh;
        overflow-y: auto;
        border-radius: 20px;
    }


    .pangandaran-modal-image {
        height: 230px;
        min-height: 230px;
    }


    .pangandaran-modal-image img {
        height: 230px;
        min-height: 230px;
    }


    .pangandaran-modal-content {
        padding: 28px 22px 25px;
    }


    .pangandaran-modal-content h2 {
        font-size: 27px;
    }


    .pangandaran-modal-facilities {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   JOGJAKARTA
========================================================= */

.jogjakarta-container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.jogjakarta-hero {
    padding: 120px 0 70px;
    background: #ffffff;
}


.jogjakarta-hero .jogjakarta-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}


.jogjakarta-hero-content {
    padding-left: 20px;
}


.jogjakarta-label {
    margin-bottom: 22px;
    color: #ff7900;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}


.jogjakarta-hero h1 {
    margin: 0 0 18px;
    color: #092f59;
    font-size: clamp(60px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 800;
}


.jogjakarta-hero p {
    max-width: 500px;
    margin: 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}


.jogjakarta-hero-image {
    height: 390px;
    overflow: hidden;
    border-radius: 30px;
    background: #dce7ef;
}


.jogjakarta-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   PACKAGES
========================================================= */

.jogjakarta-packages {
    padding: 70px 0 90px;
    background: #f5f8fb;
}


.jogjakarta-section-heading {
    margin-bottom: 35px;
    text-align: center;
}


.jogjakarta-section-heading .jogjakarta-label {
    margin-bottom: 12px;
}


.jogjakarta-section-heading h2 {
    margin: 0 0 8px;
    color: #092f59;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
}


.jogjakarta-section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
}


.jogjakarta-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.jogjakarta-package-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(9,47,89,0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.jogjakarta-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(9,47,89,0.12);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.jogjakarta-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #dce7ef;
}


.jogjakarta-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.jogjakarta-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ca0b3;
    font-size: 13px;
    font-weight: 800;
}


.jogjakarta-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    color: #ffffff;
    background: #ff7900;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.jogjakarta-card-content {
    padding: 25px;
}


.jogjakarta-card-content h3 {
    margin: 0 0 10px;
    color: #092f59;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}


.jogjakarta-card-content p {
    min-height: 52px;
    margin: 0 0 20px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}


.jogjakarta-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}


.jogjakarta-card-info span {
    padding: 7px 10px;
    color: #092f59;
    background: #f1f6fa;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}


.jogjakarta-card-bottom {
    padding-top: 18px;
    border-top: 1px solid #edf1f5;
}


.jogjakarta-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 130px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    color: #ffffff !important;
    background: #092f59;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.jogjakarta-detail-btn:hover {
    color: #ffffff !important;
    background: #ff7900;
    transform: translateY(-2px);
}


.jogjakarta-empty {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 18px;
}


.jogjakarta-empty h3 {
    margin: 0 0 10px;
    color: #092f59;
}


.jogjakarta-empty p {
    margin: 0;
    color: #64748b;
}


/* =========================================================
   MODAL
========================================================= */

.jogjakarta-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.jogjakarta-modal.is-open {
    visibility: visible;
    opacity: 1;
}


.jogjakarta-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,20,38,.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


.jogjakarta-modal-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    width: min(900px,100%);
    max-height: 90vh;
    overflow: hidden;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    transform: translateY(20px) scale(.97);
    transition: transform .3s ease;
}


.jogjakarta-modal.is-open
.jogjakarta-modal-box {
    transform: translateY(0) scale(1);
}


.jogjakarta-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #092f59;
    background: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.jogjakarta-modal-close:hover {
    color: #ffffff;
    background: #ff7900;
    transform: rotate(90deg);
}


.jogjakarta-modal-image {
    min-height: 470px;
    background: #dce7ef;
}


.jogjakarta-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
}


.jogjakarta-modal-content {
    overflow-y: auto;
    padding: 45px 40px;
}


.jogjakarta-modal-badge {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 15px;
    color: #ffffff;
    background: #ff7900;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
}


.jogjakarta-modal-content h2 {
    margin: 0 0 15px;
    color: #092f59;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}


.jogjakarta-modal-content > p {
    margin: 0 0 30px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


.jogjakarta-modal-section {
    padding-top: 22px;
    border-top: 1px solid #e7edf3;
}


.jogjakarta-modal-section h3 {
    margin: 0 0 15px;
    color: #092f59;
    font-size: 17px;
    font-weight: 800;
}


.jogjakarta-modal-facilities {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}


.jogjakarta-modal-facility {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    color: #092f59;
    background: #f1f6fa;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
}


.jogjakarta-modal-facility span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    color: #ffffff;
    background: #092f59;
    border-radius: 50%;
    font-size: 11px;
}


.jogjakarta-modal-empty {
    color: #94a3b8;
    font-size: 13px;
}


.jogjakarta-modal-action {
    margin-top: 30px;
}


.jogjakarta-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    color: #ffffff !important;
    background: #ff7900;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    transition:
        background .2s ease,
        transform .2s ease;
}


.jogjakarta-modal-whatsapp:hover {
    color: #ffffff !important;
    background: #e96c00;
    transform: translateY(-2px);
}


body.jogjakarta-modal-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .jogjakarta-hero {
        padding: 100px 0 50px;
    }


    .jogjakarta-hero .jogjakarta-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .jogjakarta-hero-content {
        padding-left: 0;
    }


    .jogjakarta-hero h1 {
        font-size: 64px;
    }


    .jogjakarta-hero-image {
        height: 300px;
        border-radius: 24px;
    }


    .jogjakarta-package-grid {
        grid-template-columns: 1fr;
    }


    .jogjakarta-modal {
        padding: 15px;
    }


    .jogjakarta-modal-box {
        display: block;
        max-height: 92vh;
        overflow-y: auto;
        border-radius: 20px;
    }


    .jogjakarta-modal-image {
        height: 230px;
        min-height: 230px;
    }


    .jogjakarta-modal-image img {
        height: 230px;
        min-height: 230px;
    }


    .jogjakarta-modal-content {
        padding: 28px 22px 25px;
    }


    .jogjakarta-modal-content h2 {
        font-size: 27px;
    }


    .jogjakarta-modal-facilities {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   POSISI CTA PANGANDARAN
   CTA HARUS BERADA DI BAWAH SEMUA CARD
========================================================= */

.pangandaran-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 20px;
}
/* =========================================================
   CTA PANGANDARAN
========================================================= */

.pangandaran-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 40px;

    background:
        linear-gradient(
            110deg,
            #092f59 0%,
            #17608f 100%
        );

    border-radius: 22px;
}


.pangandaran-cta-content {
    flex: 1;
}


.pangandaran-cta-content
.pangandaran-label {
    margin-bottom: 10px;
}


.pangandaran-cta-box h2 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    max-width: 650px;

}


.pangandaran-cta-box p {
    margin: 0;

    color: rgba(255,255,255,.85);

    font-size: 14px;
    line-height: 1.6;
}


.pangandaran-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    flex-shrink: 0;

    padding: 16px 24px;

    color: #ffffff !important;

    background: #ff7900;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}


.pangandaran-cta-button:hover {
    color: #ffffff !important;

    background: #e96c00;

    transform: translateY(-2px);
}


.pangandaran-cta-button span {
    font-size: 18px;
}
/* =========================================================
   STUDY TOUR - SHORT DESCRIPTION
========================================================= */

.study-package-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 66px;
}


/* =========================================================
   STUDY TOUR - DETAIL BUTTON
========================================================= */

.study-package-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    padding: 11px 18px;

    border: none;
    border-radius: 8px;

    background: #0b3b70;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.study-package-detail-button:hover {
    background: #ff7800;
    transform: translateY(-2px);
}

.study-package-detail-button span {
    font-size: 17px;
}


/* =========================================================
   STUDY TOUR POPUP - FIX
========================================================= */

.study-package-modal {
    position: fixed !important;
    inset: 0 !important;

    display: none !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 100% !important;

    padding: 20px !important;

    box-sizing: border-box !important;

    background: rgba(0, 0, 0, 0.72) !important;

    z-index: 999999 !important;
}

.study-package-modal.is-open {
    display: flex !important;
}


/* LAPISAN GELAP */
.study-modal-overlay {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background: transparent !important;

    z-index: 1 !important;
}


/* KOTAK POPUP */
.study-modal-box {
    position: relative !important;

    z-index: 10 !important;

    width: 760px !important;
    max-width: calc(100% - 20px) !important;

    max-height: 85vh !important;

    overflow-y: auto !important;

    margin: 0 auto !important;

    padding: 35px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border-radius: 18px !important;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35) !important;

    transform: none !important;

    opacity: 1 !important;

    visibility: visible !important;
}


/* TOMBOL X */
.study-modal-close {
    position: absolute !important;

    top: 15px !important;
    right: 15px !important;

    z-index: 20 !important;

    width: 38px !important;
    height: 38px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: #f1f4f7 !important;

    color: #073b70 !important;

    font-size: 25px !important;

    line-height: 1 !important;

    cursor: pointer !important;
}

.study-modal-close:hover {
    background: #ff7800 !important;
    color: #ffffff !important;
}


/* LABEL */
.study-modal-label {
    display: block !important;

    margin-bottom: 10px !important;

    color: #ff7800 !important;

    font-size: 13px !important;

    font-weight: 800 !important;

    letter-spacing: 1.5px !important;
}


/* JUDUL */
.study-modal-box h2 {
    margin: 0 45px 20px 0 !important;

    color: #073b70 !important;

    font-size: 30px !important;

    line-height: 1.25 !important;
}


/* DESKRIPSI */
.study-modal-description h3,
.study-modal-facilities h3 {
    margin: 0 0 10px !important;

    color: #073b70 !important;

    font-size: 18px !important;
}

.study-modal-description p {
    margin: 0 !important;

    color: #55708c !important;

    font-size: 15px !important;

    line-height: 1.8 !important;
}


/* FASILITAS */
.study-modal-facilities {
    margin-top: 25px !important;
}

.study-modal-facilities ul {
    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}

.study-modal-facilities li {
    margin-bottom: 8px !important;

    color: #55708c !important;

    font-size: 15px !important;
}


/* WHATSAPP */
.study-modal-whatsapp {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    margin-top: 25px !important;

    padding: 14px 22px !important;

    border-radius: 8px !important;

    background: #ff7800 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    font-weight: 700 !important;
}


/* DESKRIPSI CARD */
.study-package-excerpt {
    display: -webkit-box !important;

    -webkit-box-orient: vertical !important;

    -webkit-line-clamp: 3 !important;

    overflow: hidden !important;

    line-height: 1.7 !important;
}


/* BUTTON BACA SELENGKAPNYA */
.study-package-detail-button {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    margin-top: 20px !important;

    padding: 12px 20px !important;

    border: none !important;

    border-radius: 8px !important;

    background: #073b70 !important;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    cursor: pointer !important;
}

.study-package-detail-button:hover {
    background: #ff7800 !important;

    color: #ffffff !important;
}


/* MOBILE */
@media (max-width: 768px) {

    .study-modal-box {
        width: 100% !important;

        max-width: 100% !important;

        max-height: 90vh !important;

        padding: 25px !important;
    }

}
/* =========================================================
   KUNCI CARD SAAT POPUP STUDY TOUR TERBUKA
========================================================= */

body:has(.study-package-modal.is-open) .study-package-card {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
}


/* Matikan efek hover card ketika popup terbuka */
body:has(.study-package-modal.is-open) .study-package-card:hover {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}


/* Popup harus selalu berada di atas card */
.study-package-modal.is-open {
    position: fixed !important;
    z-index: 999999 !important;
}


/* Kotak popup tidak boleh ikut berubah ketika cursor masuk */
.study-package-modal.is-open .study-modal-box {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
}
.article-sidebar-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;

    padding: 12px 15px;

    border-radius: 8px;

    background: #ff7900;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.article-sidebar-button:hover {
    background: #e96800;
}
/* ======================================
   HALAMAN ARTIKEL
====================================== */

.single-post-container{
    max-width: 1000px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.single-post-title{
    font-size: 42px;
    line-height: 1.2;
    color: #0B3B75;
    margin-bottom: 25px;
}

.single-post-content{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.single-post-content p{
    margin-bottom: 20px;
}

.single-post-content h2{
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0B3B75;
}

.single-post-content h3{
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0B3B75;
}

.single-post-content img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.single-post-content table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

.single-post-content table th,
.single-post-content table td{
    border:1px solid #ddd;
    padding:12px;
}

.single-post-content table th{
    background:#0B3B75;
    color:white;
}
/* =====================================================
   FIX SINGLE ARTICLE - FINITA TOUR TRAVEL
===================================================== */

.single-article-page {
    width: 100%;
    background: #f8fafc;
}

.single-article-page *,
.single-article-page *::before,
.single-article-page *::after {
    box-sizing: border-box;
}


/* CONTAINER */

.single-article-page .single-article-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* CONTENT AREA */

.single-article-page .single-article-content {
    padding: 60px 0 90px;
}


/* LAYOUT ARTIKEL + SIDEBAR */

.single-article-page .single-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 50px;
    align-items: start;
}


/* ISI ARTIKEL */

.single-article-page .single-article-body {
    width: 100%;
    max-width: 780px;

    font-size: 18px;
    line-height: 1.85;

    color: #3f5065;
}


/* PARAGRAF */

.single-article-page .single-article-body p {
    margin: 0 0 24px;
}


/* JUDUL */

.single-article-page .single-article-body h2 {
    margin: 45px 0 18px;

    font-size: 30px;
    line-height: 1.3;

    color: #0b3b70;
}


.single-article-page .single-article-body h3 {
    margin: 35px 0 15px;

    font-size: 24px;
    line-height: 1.4;

    color: #0b3b70;
}


.single-article-page .single-article-body h4 {
    margin: 30px 0 12px;

    font-size: 20px;

    color: #0b3b70;
}


/* LIST */

.single-article-page .single-article-body ul,
.single-article-page .single-article-body ol {
    margin: 0 0 25px;
    padding-left: 28px;
}


.single-article-page .single-article-body li {
    margin-bottom: 10px;
}


/* GAMBAR DALAM ARTIKEL */

.single-article-page .single-article-body img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 30px auto;

    border-radius: 12px;
}


/* LINK */

.single-article-page .single-article-body a {
    color: #0b3b70;
    font-weight: 600;
}


/* TABLE */

.single-article-page .single-article-body table {
    width: 100%;
    max-width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

    font-size: 16px;
}


.single-article-page .single-article-body th {
    background: #0b3b70;
    color: #ffffff;

    padding: 14px;
    text-align: left;
}


.single-article-page .single-article-body td {
    padding: 14px;

    border: 1px solid #d9e0e7;

    background: #ffffff;
}


/* SIDEBAR */

.single-article-page .single-article-sidebar {
    width: 100%;
}


/* BOX SIDEBAR */

.single-article-page .article-sidebar-box {
    margin-bottom: 20px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e1e7ed;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}


.single-article-page .sidebar-label {
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;

    color: #ff7900;

    letter-spacing: 1px;
}


/* SHARE */

.single-article-page .article-share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.single-article-page .article-share a {
    display: block;

    padding: 10px 12px;

    border-radius: 7px;

    background: #f1f5f9;

    color: #0b3b70;

    text-decoration: none;
}


/* WHATSAPP */

.single-article-page .article-sidebar-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 13px 16px;

    border-radius: 8px;

    background: #ff7900;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


.single-article-page .article-sidebar-button:hover {
    background: #e86c00;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .single-article-page .single-article-layout {
        grid-template-columns: 1fr;
    }

    .single-article-page .single-article-body {
        max-width: 100%;
    }

    .single-article-page .single-article-sidebar {
        max-width: 100%;
    }

}


@media (max-width: 600px) {

    .single-article-page .single-article-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .single-article-page .single-article-content {
        padding: 40px 0 60px;
    }

    .single-article-page .single-article-body {
        font-size: 16px;
        line-height: 1.8;
    }

}
/* =========================================
   UKURAN GAMBAR ARTIKEL
========================================= */

.single-article-featured img {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}
/* =========================================
   JARAK ARTIKEL DARI HEADER
========================================= */

.single-post main,
.single-article,
.single-post {
    padding-top: 50px;
}
/* =========================================
   FORMAT DESKRIPSI POPUP STUDY TOUR
========================================= */

.study-modal-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #45627f;
}

.study-modal-description-text p {
    margin: 0 0 22px;
}

.study-modal-description-text p:last-child {
    margin-bottom: 0;
}

.study-modal-description-text strong {
    font-weight: 700;
}

.study-modal-description-text em {
    font-style: italic;
}

.study-modal-description-text ul,
.study-modal-description-text ol {
    margin: 15px 0 22px;
    padding-left: 25px;
}

.study-modal-description-text li {
    margin-bottom: 8px;
}
/* =====================================================
   FAMILY GATHERING - CARD
===================================================== */

.family-package-excerpt {
    color: #58708a;
    line-height: 1.7;
    margin: 10px 0 20px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.family-package-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 10px;

    background: #0b3b70;
    color: #fff;

    padding: 13px 20px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}

.family-package-detail-button:hover {
    background: #ff7900;
    transform: translateY(-1px);
}

.family-package-detail-button span {
    font-size: 18px;
}


/* =====================================================
   FAMILY GATHERING - MODAL
===================================================== */

.family-package-modal {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;

    box-sizing: border-box;
}


/* SAAT AKTIF */

.family-package-modal.is-open {
    display: flex;
}


/* BACKGROUND GELAP */

.family-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    cursor: pointer;
}


/* KOTAK POPUP */

.family-modal-box {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 720px;

    max-height: 85vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 18px;

    padding: 38px;

    box-sizing: border-box;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}


/* TOMBOL CLOSE */

.family-modal-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #f1f5f9;

    color: #0b3b70;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;
}

.family-modal-close:hover {
    background: #ff7900;
    color: #ffffff;
}


/* LABEL */

.family-modal-label {
    display: block;

    margin-bottom: 10px;

    color: #ff7900;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* JUDUL */

.family-modal-box h2 {
    margin: 0 50px 12px 0;

    color: #0b3b70;

    font-size: 30px;

    line-height: 1.2;
}


/* BADGE */

.family-modal-category {
    display: inline-block;

    margin-bottom: 22px;

    padding: 7px 13px;

    border-radius: 7px;

    background: #7451d1;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


/* DESKRIPSI */

.family-modal-description {
    margin-top: 10px;
}

.family-modal-description h3,
.family-modal-facilities h3 {
    margin: 0 0 12px;

    color: #0b3b70;

    font-size: 18px;
}

.family-modal-description-text {
    color: #4b6b8c;

    font-size: 16px;

    line-height: 1.8;
}
/* FORMAT ISI DESKRIPSI FAMILY GATHERING */

.family-modal-description-text p {
    margin: 0 0 22px;
}

.family-modal-description-text p:last-child {
    margin-bottom: 0;
}

.family-modal-description-text h1,
.family-modal-description-text h2,
.family-modal-description-text h3,
.family-modal-description-text h4 {
    color: #0b3b70;
    margin: 25px 0 12px;
    line-height: 1.3;
}

.family-modal-description-text strong {
    font-weight: 700;
}

.family-modal-description-text em {
    font-style: italic;
}

/* BULLET LIST */
.family-modal-description-text ul {
    margin: 15px 0 22px;
    padding-left: 28px;
    list-style-type: disc;
}

/* NUMBERED LIST */
.family-modal-description-text ol {
    margin: 15px 0 22px;
    padding-left: 28px;
    list-style-type: decimal;
}

/* ITEM LIST */
.family-modal-description-text li {
    margin-bottom: 8px;
}

/* FASILITAS */

.family-modal-facilities {
    margin-top: 28px;
}

.family-modal-facilities ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.family-modal-facilities li {
    display: flex;

    gap: 9px;

    margin-bottom: 9px;

    color: #4b6b8c;

    font-size: 15px;

    line-height: 1.6;
}

.family-modal-facilities li span {
    color: #ff7900;

    font-weight: 800;
}


/* HARGA */

.family-modal-price {
    margin-top: 28px;

    padding: 18px 20px;

    border-radius: 12px;

    background: #f4f8fc;
}

.family-modal-price small {
    display: block;

    color: #64748b;

    margin-bottom: 4px;
}

.family-modal-price strong {
    color: #0b3b70;

    font-size: 24px;
}

.family-modal-price span {
    color: #64748b;

    margin-left: 5px;
}


/* WHATSAPP */

.family-modal-whatsapp {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 25px;

    padding: 15px 20px;

    box-sizing: border-box;

    border-radius: 10px;

    background: #ff7900;

    color: #ffffff !important;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: all 0.2s ease;
}

.family-modal-whatsapp:hover {
    background: #e86600;

    transform: translateY(-1px);
}


/* =====================================================
   BODY SAAT MODAL TERBUKA
===================================================== */

body.family-modal-open {
    overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .family-package-modal {
        padding: 15px;
    }

    .family-modal-box {
        max-height: 90vh;

        padding: 28px 22px;

        border-radius: 15px;
    }

    .family-modal-box h2 {
        font-size: 24px;
    }

    .family-modal-description-text {
        font-size: 15px;
    }

}
/* =========================================================
   SPASI PARAGRAF POPUP FAMILY GATHERING
========================================================= */

.family-modal-description-text p {
    margin: 0 0 22px;
    line-height: 1.8;
}

.family-modal-description-text p:last-child {
    margin-bottom: 0;
}

.family-modal-description-text h1,
.family-modal-description-text h2,
.family-modal-description-text h3,
.family-modal-description-text h4 {
    margin: 28px 0 14px;
    line-height: 1.3;
}

.family-modal-description-text ul,
.family-modal-description-text ol {
    margin: 15px 0 22px;
    padding-left: 25px;
}

.family-modal-description-text li {
    margin-bottom: 8px;
    line-height: 1.7;
}