* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;

    background: #f8f9fa;
    color: #08424d;
    line-height: 1.6;
}

/* Heading khusus card */
.trip-title,
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(244, 251, 251);
    padding: 1rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span {
    color: #ff6600;
}

.logo img {
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
nav a:hover {
    color: #001eff;
}
.header-buttons .btn {
    background: #08424D;
    border: none;
    padding: 0.6rem 1.2rem;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}
.header-buttons .btn:hover {
    background: #cc5200;
}
.btn-secondary {
    background: transparent;
    border: 1px solid #ff6600;
    padding: 0.5rem 1rem;
    color: #ff6600;
    cursor: pointer;
}

.chat-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff !important;
    padding: 0.75rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.2s ease-in-out;
}

.chat-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.chat-whatsapp img {
    width: 1.25rem;
    height: 1.25rem;
}


/* ===== Glassmorphism Sidebar == */

.sidebar-glass {
    position: fixed;
    top: 0;
    right: -320px; /* hidden */
    width: 300px;
    height: 100%;
    padding: 2rem 1.7rem;
    z-index: 2000;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Rounded corner */
    border-radius: 24px 0 0 24px;

    /* Border faint */
    border-left: 1px solid rgba(255, 255, 255, 0.25);

    /* Animation */
    transition: right 0.35s ease;
}

.sidebar-glass ul {
    list-style: none;
    margin-top: 50px;
    padding-left: 0;
}

.sidebar-glass ul li {
    margin-bottom: 1.4rem;
}

.sidebar-glass ul li a {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;

    /* White glow */
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.close-btn {
    font-size: 1.9rem;
    cursor: pointer;
    text-align: right;
    color: #fff;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
    z-index: 1500;
    display: none;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 2.3rem;
    cursor: pointer;
    color: #08424D;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}


/* RESPONSIVE MENU */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        animation: fadeSlide 0.3s ease forwards;
    }
    nav ul.show {
        display: flex;
    }
   .menu-toggle {
        position: absolute;
        display:block;
        right: 1rem;  /* geser sampai pinggir */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
        user-select: none;
        transition: 0.3s ease;
    }
/* ANIMASI */
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 768px) {
    header {
        padding-left: 5px !important;
    }

    .logo {
        margin-left: 5px !important;
        padding-left: 5px !important;
    }

    .logo img {
        display: block;
        margin-left: 5px !important;
    }
 }


.hero-search {
    justify-content: center;
}
:root{
      --bg:#FAF9F7; --panel:#ffffff; --muted:#6B6B6B; --accent:#2F5E3A; --accent-2:#D98A3F; --glass: rgba(255,255,255,0.6);
      --radius:14px; --max-width:1100px;
    }
    @media (prefers-color-scheme: dark){
      :root{ --bg:#0F1412; --panel:#111827; --muted:#BFBFBF; --accent:#8CC78B; --accent-2:#FFB57E; --glass: rgba(0,0,0,0.45);}    
    }
    *{box-sizing:border-box}
    html,
    body{
    height:100%;
    margin:0;
    font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background:var(--bg);

}
    a{color:inherit}
    .container{max-width:var(--max-width);margin:0 auto;padding:24px}

    /* HERO */

    
    .hero{position:relative;display:block;border-radius:18px;overflow:hidden;margin-bottom:28px}
    .hero video{width:100%;height:360px;object-fit:cover;display:block}
    .hero .overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:28px;background:linear-gradient(180deg,transparent 40%, rgba(0,0,0,0.28) 100%);color:white}
    .hero h1{margin:0;font-size:clamp(20px,4vw,36px);line-height:1.05;font-weight:700;letter-spacing:-0.02em;text-shadow:0 6px 24px rgba(0,0,0,0.35)}
    .hero p{margin:10px 0 18px;max-width:70%}
    .btn{display:inline-block;padding:10px 16px;border-radius:10px;background:var(--accent);color:#fff;text-decoration:none;font-weight:600}
    .btn.alt{background:transparent;border:1px solid rgba(255,255,255,0.12)}

    /* MANIFESTO */
    .manifesto{margin:24px 0;padding:28px;border-radius:12px;background:linear-gradient(180deg,var(--panel), transparent);backdrop-filter:blur(4px)}
    .manifesto p{font-size:18px;margin:0;line-height:1.4}

    /* TIMELINE */
    .timeline{display:flex;flex-direction:column;gap:18px;margin:26px 0}
    .timeline .item{display:flex;gap:12px;align-items:flex-start}
    .timeline .thumb{width:84px;height:64px;border-radius:8px;overflow:hidden;flex:0 0 84px}
    .timeline .thumb img{width:100%;height:100%;object-fit:cover;display:block}
    .timeline .meta{flex:1}
    .timeline .year{font-weight:700;color:var(--accent)}
    .timeline .desc{color:var(--muted);margin-top:6px}

    /* STATS */
    .stats{display:flex;gap:12px;flex-wrap:wrap;margin:22px 0}
    .stat{flex:1 1 30%;min-width:140px;background:var(--panel);padding:18px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.06)}
    .stat .num{font-size:22px;font-weight:800;color:var(--accent);}
    .stat .label{color:var(--muted);margin-top:6px}

    /* TEAM */
    .team{margin:20px 0}
    .team-row{display:flex;gap:12px;overflow-x:auto;padding-bottom:8px}
    .team-card{width: 350px;          /* atur sesuai kebutuhan */
  max-width: 100%;       /* biar tetap responsif */
  background: #fff;
  border-radius: 14px;
  overflow: hidden;;box-shadow:0 8px 30px rgba(0,0,0,0.06)}
    .team-card h4{margin:15px 4px 4px}
    .team-card p{margin:15px;color:var(--muted);font-size:14px}

.team-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.team-wrapper::-webkit-scrollbar {
  height: 8px;        /* buat tipis */
}

.team-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.team-card {
  flex: 0 0 260px;     /* LEBAR CARD FIX */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.team-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}



    /* TESTIMONIALS */
    .testimonials{display:flex;gap:12px;overflow:auto;padding:8px 0}
    .testi{min-width:300px;background:linear-gradient(180deg,var(--panel),transparent);padding:16px;border-radius:12px;position:relative}
    .testi .quote{font-style:italic;color:var(--muted)}
    .polaroid{width:64px;height:64px;border-radius:6px;overflow:hidden;margin-top:12px}

    /* OFFERS */
    .offers{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px;margin:22px 0}
    .offer{padding:14px;background:var(--panel);border-radius:12px;text-align:center}

    /* FOOTER */
footer {
    background:#0b5b5b;
    color: rgb(243, 242, 245);
    padding: 2rem;
    text-align: center;
  
    
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #f0af1d;
    text-decoration: none;
}

    /* CTA FOOTER */
    .cta-footer{display:flex;gap:12px;align-items:center;justify-content:space-between;padding:20px;border-radius:12px;background:linear-gradient(90deg, rgba(47,94,58,0.08), rgba(217,138,63,0.04));margin:26px 0}

    /* responsive */
    @media(min-width:900px){
      .hero video{height:520px}
      .container{padding:40px}
      .timeline .item{gap:18px}
      .stat{flex-basis:32%}
      .team-row{gap:18px}
    }

    /* small helper */
    .muted{color:var(--muted)}
    .center{text-align:center}
    .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* FOOTER */
footer {
    background:#0b5b5b;
    color: rgb(243, 242, 245);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #f0af1d;
    text-decoration: none;
}

/* RESPONSIVE MENU */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        animation: fadeSlide 0.3s ease forwards;
    }
    nav ul.show {
        display: flex;
    }
   .menu-toggle {
        position: absolute;
        display:block;
        right: 1rem;  /* geser sampai pinggir */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
        user-select: none;
        transition: 0.3s ease;
    }
    }

.story-box {
    height: 50px;
    overflow: hidden;
}

.story-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F4AC1E;
    padding: 0px 20px;
    border-radius: 8px;
}

.story-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.story-content h2 {
    color: white;
    font-size: 0.8rem;
    margin: 0 0 0px 0;
}

.story-content p {
    color: white;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}


.values-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
/* Card style */
.value-card {
  width: 100%;              /* 🔥 biar full selebar container */
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

/* Icon */
.value-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Texts */
.value-card h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.value-card p {
  margin: 0;
  line-height: 1.55;
  font-size: 1rem;
}

.value-card {
  transition: .25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

@media (min-width: 1024px) {
  .value-card:nth-child(even) {
    transform: translateX(40px);
  }
  .value-card:nth-child(odd) {
    transform: translateX(-10px);
  }
}

/* === FAQ Style Terintegrasi dengan halaman "Tentang Kami" === */

.faq-section {
  max-width: 1080px;
  margin: 48px auto;
  padding: 0 24px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #103E35;
}

/* === Header Mini Hero === */
.faq-hero {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.faq-hero img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: cover;
}

.faq-hero-copy h2 {
  margin: 0 0 6px;
  font-size: 1.9rem;
  font-weight: 700;
}

.faq-hero-copy p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.7;
}

/* === Search Input === */
.faq-search {
  margin: 18px 0 24px;
}

.faq-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 62, 53, 0.18);
  background: #fff;
  font-size: 1rem;
  transition: 0.25s;
}

.faq-search input:focus {
  border-color: #103E35;
  outline: none;
  box-shadow: 0 4px 20px rgba(16, 62, 53, 0.08);
}

/* === Step Chips Navigation === */
.faq-steps {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.faq-steps::-webkit-scrollbar { display: none; }

.step-btn {
  padding: 8px 14px;
  border-radius: 18px;
  background: #F6F6F5;
  border: 1px solid rgba(16, 62, 53, 0.1);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: 0.25s;
  white-space: nowrap;
}

.step-btn.active {
  background: #103E35;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(16, 62, 53, 0.18);
}

/* === FAQ Card === */
.faq-item {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(16, 62, 53, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform .25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

/* === Accordion Button === */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #103E35;
}

.faq-q:focus {
  outline: 3px solid rgba(16, 62, 53, 0.2);
}

/* Icon */
.chev {
  font-size: 20px;
  transition: transform .3s ease;
  opacity: 0.8;
}

.faq-item[aria-open="true"] .chev {
  transform: rotate(45deg);
}

/* Answer */
.faq-a {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* DESKTOP */
@media (min-width: 900px) {
  .faq-hero img {
    width: 130px;
    height: 130px;
  }

  .faq-hero-copy h2 {
    font-size: 2.4rem;
  }

  .step-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}


    table.policy{width:100%;border-collapse:collapse;margin-top:12px}
    table.policy td, table.policy th{padding:10px;border:1px solid rgba(0,0,0,0.06)}
    table.policy th{background:rgba(16,62,53,0.04);text-align:left;color:var(--accent)}

    .actions{display:flex;gap:12px;align-items:center;justify-content:space-between;margin-top:20px}
    .actions .left{display:flex;gap:12px;align-items:center}
    .btn{background:var(--accent);color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700;border:0;cursor:pointer}
    .btn.ghost{background:transparent;color:var(--accent);border:1px solid rgba(16,62,53,0.08)}

    .accept-row{display:flex;gap:10px;align-items:center}
    input[type="checkbox"]{width:18px;height:18px}

    footer.note{margin-top:16px;color:var(--muted);font-size:0.95rem}

    /* print friendly */
    @media print{
      body{background:white}
      .actions, .toc{display:none}
      .card{box-shadow:none}
    }

    /* responsive */
    @media(min-width:900px){
      h1{font-size:2rem}
      .header img{width:120px;height:120px}
    }


    /* ==== FIX GAMBAR AGAR FULL WIDTH ==== */

.fullwidth-section {
    width: 100vw;          /* benar-benar selebar layar */
    margin-left: 50%;
    transform: translateX(-50%); /* menghapus batasan container */
}

.fullwidth-section img {
    width: 100%;
    height: auto;
    display: block;
}



