/* ==============================================
   css/style.css — EAZY TRIP YOGYAKARTA
   Design System: Modern Blue & Black (sesuai logo)
   ============================================= */

/* -----------------------------------------------
   1. DESIGN TOKENS (CSS Variables)
----------------------------------------------- */
:root {
  /* === Warna utama sesuai logo === */
  --blue:          #1B8FD4;   /* biru "trip" dari logo */
  --blue-dark:     #1270A8;   /* biru hover / lebih gelap */
  --blue-light:    #E8F4FB;   /* biru sangat muda untuk background */
  --blue-mid:      #5BB3E0;   /* biru medium untuk aksen */

  --ink:           #111111;   /* hitam "eazy" dari logo */
  --ink-soft:      #2C2C2C;   /* hitam lembut untuk teks */
  --ink-muted:     #555555;   /* abu untuk teks sekunder */

  --white:         #FFFFFF;
  --off-white:     #F7FAFC;   /* background section terang */
  --light-grey:    #E8ECF0;   /* border, divider */
  --grey:          #8A9199;   /* teks placeholder */

  /* Tipografi */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Ukuran & shape */
  --radius:    6px;
  --radius-lg: 14px;

  /* Shadow */
  --shadow:    0 4px 24px rgba(17, 17, 17, .1);
  --shadow-lg: 0 16px 48px rgba(17, 17, 17, .18);
  --shadow-blue: 0 8px 24px rgba(27, 143, 212, .35);
}

/* -----------------------------------------------
   2. RESET & BASE
----------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

/* -----------------------------------------------
   3. REUSABLE UTILITIES
----------------------------------------------- */

/* Section spacing */
section {
  padding: 7rem 5vw;
}

/* Section label atas judul */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}

/* Heading seksi */
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  max-width: 600px;
}

.section-h2 em {
  font-style: italic;
  color: var(--blue);
}

/* Tombol */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--blue-mid);
  color: var(--white);
}

.btn-gold {
  background: var(--blue);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: .82rem;
  padding: 1rem;
}

.btn-gold:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* -----------------------------------------------
   4. NAVIGASI
----------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s, box-shadow .35s;
}

nav.scrolled {
  background: rgba(17, 17, 17, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(17, 17, 17, .3);
}

/* Logo gambar di navbar */
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo img {
  height: 36px;
  width: auto;
  /* Foto logo hitam → filter jadi putih di atas hero gelap */
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}

.nav-logo img:hover { opacity: .85; }

/* Fallback teks jika logo tidak ada */
.nav-logo .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

/* Menu links desktop */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue-mid);
  transition: width .3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* CTA nav button */
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-cta::after { display: none !important; }

/* -----------------------------------------------
   HAMBURGER — hanya tampil di mobile
----------------------------------------------- */
.hamburger {
  display: none;         /* hidden by default (desktop) */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 101;          /* di atas overlay */
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}

/* Animasi hamburger → X saat menu open */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------------------------------
   MOBILE MENU OVERLAY
----------------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;           /* di bawah hamburger (z:101) */
  background: rgba(17, 17, 17, .97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

/* Daftar menu dalam overlay */
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-links li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mobile-nav-links li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.mobile-nav-links li a {
  display: block;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  transition: color .2s, background .2s;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:active {
  color: var(--white);
  background: rgba(27, 143, 212, .12);
}

/* CTA di mobile menu */
.mobile-nav-links .nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  margin: 1.5rem 2rem;
  border-radius: var(--radius);
  display: block;
  width: calc(100% - 4rem);
}

.mobile-nav-links .nav-cta:hover {
  background: var(--blue-dark) !important;
}

/* Tombol close (X) di pojok — DISEMBUNYIKAN karena
   kini hamburger berubah jadi X saat menu terbuka */
.mobile-close { display: none; }

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .65);
  animation: none;
}

/* -----------------------------------------------
   5. HERO
----------------------------------------------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
}

/* ⚠️ Ganti URL foto hero di sini */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(17,17,17,.2) 0%, rgba(17,17,17,.65) 55%, rgba(17,17,17,.92) 100%),
    url('https://images.unsplash.com/photo-1596402184320-417e7178b2cd?w=1600&q=80') center / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Ornamen dekoratif */
.hero-ornament {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 220px;
  height: 220px;
  opacity: .1;
  border: 2px solid var(--blue-mid);
  border-radius: 50%;
  animation: spin 30s linear infinite;
  pointer-events: none;
}

.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 36px;
  border: 1px solid var(--blue-mid);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 860px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 1.4rem;
  animation: fadeUp .8s ease both;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue-mid);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeUp .9s .12s ease both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--blue-mid);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  font-weight: 300;
  animation: fadeUp .9s .24s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .9s .36s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(246, 237, 216, .5);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: fadeUp .9s .6s ease both;
}

.hero-scroll span { writing-mode: vertical-rl; }

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(246,237,216,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* -----------------------------------------------
   6. STATS STRIP
----------------------------------------------- */
.stats-strip {
  background: var(--ink);
  padding: 2.2rem 5vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-mid);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: .3rem;
}

/* -----------------------------------------------
   7. LAYANAN
----------------------------------------------- */
#layanan { background: var(--white); }

.layanan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1100px;
}

.layanan-card {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  background: var(--white);
}

.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.layanan-img {
  height: 240px;
  overflow: hidden;
}

.layanan-img img {
  height: 100%;
  transition: transform .6s;
}

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

.layanan-body { padding: 2rem; }

.layanan-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.layanan-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--ink);
}

.layanan-body p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.layanan-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}

.layanan-tag i {
  margin-left: .3rem;
  transition: transform .2s;
}

.layanan-card:hover .layanan-tag i { transform: translateX(5px); }

/* -----------------------------------------------
   8. FLEET / ARMADA
----------------------------------------------- */
#fleet { background: var(--off-white); }

.fleet-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.fleet-note {
  font-size: .88rem;
  color: var(--ink-muted);
  max-width: 340px;
  line-height: 1.7;
}

.fleet-note-bottom {
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--grey);
}

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

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--light-grey);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.fleet-card-img {
  height: 180px;
  overflow: hidden;
}

.fleet-card-img img {
  height: 100%;
  transition: transform .5s;
}

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

.fleet-info {
  padding: 1.4rem 1.5rem;
  border-top: 3px solid var(--blue);
}

.fleet-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.fleet-specs {
  display: flex;
  gap: 1rem;
  margin: .6rem 0;
  flex-wrap: wrap;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--ink-muted);
}

.fleet-spec i { color: var(--blue); font-size: .8rem; }

.fleet-price {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--light-grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.price-per { font-size: .7rem; color: var(--grey); }

.price-badge {
  font-size: .65rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: .2rem .6rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: .06em;
}

/* -----------------------------------------------
   9. PAKET WISATA
----------------------------------------------- */
#wisata { background: var(--ink); }

#wisata .section-h2   { color: var(--white); }
#wisata .section-tag  { color: var(--blue-mid); }
#wisata .section-tag::before { background: var(--blue-mid); }

.wisata-intro {
  max-width: 520px;
  margin-bottom: 4rem;
}

.wisata-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
  margin-top: 1rem;
}

.wisata-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.wisata-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.wisata-card-inner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.wisata-card-inner img {
  height: 100%;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
  filter: brightness(.7);
}

.wisata-card:hover .wisata-card-inner img {
  transform: scale(1.1);
  filter: brightness(.5);
}

.wisata-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.92) 0%, transparent 55%);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wisata-cat {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: .5rem;
}

.wisata-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.wisata-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .5rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s;
  opacity: 0;
}

.wisata-card:hover p {
  max-height: 100px;
  opacity: 1;
}

.wisata-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .9rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 600;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s .05s ease, opacity .4s;
  opacity: 0;
}

.wisata-card:hover .wisata-btn {
  max-height: 40px;
  opacity: 1;
}

/* Shuttle card — full width */
.wisata-card.shuttle { grid-column: 1 / -1; }

.wisata-card.shuttle .wisata-card-inner { height: 220px; }

.wisata-card.shuttle .wisata-overlay {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.wisata-card.shuttle .wisata-text { flex: 1; }

.shuttle-features {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.shuttle-feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(246, 237, 216, .75);
}

.shuttle-feat i { color: var(--gold); font-size: .85rem; }

/* -----------------------------------------------
   10. KEUNGGULAN
----------------------------------------------- */
#keunggulan { background: var(--white); }

.keunggulan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.keunggulan-img { position: relative; }

.keunggulan-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}

.keunggulan-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.keunggulan-img-accent img { height: 160px; }

.badge-gold {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--blue);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  text-align: center;
}

.badge-gold .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-gold .badge-text {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem;
  opacity: .85;
}

.keunggulan-list {
  list-style: none;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.keunggulan-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.keunggulan-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: .15rem;
}

.keunggulan-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.keunggulan-item p {
  font-size: .85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* -----------------------------------------------
   11. TESTIMONI
----------------------------------------------- */
#testimoni { background: var(--off-white); }

.testi-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--light-grey);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .8;
  color: var(--blue);
  opacity: .25;
  margin-bottom: .5rem;
}

.testi-text {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--light-grey);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: .85rem; }
.testi-origin { font-size: .72rem; color: var(--grey); }

.testi-stars {
  color: #F4A820;
  font-size: .75rem;
  margin-top: .1rem;
}

/* -----------------------------------------------
   12. KONTAK / BOOKING
----------------------------------------------- */
#kontak {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#kontak::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,143,212,.15) 0%, transparent 70%);
  pointer-events: none;
}

#kontak .section-h2  { color: var(--white); }
#kontak .section-tag { color: var(--blue-mid); }
#kontak .section-tag::before { background: var(--blue-mid); }

.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.kontak-info p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.kontak-channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.kontak-ch {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: background .25s, border-color .25s;
  cursor: pointer;
}

.kontak-ch:hover {
  background: rgba(27, 143, 212, .12);
  border-color: var(--blue-mid);
}

.kontak-ch-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(27, 143, 212, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.kontak-ch-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}

.kontak-ch-val {
  font-size: .92rem;
  font-weight: 500;
  color: var(--white);
  margin-top: .15rem;
}

/* Form Booking */
.booking-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .4rem;
}

.booking-form > p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group select option { background: var(--ink); }

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

/* -----------------------------------------------
   13. FOOTER
----------------------------------------------- */
footer {
  background: #0A0A0A;
  padding: 4rem 5vw 2rem;
  color: var(--grey);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Logo gambar di footer */
.footer-brand .footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: .5rem;
}

/* Fallback teks */
.footer-brand .brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue-mid);
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.75;
  margin-top: .8rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
}

.social-ico {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: .85rem;
  transition: all .2s;
}

.social-ico:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer-col h5 {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col a {
  font-size: .83rem;
  transition: color .2s;
}

.footer-col a:hover { color: var(--blue-mid); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .75rem;
}

/* -----------------------------------------------
   13b. GALERI — Slider + Grid + Lightbox
----------------------------------------------- */
#galeri {
  background: var(--white);
  padding-bottom: 5rem;
}

.galeri-header {
  padding: 7rem 5vw 3rem;
  max-width: 560px;
}

.galeri-desc {
  font-size: .92rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

/* -----------------------------------------------
   SLIDER
----------------------------------------------- */
.galeri-slider-wrap {
  position: relative;
  margin: 0 0 3rem;
}

.galeri-swiper {
  width: 100%;
  height: 520px;
}

.slider-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.galeri-swiper:hover .slider-img-wrap img {
  transform: scale(1.03);
}

/* Caption overlay */
.slider-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(17, 17, 17, .75) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.slider-caption-inner {
  padding: 2.5rem 5vw;
}

.slider-caption-inner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .4rem;
}

.slider-caption-inner p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 300;
}

/* Navigasi panah custom */
.galeri-prev,
.galeri-next {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, .15) !important;
  backdrop-filter: blur(8px);
  border-radius: 50% !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeri-prev:hover,
.galeri-next:hover {
  background: var(--blue) !important;
  border-color: var(--blue);
  transform: scale(1.1);
}

/* Sembunyikan icon default Swiper, pakai Font Awesome */
.galeri-prev::after,
.galeri-next::after { display: none !important; }

.galeri-prev i,
.galeri-next i { font-size: .9rem; }

/* Pagination dots */
.galeri-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5) !important;
  opacity: 1 !important;
  width: 8px;
  height: 8px;
  transition: all .3s;
}

.galeri-pagination .swiper-pagination-bullet-active {
  background: var(--blue) !important;
  width: 24px;
  border-radius: 4px;
}

/* -----------------------------------------------
   FILTER TABS
----------------------------------------------- */
.galeri-filter {
  display: flex;
  gap: .6rem;
  padding: 0 5vw;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.2rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid var(--light-grey);
  border-radius: 30px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .22s;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.filter-btn i { font-size: .78rem; }

/* -----------------------------------------------
   GRID GALERI
----------------------------------------------- */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 5vw;
}

/* Item tersembunyi saat filter aktif */
.galeri-item.hidden {
  display: none;
}

.galeri-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

/* Item pertama & keenam lebih besar */
.galeri-item:nth-child(1),
.galeri-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.galeri-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.galeri-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.galeri-item:hover .galeri-thumb img {
  transform: scale(1.08);
}

/* Hover overlay */
.galeri-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .3s;
}

.galeri-item:hover .galeri-overlay {
  background: rgba(27, 143, 212, .55);
}

.galeri-overlay-icon {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s;
}

.galeri-item:hover .galeri-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

.galeri-overlay-caption {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  padding: 0 .8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s .05s, transform .3s .05s;
}

.galeri-item:hover .galeri-overlay-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive galeri */
@media (max-width: 960px) {
  .galeri-swiper { height: 400px; }

  .galeri-grid { grid-template-columns: repeat(3, 1fr); }

  .galeri-item:nth-child(1),
  .galeri-item:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .galeri-header { padding: 4rem 4.5vw 2.5rem; }

  .galeri-swiper { height: 260px; }

  .slider-caption-inner h3 { font-size: 1.4rem; }

  /* Sembunyikan panah di mobile — pakai swipe */
  .galeri-prev,
  .galeri-next { display: none !important; }

  .galeri-filter { padding: 0 4.5vw; }

  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 4.5vw;
  }

  /* Reset span di mobile — semua sama */
  .galeri-item:nth-child(1),
  .galeri-item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

/* -----------------------------------------------
   14. ANIMASI
----------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .5); }
  50%       { box-shadow: 0 4px 36px rgba(37, 211, 102, .75); }
}

/* -----------------------------------------------
   15. TOUCH DEVICE — Wisata card selalu tampil
   Pada layar sentuh tidak ada :hover, jadi
   deskripsi & tombol harus selalu visible
----------------------------------------------- */
@media (hover: none) {
  .wisata-card p {
    max-height: 120px;
    opacity: 1;
  }

  .wisata-btn {
    max-height: 40px;
    opacity: 1;
  }

  /* Pastikan foto tidak terlalu gelap tanpa hover */
  .wisata-card-inner img {
    filter: brightness(.6);
  }
}

/* -----------------------------------------------
   16. RESPONSIVE — Tablet (≤1024px)
----------------------------------------------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* -----------------------------------------------
   17. RESPONSIVE — Tablet kecil / Landscape HP (≤960px)
----------------------------------------------- */
@media (max-width: 960px) {
  /* Grid layout */
  .layanan-grid,
  .testi-grid          { grid-template-columns: 1fr 1fr; }
  .wisata-grid         { grid-template-columns: 1fr 1fr; }
  .wisata-card.shuttle { grid-column: auto; }
  .fleet-grid          { grid-template-columns: 1fr 1fr; }

  .keunggulan-layout,
  .kontak-layout       { grid-template-columns: 1fr; gap: 3rem; }

  /* Navigasi */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Keunggulan — gambar lebih pendek di tablet */
  .keunggulan-img-main { height: 380px; }
}

/* -----------------------------------------------
   18. RESPONSIVE — Mobile portrait (≤600px)
----------------------------------------------- */
@media (max-width: 600px) {

  /* === SPACING === */
  section { padding: 4rem 4.5vw; }

  /* === HERO === */
  /* svh = small viewport height, menghindari address bar iOS */
  #hero {
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    padding-bottom: 5rem;
    align-items: center; /* tengah secara vertikal di mobile */
  }

  .hero-h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }

  .hero-sub { font-size: .95rem; }

  /* Tombol hero — full width agar mudah di-tap */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    min-height: 48px; /* touch target minimum */
  }

  /* Ornamen dekoratif disembunyikan di mobile kecil */
  .hero-ornament { display: none; }

  /* Indikator scroll tidak perlu di mobile */
  .hero-scroll   { display: none; }

  /* === STATS === */
  .stats-strip {
    padding: 1.8rem 4.5vw;
    gap: .8rem;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
  }

  .stat-num   { font-size: 1.8rem; }
  .stat-label { font-size: .62rem; }

  /* === GRID MENJADI 1 KOLOM === */
  .layanan-grid,
  .wisata-grid,
  .testi-grid,
  .fleet-grid { grid-template-columns: 1fr; }

  /* === LAYANAN === */
  .layanan-grid { margin-top: 2.5rem; gap: 1.5rem; }
  .layanan-img  { height: 200px; }

  /* === WISATA === */
  .wisata-intro       { margin-bottom: 2.5rem; }
  .wisata-grid        { gap: 1rem; }

  .wisata-card-inner  { height: 280px; }

  /* Shuttle card di mobile — layout vertikal */
  .wisata-card.shuttle .wisata-card-inner { height: 240px; }
  .wisata-card.shuttle .wisata-overlay {
    flex-direction: column;
    gap: 1rem;
  }

  .shuttle-features { gap: .8rem 1.4rem; }

  /* === FLEET === */
  .fleet-intro { flex-direction: column; align-items: flex-start; }

  /* === KEUNGGULAN === */
  .badge-gold            { display: none; }
  .keunggulan-img-accent { display: none; }
  .keunggulan-img-main   { height: 260px; }
  .keunggulan-layout     { margin-top: 2.5rem; gap: 2rem; }

  /* === FORM === */
  .form-row { grid-template-columns: 1fr; }

  /* PENTING: min font-size 16px pada input
     mencegah iOS Safari auto-zoom saat fokus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: .85rem 1rem; /* tap target lebih besar */
  }

  /* === KONTAK CHANNELS === */
  .kontak-ch {
    padding: 1rem 1.2rem;
    min-height: 60px; /* touch target */
  }

  /* === BOOKING FORM === */
  .booking-form { padding: 1.8rem 1.4rem; }

  /* Tombol submit — lebih besar untuk touch */
  .btn-gold {
    padding: 1.1rem;
    min-height: 52px;
    font-size: .88rem;
  }

  /* === FOOTER === */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }

  /* === SOCIAL ICONS — touch target 44px === */
  .social-ico {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  /* === SECTION HEADINGS === */
  .section-h2 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }

  /* === WA FLOAT — sedikit lebih besar === */
  .wa-float {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    bottom: 1.4rem;
    right: 1.4rem;
  }
}

/* -----------------------------------------------
   19. RESPONSIVE — HP sangat kecil (≤380px)
----------------------------------------------- */
@media (max-width: 380px) {
  .hero-h1    { font-size: 2.4rem; }
  .stat-num   { font-size: 1.5rem; }
  .stat-label { font-size: .58rem; }

  .stats-strip { grid-template-columns: repeat(3, 1fr); }

  nav { padding: 0 4vw; }
  .nav-logo .brand { font-size: 1.3rem; }
}
