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

html {
    background-color: #023047;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* Ganti height: 100% jadi min-height */
    overflow-x: hidden;
    overflow-y: auto;
    /* Selalu allow scroll Y */
    background-color: #023047;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
    background: transparent;
    font-family: 'Cocogoose Pro', sans-serif;
}

.navbar.scrolled {
    padding: 5px 10%;
    background: #023047;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-navbar {
    height: 50px;
    width: auto;
    transition: height 0.4s ease;
    transform: translateX(-15px);
}

.navbar.scrolled .logo-navbar {
    height: 30px;
    transform: translateY(4px) translateX(-15px);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #fdfaf6;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.nav-menu li a {
    color: #fdfaf6;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 1rem;
    }

    .logo-navbar {
        width: auto;
        height: 40px;
        transform: translateX(-15px);
    }

    .navbar-scrolled .logo-navbar {
        height: 45px;
    }
}

nav .logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
}

nav ul li a:hover {
    opacity: 0.7;
}

.hamburger {
    position: absolute;
    display: none;
    top: 50%px;
    right: 20px;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    align-items: center;
}

.hamburger .bar {
    height: 3.5px;
    width: 100%;
    background: #fdfaf6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Animasi X kecil smooth */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.navbar-scrolled .hamburger {
    position: relative;
    top: 10px;
    transform: translateY(4px);
}

/* MOBILE DROPDOWN KECIL */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 10px;
        /* Dropdown dari bawah hamburger */
        right: 10px;
        width: 200px;
        background: rgba(2, 48, 71, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 12px;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 25px;
        font-size: 1rem;
        /* Kecil seperti FAQ di contoh */
        font-weight: 500;
        color: #fdfaf6;
        text-align: left;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0d0d0d;
}

/* HERO VIDEO */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Di bawah gradient overlay */
    display: none;
    /* Hide default, tampilkan di desktop */
}

/* HIDE/SHOW LOGIC UNTUK HERO */
@media (min-width: 769px) {
    .desktop-video {
        display: block;
    }

    .mobile-slideshow {
        display: none !important;
    }
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.00);
    transition: opacity 2.2s ease-in-out, transform 12s ease-in-out;
}

/* gambar aktif */
.hero-slide.active {
    opacity: 1;
    transform: scale(1.20);
}

@keyframes heroZoom {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1.30);
    }
}

/* overlay gelap */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* teks tetap di atas slide */
.hero-content {
    position: relative;
    top: 30%;
    left: 0%;
    transform: translate(-50%, -50%);
    text-align: left;
    padding: 0 1rem;
    z-index: 2;
    max-width: 570px;
    color: #fff;
    font-family: 'Cocogoose Pro', sans-serif;


    /* smooth fade in */
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background:rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
} */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeInUpMobile {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-left: 0 !important;
        justify-content: center !important;
    }

    .hero-content {
        top: 0 !important;
        left: 0 !important;
        transform: translateY(0) !important;
        animation: fadeInUpMobile 1.5s ease forwards !important;
        text-align: center !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

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

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

    .desktop-only {
        display: none !important;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 45px;
    height: 70px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-10%) scale(1.1);
}

.left-arrow {
    left: 30px;
}

.right-arrow {
    right: 30px;
}

/* RESPONSIF MOBILE ARROW */

@media (max-width: 768px) {
    .hero-arrow {
        display: none;
    }
}

/* HERO DOTS INDICATOR */
.hero-dots {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile: Dots lebih kecil */
@media (max-width: 768px) {
    .hero-dots {
        bottom: -15px;
        gap: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

/* DESTINATIONS */
.destinations {
    padding: 100px 10%;
    background: #023047;
    text-align: center;
}

.section-label {
    color: #8ECAE6;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Cocogoose Pro', sans-serif;
}

.section-title {
    color: #fdfaf6;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
    font-family: 'GC Palioka', sans-serif;
    line-height: 1.2;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.dest-card {
    background: #fdfaf6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.dest-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.8s ease;
}

.card-content {
    padding: 22px 20px 24px;
    text-align: left;
    background-color: #fdfaf6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* ICON CIRCLE */
.card-icon {
    width: 48px;
    height: 48px;
    background-color: #023047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fdfaf6;
}

.dest-card:hover .card-icon {
    background-color: #219EBC;
}

.card-content h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #023047;
    line-height: 1.3;
    font-family: 'Cocogoose Pro', sans-serif;
    font-weight: 700;
}

.card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #5a7080;
    line-height: 1.6;
    flex: 1;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #219EBC;
    font-family: 'Cocogoose Pro', sans-serif;
    margin-top: 4px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.cta-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.dest-card:hover .card-cta {
    color: #023047;
}

.dest-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* RESPONSIVE DEST CARD MOBILE*/
@media(max-width: 900px) {
    nav ul {
        display: none;
    }

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

    .gallery-grid {
        display: flex;
        gap: 15px;
    }

    .dest-card img {
        display: block;
        width: 100%;
        height: 180px;
        margin: 0;
        object-fit: cover;
    }

    .destinations {
        padding: 80px 5%;
    }

    .card-image {
        height: 150px;
    }

    .card-content {
        padding: 14px 14px 18px;
        gap: 8px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-content h3 {
        font-size: 0.9rem;
    }

    .card-desc {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-cta {
        font-size: 0.8rem;
    }
}

/* GALLERY */
.gallery {
    padding: 100px 10%;
    text-align: center;
    background: #023047;
}

.gallery h2 {
    color: #fdfaf6;
    font-size: clamp(2rem, 2vw, 2.8rem);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Spacer buat panah */
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    /* Pastikan tidak ada tombol bawaan OS */
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-arrow svg {
    width: 35px;
    height: 35px;
    stroke-width: 1.5;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-arrow:hover svg {
    opacity: 1;
    transform: scale(1.15);
    /* Efek membesar khusus untuk iconnya saja */
}

.gallery-arrow:active svg {
    transform: scale(0.9);
}

.gallery-left {
    left: -10px;
}

.gallery-right {
    right: -10px;
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-grid img {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    scroll-snap-align: center;
    background: #0d0d0d;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    transition: transform .35s ease,
}


.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        gap: 15px;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }

    .gallery {
        padding: 80px 5%;
    }

    .gallery-item {
        min-width: 85%;
    }
}

/* ================================= */
/* FLEET / ARMADA SECTION            */
/* ================================= */
.fleet {
    padding: 100px 10%;
    background: #f0f4f8;
    text-align: center;
}

.fleet-label {
    color: #219EBC !important;
}

.fleet-title {
    color: #023047 !important;
    margin-bottom: 16px !important;
}

.fleet-subtitle {
    color: #5a7080;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 50px;
    font-family: system-ui, -apple-system, sans-serif;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fleet-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(2, 48, 71, 0.13);
}

/* Capacity badge - top right */
.fleet-capacity-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #10B981;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: 0.2px;
}

/* Vehicle image area */
.fleet-img-wrap {
    width: 100%;
    height: 190px;
    background: #ffffff;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px 8px;
    flex-shrink: 0;
}

.fleet-vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

/* Info section */
.fleet-info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.fleet-name {
    color: #023047;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Cocogoose Pro', system-ui, sans-serif;
}

/* Price row */
.fleet-price-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fleet-price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    gap: 4px;
}

.fleet-price-divider {
    width: 1px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.fleet-price-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.73rem;
    color: #64748b;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

.fleet-price-label svg {
    flex-shrink: 0;
    stroke: #10B981;
}

.fleet-price-amount {
    font-size: 0.88rem;
    font-weight: 700;
    color: #023047;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Includes label */
.fleet-includes {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #64748b;
    font-family: system-ui, -apple-system, sans-serif;
    margin-top: -4px;
}

.fleet-includes svg {
    flex-shrink: 0;
    stroke: #10B981;
}

/* Book button */
.fleet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #10B981;
    color: #fff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'Cocogoose Pro', system-ui, sans-serif;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: auto;
}

.fleet-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Responsive fleet */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .fleet {
        padding: 80px 5%;
    }

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

    .fleet-img-wrap {
        height: 160px;
    }
}


/* ================================= */
/* WHY CHOOSE US                     */
/* ================================= */
.why-us {
    padding: 100px 10%;
    background: #023047;
    text-align: center;
}

.why-us .section-label {
    color: #8ECAE6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

/* Hidden feature item - 4th item hidden by default, display toggled via JS */
.hidden-feature {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hidden-feature.show {
    opacity: 1;
    transform: translateY(0);
}

/* Expanded grid (shows 4th item) */
.features-grid.expanded {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* View All button wrapper */
.whyus-viewall-wrap {
    text-align: center;
    margin-top: 40px;
}

/* View All button */
.whyus-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    border: 2px solid rgba(142, 202, 230, 0.5);
    color: #8ECAE6;
    font-family: 'Cocogoose Pro', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.whyus-viewall-btn:hover {
    background: rgba(142, 202, 230, 0.12);
    border-color: #8ECAE6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(142, 202, 230, 0.2);
}

.whyus-viewall-btn svg {
    transition: transform 0.35s ease;
}

.whyus-viewall-btn.open svg {
    transform: rotate(180deg);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fdfaf6;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #FFB703;
    color: #023047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-item h3 {
    color: #023047;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-item p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-us {
        padding: 80px 5%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 25px 15px;
    }
}

/* POPULAR PACKAGES */
.popular-packages {
    padding: 80px 10%;
    background: #fdfaf6;
    text-align: center;
}

.popular-packages .section-label {
    color: #023047;
}

.popular-packages .section-title {
    color: #023047;
}

/* TOUR GRID & CARDS (SHARED WITH CATEGORY) */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-card {
    background: #023047;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.tour-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #219EBC;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.tour-info {
    padding: 20px;
    background: #023047;
    transition: background 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #fdfaf6;
    font-family: 'Cocogoose Pro', sans-serif;
}

.tour-info .price {
    color: #8ECAE6;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: auto;
    font-family: system-ui, -apple-system, sans-serif;
}

@media (max-width: 768px) {
    .popular-packages {
        padding: 60px 5%;
    }

    .tour-grid {
        gap: 20px;
    }

    .tour-card img {
        height: 180px;
    }

    .tour-info h3 {
        font-size: 1.15rem;
    }

    .tour-info .price {
        font-size: 1.15rem;
    }
}


/* FOOTER */
footer {
    padding: 30px 10%;
    background: #0d0d0d;
    color: white;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-inner p {
    margin: 0;
    opacity: 0.7;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-ig,
.footer-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.3s ease;
}

.footer-ig svg,
.footer-wa svg {
    transition: transform 0.3s ease;
}

.footer-ig:hover {
    color: #E1306C;
}

.footer-wa:hover {
    color: #25D366;
}

.footer-ig:hover svg,
.footer-wa:hover svg {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* FADE ANIMATION */
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* PRELOADER / LOADING SCREEN */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdfaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1.8s ease-out, visibility 1.8s ease-out;
}

/* .preloader::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
} */

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* .logo-breath {
    -webkit-animation: fadeInLogo 2s ease forwards, brightnessBreath 4.5s ease-in-out 2s infinite;
    width: 140px; 
    height: auto;
    margin: 0 auto 40px;
    display: block;
    opacity: 0;
    animation: fadeInLogo 2s ease forwards, brightnessBreath 4.5 ease-in-out 2s infinite;
} */

.logo-breath {
    width: 140px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    opacity: 0;
    animation: fadeInLogo 1.2s ease forwards, colorBreath 2s ease-in-out infinite;
}

/* Fade in awal + translate up */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes colorBreath {
    0% {
        filter: brightness(1) hue-rotate(0deg) invert(0);
        transform: scale(1);
    }

    50% {
        filter: brightness(0) hue-rotate(0deg) invert(1);
        transform: scale(1);
    }

    100% {
        filter: brightness(1) hue-rotate(0deg) invert(0);
        transform: scale(1);
    }
}

/* FLOATING WHATSAPP BUTTON */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    font-family: 'Cocogoose Pro', sans-serif;
    font-weight: 600;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background-color: #128C7E;
}

.wa-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.wa-icon {
    width: 35px;
    height: 35px;
}

/* Mobile: Lebih kecil & rapi */
@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: -10px;
        min-width: 60px;
    }

    .wa-text {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
    }

    .wa-float:hover {
        background: transparent;
        box-shadow: none;
    }
}

/* ======================================= */
/* TESTIMONIALS SECTION                    */
/* ======================================= */
.testimonials {
    padding: 100px 10%;
    background: #f0f4f8;
    text-align: center;
}

.testi-label {
    color: #219EBC !important;
}

.testi-heading {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #023047;
    margin: 0 0 14px;
    font-family: 'GC Palioka', sans-serif;
    letter-spacing: -0.5px;
}

.testi-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.7;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Orange decorative line */
.testi-divider {
    width: 60px;
    height: 4px;
    background: #FB8500;
    border-radius: 4px;
    margin: 0 auto 56px;
}

/* ---- Slider wrapper ---- */
.testi-slider-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Arrow buttons */
.testi-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #475569;
    z-index: 2;
}

.testi-arrow:hover {
    background: #023047;
    color: #fff;
    box-shadow: 0 6px 20px rgba(2,48,71,0.25);
    transform: scale(1.08);
}

/* Track — shows one card, clips overflow */
.testi-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

/* Each card */
.testi-card {
    display: none;
    background: #fff;
    border-radius: 18px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: left;
    animation: testiSlideIn 0.45s ease forwards;
}

.testi-card.active {
    display: block;
}

@keyframes testiSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Author row */
.testi-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

/* Avatar circle */
.testi-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e0eaf2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7fa2bb;
    overflow: hidden;
}

/* Name + trip label */
.testi-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testi-author-info strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #023047;
    font-family: system-ui, -apple-system, sans-serif;
}

.testi-author-info span {
    font-size: 0.88rem;
    color: #64748b;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Stars */
.testi-stars {
    font-size: 1.25rem;
    color: #F59E0B;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* Quote text */
.testi-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testi-dot.active {
    background: #023047;
    transform: scale(1.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 5%;
    }

    .testi-slider-wrap {
        gap: 10px;
    }

    .testi-card {
        padding: 26px 22px;
    }

    .testi-arrow {
        width: 38px;
        height: 38px;
    }
}