/* ============================================================
   HELLOWANGI — Premium Banyuwangi Travel & Tour
   Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --color-primary: #0e5e4a;
  --color-primary-dark: #0a4536;
  --color-primary-deep: #072e24;
  --color-primary-light: #e8f2ee;
  --color-accent: #d97706;
  --color-accent-dark: #b45309;
  --color-accent-light: #fdf3e3;
  --color-dark: #0b1512;
  --color-dark-2: #12201b;
  --color-text: #1f2a26;
  --color-text-light: #5b6b64;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f4ef;
  --color-border: #e5e1d8;
  --color-wa: #25d366;
  --color-wa-dark: #1da851;
  --color-white: #ffffff;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 21, 18, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 21, 18, 0.1);
  --shadow-lg: 0 16px 48px rgba(11, 21, 18, 0.16);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
  --section-pad: 96px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med: 0.35s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
}

:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--color-text-light);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  margin-top: 16px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-dark);
  color: #d7e0dc;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #a8b8b1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-med);
  text-align: center;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: var(--color-wa);
  color: #fff;
}

.btn-wa:hover {
  background: var(--color-wa-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  border-color: var(--color-border);
  color: var(--color-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med);
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--color-accent);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}

.main-nav a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.main-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  transition: all var(--t-fast);
}

.lang-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.lang-toggle .lang-btn {
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-light);
  transition: all var(--t-fast);
}

.lang-toggle .lang-btn:hover {
  color: var(--color-primary);
}

.lang-toggle .lang-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.lang-toggle .lang-sep {
  color: var(--color-border);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--t-med);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(7, 30, 24, 0.88) 0%,
    rgba(7, 30, 24, 0.62) 45%,
    rgba(7, 30, 24, 0.25) 100%
  );
}

.hero-content {
  max-width: 680px;
  color: #fff;
}

.hero-content .eyebrow {
  color: #fbbf24;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Quick inquiry bar */
.quick-inquiry {
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 20px;
  max-width: 760px;
}

.quick-inquiry form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.quick-inquiry .field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.quick-inquiry select,
.quick-inquiry input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  appearance: none;
}

.quick-inquiry select option {
  color: var(--color-text);
  background: #fff;
}

.quick-inquiry input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quick-inquiry .btn {
  height: 100%;
  min-height: 46px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.card-meta svg {
  color: var(--color-accent);
}

.card-body h3 {
  font-size: 1.3rem;
}

.card-body p {
  font-size: 0.95rem;
  flex: 1;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.price-original {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.card-actions .btn {
  flex: 1;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Destination cards ---------- */
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  isolation: isolate;
}

.dest-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.dest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-media img {
  transform: scale(1.06);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(7, 30, 24, 0.92) 0%,
    rgba(7, 30, 24, 0.35) 50%,
    rgba(7, 30, 24, 0.1) 100%
  );
  transition: background var(--t-med);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 30, 24, 0.95) 0%,
    rgba(7, 30, 24, 0.45) 55%,
    rgba(7, 30, 24, 0.15) 100%
  );
}

.dest-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
}

.dest-card-content h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.dest-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fbbf24;
}

.dest-card-link svg {
  transition: transform var(--t-fast);
}

.dest-card:hover .dest-card-link svg {
  transform: translateX(4px);
}

/* Placeholder destination (no image available) */
.dest-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-primary-deep) 0%, var(--color-primary) 60%, var(--color-primary-dark) 100%);
}

.dest-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.dest-placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
  filter: grayscale(1);
}

/* ---------- Service cards ---------- */
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.service-card h3 {
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ---------- Feature / trust points ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.92rem;
}

/* ---------- Story / experience section ---------- */
.story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.story-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(7, 30, 24, 0.94) 0%,
    rgba(7, 30, 24, 0.82) 55%,
    rgba(7, 30, 24, 0.55) 100%
  );
}

.story-content {
  max-width: 620px;
  padding: 120px 0;
  color: #fff;
}

.story-content .eyebrow {
  color: #fbbf24;
}

.story-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.story-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 28px 0 36px;
}

.story-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.story-points svg {
  color: #fbbf24;
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-empty {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  background: var(--color-bg);
}

.testimonial-empty p {
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- Blog ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--t-med);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-media {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 1.15rem;
}

.blog-card-body p {
  font-size: 0.92rem;
  flex: 1;
}

.blog-meta {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  background: var(--color-dark);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 20%, rgba(217, 119, 6, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(14, 94, 74, 0.5) 0%, transparent 55%);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: calc(var(--header-h) + 28px) 0 0;
  font-size: 0.85rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--color-border);
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-dark);
  font-weight: 600;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: var(--color-dark);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 15% 15%, rgba(217, 119, 6, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(14, 94, 74, 0.35) 0%, transparent 55%);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

/* ---------- Package detail ---------- */
.package-hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 0;
}

.package-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  background: var(--color-bg-alt);
}

.package-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.package-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
}

.package-main {
  min-width: 0;
}

.package-title {
  margin-bottom: 16px;
}

.package-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.package-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-bg-alt);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
}

.package-meta-item svg {
  color: var(--color-accent);
}

.package-price-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  box-shadow: var(--shadow-md);
}

.package-price-box .price-original {
  font-size: 1.05rem;
}

.package-price-box .price {
  font-size: 2rem;
  display: block;
  margin: 4px 0 8px;
}

.discount-note {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.package-price-box .btn {
  margin-bottom: 10px;
}

.package-price-box .btn:last-child {
  margin-bottom: 0;
}

.package-price-box .price-note {
  font-size: 0.82rem;
  text-align: center;
  margin-top: 12px;
}

/* Content blocks */
.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.content-block p {
  margin-bottom: 14px;
}

.highlight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
}

.highlight-list svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Itinerary */
.itinerary {
  border-left: 3px solid var(--color-primary-light);
  margin-left: 8px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.itinerary-day {
  position: relative;
}

.itinerary-day::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}

.itinerary-day h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.itinerary-day p {
  font-size: 0.95rem;
}

/* Inquiry note */
.inquiry-note {
  background: var(--color-accent-light);
  border: 1px solid #f3d9b0;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.inquiry-note p {
  flex: 1;
  min-width: 240px;
  color: var(--color-text);
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--t-med);
}

.faq-item[open] .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-field label span {
  color: var(--color-accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(14, 94, 74, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* ---------- Contact info cards ---------- */
.contact-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--t-med);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card .service-icon {
  margin: 0 auto 18px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card a {
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #a8b8b1;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-name span {
  color: var(--color-accent);
}

.site-footer p {
  color: #8fa39b;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8fa39b;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #8fa39b;
}

.footer-contact svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact a {
  color: #8fa39b;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: all var(--t-med);
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--color-wa-dark);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(11, 21, 18, 0.08);
}

.sticky-cta .btn {
  width: 100%;
}

/* ---------- Empty / coming soon ---------- */
.empty-state {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
}

.empty-state .service-icon {
  margin: 0 auto 20px;
}

.empty-state h2 {
  margin-bottom: 12px;
}

.empty-state p {
  margin-bottom: 28px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .package-layout {
    grid-template-columns: 1fr;
  }

  .package-price-box {
    position: static;
  }

  .quick-inquiry form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: 16px 24px 24px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-med);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .header-actions .btn {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    padding: 80px 0;
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .quick-inquiry form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 120px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-banner {
    padding: 56px 24px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .package-hero-media {
    aspect-ratio: 4 / 5;
  }

  .sticky-cta {
    display: block;
  }

  .wa-float {
    bottom: 88px;
    width: 54px;
    height: 54px;
  }

  body {
    padding-bottom: 0;
  }

  .package-price-box {
    padding: 22px;
  }
}

@media (min-width: 641px) {
  .sticky-cta {
    display: none !important;
  }
}