/* ========================================
   ZELAND - Paket PRO & ULTRA Styles
   Modern, Clean, Professional Design
   ======================================== */

/* Base & Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
  padding-top: 70px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.85;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

/* ========================================
   NAVIGATION HEADER
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.visible {
  transform: translateY(0);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  cursor: pointer;
}

.brand-logo {
  font-size: 1.5rem;
}

.brand-name {
  letter-spacing: 0.5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link-cta {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }

  .nav-link::after {
    left: 0;
  }

  .nav-link-cta {
    text-align: center;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .navbar-container {
    padding: 0.75rem 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .brand-logo {
    font-size: 1.3rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 4rem 1.5rem 3.5rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-highlight {
  font-weight: 600;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  border-left: 4px solid #fbbf24;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #111827;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
  border: 2px solid rgba(248, 250, 252, 0.7);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  display: inline-block;
  color: #f1f5f9;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(248, 250, 252, 0.9);
}

.hero-side {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
}

.hero-side h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-side p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.hero-tagline {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #fbbf24;
  font-style: italic;
  font-weight: 600;
  border-top: 1px solid rgba(251, 191, 36, 0.3);
  padding-top: 1rem;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: white;
}

h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 800;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========================================
   TWO COLUMN LAYOUT
   ======================================== */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.two-col h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #1e40af;
}

.two-col ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.two-col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Persona Cards */
.persona-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.persona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
  border-color: #3b82f6;
}

.persona-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e40af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.persona-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #111827;
}

.persona-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.persona-list {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.persona-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ========================================
   PACKAGE CARDS (Hosting Style)
   ======================================== */
.package-hosting {
  border-radius: 1.5rem;
  background: white;
  padding: 2.5rem 2rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-hosting:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.package-hosting h3 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.package-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #dbeafe;
  color: #1e40af;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-ultra {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-color: #fb923c;
}

.package-ultra .package-badge {
  background: #fef3c7;
  color: #92400e;
}

.package-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.package-features li {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #374151;
  line-height: 1.5;
}

.package-features li span {
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 1.25rem;
  border: 2px solid #bae6fd;
}

.pricing-header {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #0369a1;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.price-normal {
  font-size: 1.1rem;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 0.35rem;
}

.price-promo {
  font-size: 2rem;
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-promo .currency {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-note {
  font-size: 0.85rem;
  color: #0369a1;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 0.5rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.price-promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
  animation: pulse 2s infinite;
}

.price-contact {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c4a6e;
  margin: 0.75rem 0;
}

.price-contact-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.price-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.package-camp {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-color: #f472b6;
}

.package-camp .package-badge {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #831843;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 2rem;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.comparison th,
.comparison td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.comparison th {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  font-size: 0.9rem;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.comparison tr:last-child td {
  border-bottom: none;
}

.comparison tr:hover {
  background: #f9fafb;
}

.badge-mini {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  margin-left: 0.35rem;
  font-weight: 600;
}

/* ========================================
   ACCOMMODATION SECTION
   ======================================== */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.accommodation-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

/* Blur effect untuk card lain saat ada yang di-hover */
.accommodation-grid:has(.accommodation-card:hover)
  .accommodation-card:not(:hover) {
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.98);
}

.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  border-color: #3b82f6;
  opacity: 1;
  filter: blur(0);
  z-index: 10;
}

.accommodation-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.accommodation-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 197, 253, 0.1)
  );
}

.accommodation-content {
  padding: 1.25rem;
}

.accommodation-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.accommodation-icon {
  font-size: 1.3rem;
}

.accommodation-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.accommodation-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 0.75rem;
  border: 1px solid #bae6fd;
}

.price-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c4a6e;
  flex: 1;
}

.price-period {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.accommodation-description {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 0 solid transparent;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease,
    padding-top 0.4s ease, border-top-width 0.4s ease;
}

.accommodation-card:hover .accommodation-description {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

/* Show description on touch devices when tapped */
.accommodation-card:active .accommodation-description {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

.accommodation-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  z-index: 10;
}

/* Different colors for each accommodation type */
.accommodation-card.homestay:hover {
  border-color: #10b981;
}

.accommodation-card.homestay .accommodation-badge {
  background: linear-gradient(135deg, #10b981, #059669);
}

.accommodation-card.house-share:hover {
  border-color: #f59e0b;
}

.accommodation-card.house-share .accommodation-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.accommodation-card.apartment:hover {
  border-color: #8b5cf6;
}

.accommodation-card.apartment .accommodation-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* ========================================
   SCHEDULE GRID
   ======================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.schedule-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.schedule-card h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: #111827;
}

.schedule-list {
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.schedule-list li {
  margin-bottom: 0.65rem;
}

.highlight-box {
  font-size: 0.9rem;
  background: #eff6ff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  color: #1e3a8a;
  margin-top: 1rem;
  border-left: 4px solid #3b82f6;
  line-height: 1.6;
}

/* ========================================
   VIDEO KEGIATAN - YouTube Integration
   ======================================== */
#video-kegiatan {
  padding: 3rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.video-item {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-color: #3b82f6;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem;
}

.video-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  margin-right: 0.5rem;
}

.video-tag.duration {
  background: linear-gradient(135deg, #10b981, #059669);
}

.video-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.video-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ========================================
   DOKUMENTASI KEGIATAN - Photo Gallery
   ======================================== */
#dokumentasi-kegiatan {
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6),
    transparent
  );
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-text h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ========================================
   STEPS
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-item {
  background: white;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border-color: #3b82f6;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.step-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  padding: 3rem 0;
  margin-top: 3rem;
}

.cta-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip strong {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-strip p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* ========================================
   FORM
   ======================================== */
.form-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
  border: 2px solid #e5e7eb;
  max-width: 680px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid #d1d5db;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ========================================
   FAQ - Accordion Style
   ======================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 1.25rem;
  border: 2px solid #e5e7eb;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 5px 20px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #3b82f6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop Large - Optimize spacing */
@media (min-width: 1200px) {
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .accommodation-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .gallery-image {
    height: 200px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  h2.section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Comparison table responsive - scroll horizontal untuk 3 kolom */
  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .comparison th,
  .comparison td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 1rem;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-grid {
    gap: 1rem;
  }

  .accommodation-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .accommodation-image {
    height: 180px;
  }

  .accommodation-content {
    padding: 1.25rem;
  }

  .accommodation-card:hover .accommodation-description,
  .accommodation-card:active .accommodation-description {
    max-height: 600px;
  }

  /* Disable blur effect on mobile for better UX */
  .accommodation-grid:has(.accommodation-card:hover)
    .accommodation-card:not(:hover) {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .video-info {
    padding: 1rem;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .cta-strip-inner {
    text-align: center;
    justify-content: center;
  }

  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  /* Pricing responsive */
  .pricing-section {
    padding: 1.25rem;
  }

  .price-promo {
    font-size: 1.75rem;
  }

  .price-promo .currency {
    font-size: 1rem;
  }

  .price-normal {
    font-size: 1rem;
  }

  .price-contact-btn {
    width: 100%;
    text-align: center;
  }
}
