/* ============================================================
   REPANA Indonesia - Main Stylesheet
   Theme: Forest Green, Modern, Responsive
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --green-900: #0d3b2e;
  --green-800: #14503f;
  --green-700: #1a6650;
  --green-600: #217a5e;
  --green-500: #2d9e7e;
  --green-400: #4fbf9f;
  --green-300: #7dd4bc;
  --green-200: #b3e8d8;
  --green-100: #e0f5ee;
  --green-50: #f0faf5;

  --cream: #f9f7f3;
  --white: #ffffff;
  --dark: #0f1e18;
  --dark-2: #1c2e25;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;

  --accent: var(--green-500);
  --danger: #e53e3e;
  --success: #38a169;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --nav-h: 68px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section.bg-light {
  background: var(--green-50);
}
.center {
  text-align: center;
}
.mt-05 {
  margin-top: 8px;
}
.mt-1 {
  margin-top: 16px;
}
.mt-2 {
  margin-top: 32px;
}
.text-accent {
  color: var(--green-500);
}
.text-danger {
  color: var(--danger);
}
.w-full {
  width: 100%;
}
.accent {
  color: var(--green-500);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 158, 126, 0.35);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 158, 126, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-500);
}
.btn-outline:hover {
  background: var(--green-500);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-300);
}
.btn-outline-green:hover {
  background: var(--green-50);
}
.btn-ghost {
  color: var(--green-600);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 10px 0;
}
.btn-white {
  background: white;
  color: var(--green-700);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ---- Scroll Animation ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
     NAVBAR
     ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
}
.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link,
.navbar.scrolled .dropdown-toggle {
  color: var(--dark);
}
.navbar:not(.scrolled) .nav-logo,
.navbar:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .dropdown-toggle {
  color: white;
}
.navbar:not(.scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: none;
}
.navbar:not(.scrolled) .btn-primary:hover {
  background: white;
  color: var(--green-700);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: inherit;
}
.logo-icon {
  color: var(--green-400);
  flex-shrink: 0;
}
.navbar.scrolled .logo-icon {
  color: var(--green-500);
}
.logo-text {
  font-family: var(--font-display);
  font-style: italic;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link,
.dropdown-toggle {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: inherit;
  background: none;
  border: none;
}
.nav-link:hover,
.dropdown-toggle:hover {
  background: rgba(45, 158, 126, 0.12);
  color: var(--green-500) !important;
}
.nav-link.active {
  color: var(--green-400) !important;
}
.navbar.scrolled .nav-link.active {
  color: var(--green-600) !important;
}
.dropdown-arrow {
  font-size: 0.75rem;
  margin-left: 2px;
  transition: transform var(--transition);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: white;
  border-radius: var(--radius);
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: 1px solid var(--green-100);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  color: var(--dark);
}
.dropdown-item:hover {
  background: var(--green-50);
}
.di-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.dropdown-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}
.dropdown-item small {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.nav-cta {
  margin-left: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
     HERO
     ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 50%,
    var(--green-500) 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 0 L60 52 L0 52Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(79, 191, 159, 0.15) 0%,
    transparent 60%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: calc(var(--nav-h) + 60px) 24px 120px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--green-300);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(4px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================================
     SECTION HEADERS
     ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 10px;
  background: var(--green-100);
  padding: 4px 14px;
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
     SERVICES OVERVIEW
     ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
  background: var(--green-50);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-weight: 600;
  color: var(--green-500);
  font-size: 0.9rem;
}

/* ============================================================
     WHY US
     ============================================================ */
.why-us {
  background: var(--green-50);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text .section-title {
  text-align: left;
}
.why-text p {
  color: var(--gray-500);
  margin-bottom: 20px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--dark);
}
.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-500);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.why-visual {
  position: relative;
  height: 360px;
}
.why-bg-box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.why-bg-box::after {
  content: "🏔️";
  font-size: 7rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}
.why-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-size: 0.88rem;
}
.why-card-float.card-1 {
  top: 0;
  left: -10px;
}
.why-card-float.card-2 {
  bottom: 20px;
  right: -10px;
}
.why-card-float strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
}
.why-card-float small {
  color: var(--gray-500);
}
.wc-icon {
  font-size: 1.8rem;
}

/* ============================================================
     TRIP CARDS (Home popular + related)
     ============================================================ */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trip-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--green-100);
  transition: all var(--transition);
}
.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}
.trip-img-placeholder {
  height: 160px;
  background: linear-gradient(
    135deg,
    var(--green-700) 0%,
    var(--green-500) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.trip-mountain-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.trip-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.trip-info {
  padding: 16px;
}
.trip-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.trip-loc {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.trip-price {
  font-weight: 700;
  color: var(--green-600);
}

/* ============================================================
     TESTIMONIALS
     ============================================================ */
.testimonials {
  background: var(--green-900);
}
.testimonials .section-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-300);
}
.testimonials .section-title {
  color: white;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.testi-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.testi-trip-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-300);
  background: rgba(45, 158, 126, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}
.testi-stars {
  color: #f6c90e;
  font-size: 1rem;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}
.testi-author small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

/* Testimoni page - light bg */
.testimonials.section {
  background: var(--white);
}
.testimonials.section .testi-card {
  background: var(--green-50);
  border-color: var(--green-100);
}
.testimonials.section .testi-card:hover {
  border-color: var(--green-300);
}
.testimonials.section .testi-text {
  color: var(--gray-700);
}
.testimonials.section .testi-author strong {
  color: var(--dark);
}
.testimonials.section .testi-author small {
  color: var(--gray-500);
}

/* ============================================================
     CTA BANNER
     ============================================================ */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--green-700) 0%,
    var(--green-500) 100%
  );
  padding: 64px 0;
}
.cta-content {
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 12px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
     PAGE HERO (Inner pages)
     ============================================================ */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 100%
  );
  padding: calc(var(--nav-h) + 60px) 0 70px;
}
.page-hero-sm {
  padding: calc(var(--nav-h) + 40px) 0 50px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: white;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* ============================================================
     LAYANAN PAGE
     ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}
.filter-tab:hover {
  background: var(--green-100);
  color: var(--green-700);
}
.filter-tab.active {
  background: var(--green-500);
  color: white;
  box-shadow: 0 4px 12px rgba(45, 158, 126, 0.3);
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.paket-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-100);
  overflow: hidden;
  transition: all var(--transition);
}
.paket-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}
.paket-img {
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-500) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.paket-mountain-icon {
  font-size: 5.5rem;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}
.paket-kategori-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.paket-body {
  padding: 20px;
}
.paket-nama {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.paket-lokasi {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.paket-highlight {
  font-size: 0.82rem;
  color: var(--green-600);
  font-weight: 500;
  margin-bottom: 14px;
  background: var(--green-50);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}
.paket-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.meta-item {
  font-size: 0.75rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 100px;
}
.paket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.paket-harga small {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
}
.paket-harga strong {
  font-size: 1.1rem;
  color: var(--green-600);
}
.paket-harga strong span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state span {
  font-size: 4rem;
  display: block;
  margin-bottom: 16px;
}
.empty-state h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ============================================================
     DETAIL PAKET PAGE
     ============================================================ */
.detail-hero {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 100%
  );
  padding: calc(var(--nav-h) + 40px) 0 60px;
}
.detail-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 20px;
}
.detail-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 8px;
  line-height: 1.15;
}
.detail-lokasi {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.detail-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 580px;
}
.detail-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dqi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 10px 16px;
  backdrop-filter: blur(6px);
}
.dqi-icon {
  font-size: 1.3rem;
}
.dqi-item small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
.dqi-item strong {
  font-size: 0.88rem;
  color: white;
  display: block;
}
.dqi-item .text-accent {
  color: var(--green-300);
}
.detail-hero-img {
  position: relative;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.detail-mountain-icon {
  font-size: 7rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}
.detail-img-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.detail-main {
  padding-top: 40px;
}

/* Tabs */
.detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--green-100);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.dtab {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.dtab:hover {
  color: var(--green-600);
}
.dtab.active {
  color: var(--green-600);
  border-bottom-color: var(--green-500);
  background: var(--green-50);
}
.dtab-content {
  display: none;
}
.dtab-content.active {
  display: block;
}
.dtab-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.tab-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

/* Itinerary */
.itinerary-list {
  display: flex;
  flex-direction: column;
}
.itin-day-header {
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin: 12px 0 4px;
}
.itin-row {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--green-50);
}
.itin-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
}
.itin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-300);
  justify-self: center;
}
.itin-text {
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* Fasilitas */
.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.fasil-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.fasil-check {
  color: var(--green-500);
  font-weight: 700;
}
.hotel-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.hotel-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.hotel-stars {
  color: #f6c90e;
  font-size: 0.9rem;
}

/* Syarat */
.syarat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.syarat-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.syarat-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--green-500);
  font-weight: 700;
}

/* Include/Exclude */
.incexc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.incexc-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.incexc-list li {
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.incexc-list.include li {
  background: #f0fff4;
  color: #276749;
}
.incexc-list.include li::before {
  content: "✓ ";
  font-weight: 700;
}
.incexc-list.exclude li {
  background: #fff5f5;
  color: #c53030;
}
.incexc-list.exclude li::before {
  content: "✗ ";
  font-weight: 700;
}

/* Booking Card */
.booking-card {
  background: white;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.booking-header {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  padding: 18px 24px;
}
.booking-header h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}
.booking-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.booking-select-display {
  background: var(--gray-100);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
}
.booking-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  font-size: 0.88rem;
}
.booking-select:focus {
  outline: none;
  border-color: var(--green-400);
}
.room-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
}
.room-option:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}
.room-option.active {
  border-color: var(--green-500);
  background: var(--green-50);
}
.room-option .room-label strong {
  color: var(--dark);
}
.room-option .room-label small {
  color: var(--gray-500);
  font-size: 0.75rem;
  display: block;
}
.room-price {
  font-weight: 700;
  color: var(--green-600);
  font-size: 0.85rem;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.qty-btn:hover {
  background: var(--green-500);
  color: white;
}
#qty-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 24px;
  text-align: center;
}
.qty-unit {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1.5px solid var(--green-100);
  border-bottom: 1.5px solid var(--green-100);
}
.booking-total span {
  font-size: 0.88rem;
  color: var(--gray-500);
}
.booking-total strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-600);
}
.booking-cta {
  font-size: 1rem;
  padding: 14px;
}
.booking-share {
  padding: 14px 20px;
  border-top: 1px solid var(--green-50);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.share-btn {
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.share-btn:hover {
  transform: scale(1.2);
}

/* Related */
.related-section {
  background: var(--green-50);
}

/* ============================================================
     ABOUT PAGE
     ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text .section-title {
  text-align: left;
}
.about-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.astat-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  color: white;
}
.astat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.astat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-100);
  transition: all var(--transition);
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.mv-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}
.mv-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-100);
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-avatar {
  font-size: 3rem;
  width: 72px;
  height: 72px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.team-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--green-600);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.76rem;
  color: var(--gray-500);
}

/* ============================================================
     HUBUNGI PAGE
     ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.cinfo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cinfo-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cinfo-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.cinfo-item a {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.cinfo-item a:hover {
  color: var(--green-600);
}
.cinfo-item span {
  font-size: 0.95rem;
  color: var(--dark);
}
.social-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-700);
  transition: all var(--transition);
}
.social-btn-lg:hover {
  background: var(--green-500);
  color: white;
  border-color: var(--green-500);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group label span {
  color: var(--danger);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--dark);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(45, 158, 126, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}
.alert-error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}
.alert-error p {
  margin: 3px 0;
}

/* ============================================================
     TESTIMONI PAGE
     ============================================================ */
.rating-summary {
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
}
.rating-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  font-family: var(--font-display);
}
.rating-big .rating-stars {
  font-size: 1.3rem;
  color: #f6c90e;
  margin: 6px 0;
}
.rating-count {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.rbar {
  flex: 1;
  height: 8px;
  background: var(--green-100);
  border-radius: 4px;
  overflow: hidden;
}
.rbar-fill {
  height: 100%;
  background: var(--green-400);
  border-radius: 4px;
  transition: width 1s ease;
}

/* ============================================================
     FOOTER
     ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--green-500);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--green-400);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.contact-list li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.contact-list li a:hover {
  color: var(--green-400);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-logo {
  color: white;
}

/* ============================================================
     RESPONSIVE - Tablet
     ============================================================ */
@media (max-width: 1024px) {
  .trips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    gap: 40px;
  }
  .why-visual {
    height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* ============================================================
     RESPONSIVE - Mobile
     ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  .section {
    padding: 56px 0;
  }

  /* Navbar */
  .hamburger {
    display: flex;
    color: currentColor;
  }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-link,
  .dropdown-toggle {
    color: var(--dark) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: 1.5px solid var(--green-100);
    margin-top: 4px;
    margin-left: 16px;
  }
  .nav-dropdown:not(.open) .dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  /* Hero */
  .hero-content {
    padding: calc(var(--nav-h) + 40px) 20px 100px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    padding: 14px 20px;
  }
  .stat {
    padding: 0 12px;
  }
  .stat-num {
    font-size: 1.3rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-visual {
    height: 240px;
  }
  .why-card-float.card-1 {
    top: -10px;
    left: 0;
  }
  .why-card-float.card-2 {
    bottom: -10px;
    right: 0;
  }

  /* Trips */
  .trips-grid {
    grid-template-columns: 1fr;
  }

  /* Testi */
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Paket */
  .paket-grid {
    grid-template-columns: 1fr;
  }

  /* Detail */
  .detail-hero-content {
    grid-template-columns: 1fr;
  }
  .detail-hero-img {
    display: none;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .booking-card {
    position: static;
  }
  .incexc-grid {
    grid-template-columns: 1fr;
  }
  .fasilitas-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Rating */
  .rating-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .detail-quick-info {
    flex-direction: column;
    gap: 8px;
  }
  .dqi-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 0;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .filter-tabs {
    gap: 6px;
  }
  .filter-tab {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
  .paket-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .paket-footer .btn {
    width: 100%;
  }
}
