/* FenTour - single page site (static) */

:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-2: #f1faff;
  --text: #0f172a; /* slate 900 */
  --muted: rgba(15, 23, 42, 0.68);
  --brand: #06b6d4; /* cyan */
  --brand-2: #22d3ee; /* cyan light */
  --ring: rgba(6, 182, 212, 0.35);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px circle at 10% -10%, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(900px circle at 90% 10%, rgba(34, 211, 238, 0.14), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.5;
  background-repeat: no-repeat;
}

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -1000px;
  left: 10px;
  padding: 10px 14px;
  background: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #ffffff;
  z-index: 9999;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.brand-name {
  font-weight: 800;
  font-size: 18px;
}

.brand-tagline {
  color: var(--muted);
  font-size: 13px;
}

.handle {
  color: var(--brand);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.burger span:nth-child(2) {
  /* tengah */
}

.burger span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.16);
}

.hero {
  padding: 28px 0 6px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(34, 211, 238, 0.38));
  border-color: rgba(6, 182, 212, 0.35);
  color: #ffffff;
}

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

.btn-ghost {
  background: rgba(6, 182, 212, 0.08);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(6, 182, 212, 0.14);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  color: rgba(15, 23, 42, 0.86);
  background: rgba(6, 182, 212, 0.10);
  font-weight: 650;
  font-size: 13px;
}

.hero-art {
  position: relative;
  min-height: 340px;
}

.hero-card {
  position: absolute;
  left: 0;
  top: 22px;
  z-index: 2;
  width: min(360px, 85%);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8); /* transparan 20% */
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.14);
  overflow: hidden;
}

.hero-card-top {
  padding: 14px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e6fbff;
  border: 1px solid rgba(6, 182, 212, 0.55);
  color: #083344;
  font-weight: 750;
  font-size: 13px;
}

.price-accent {
  color: #0369a1;
  font-weight: 900;
}

.hero-card-body {
  padding: 0 14px 16px;
}

.hero-destination {
  font-weight: 900;
  font-size: 18px;
  margin-top: 6px;
}

.hero-small {
  margin-top: 4px;
  font-size: 12.5px;
  color: rgba(15, 23, 42, 0.86);
}

.hero-art-image {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 92%;
  height: 330px;
  border-radius: 26px;
  border: 1px solid rgba(6, 182, 212, 0.20);
  overflow: hidden;
  background: rgba(6, 182, 212, 0.06);
}

.hero-art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.section {
  padding: 44px 0;
}

.section-alt {
  background: transparent;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 72ch;
}

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

.card {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.card-media {
  height: 180px; /* bikin cover lebih memanjang ke atas */
  background: rgba(2, 6, 23, 0.04);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-title {
  font-weight: 900;
  font-size: 18px;
}

.card-desc {
  color: var(--muted);
  font-size: 13.5px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(6, 182, 212, 0.22);
}

.card-price {
  font-weight: 950;
  font-size: 18px;
  color: var(--brand);
}

.card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-price-old {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.card-meta {
  color: var(--muted);
  font-size: 12.5px;
  text-align: right;
}

.card-slot {
  margin-top: 3px;
  font-weight: 700;
  color: #0369a1;
}

.card-slot.is-out {
  color: #dc2626;
}

.card-actions {
  margin-top: 10px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.1);
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
}

.wa-btn:hover {
  background: rgba(6, 182, 212, 0.18);
}

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

.reason {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 18px 16px;
  background: #ffffff;
}

.reason-icon {
  font-size: 26px;
  color: var(--brand);
}

.reason h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.reason p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(6, 182, 212, 0.08);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: rgba(6, 182, 212, 0.35);
}

.testimonial-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 20px 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
}

.testimonial-quote {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.95), rgba(34, 211, 238, 0.45));
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.testimonial-name {
  font-weight: 900;
}

.testimonial-destination {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(2, 6, 23, 0.05);
}

.dot.is-active {
  background: rgba(6, 182, 212, 0.85);
  border-color: rgba(6, 182, 212, 0.65);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.18);
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.segmented {
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.06);
  overflow: hidden;
}

.seg-btn {
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.seg-btn.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(34, 211, 238, 0.38));
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

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

.gallery-item {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(6, 182, 212, 0.04);
  overflow: hidden;
  position: relative;
  min-height: 210px;
}

.gallery-item .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: rgba(2, 6, 23, 0.55);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 850;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 950;
}

.footer-sub {
  color: var(--muted);
  margin-top: 6px;
}

.footer-note {
  color: var(--muted);
  font-size: 13px;
  align-self: center;
}

.skip-link:focus-visible {
  outline: 2px solid var(--ring);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 360px;
  }
  .hero-card {
    top: 0;
    position: relative;
    width: 100%;
    left: auto;
    margin-bottom: -12px;
  }
  .hero-art-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 290px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    position: relative;
  }

  .burger {
    display: inline-flex;
    position: relative;
  }

  .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    width: min(240px, calc(100% - 32px));
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 60;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
  }

  .nav a:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.18);
  }
}

