/* ============================================================
   PAGES — Hero, CTA, Packages, Services, About, Contact, etc.
   ============================================================ */


.hero-t7 { margin-top: var(--header-height); background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 80px 0 60px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.hero-t7::before { content:''; position: absolute; top: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,114,90,.12), transparent 70%); border-radius: 50%; }
.hero-t7-inner { position: relative; z-index: 1; max-width: 650px; margin: 0 auto; padding: 0 24px; }
.hero-t7-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(232,114,90,.4); padding: 5px 16px; border-radius: 100px; font-size: 11px; font-weight: 600; margin-bottom: 24px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.hero-t7-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.hero-t7-sub { font-size: 1.05rem; opacity: .8; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-t7-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-t7-stats { display: flex; gap: 28px; justify-content: center; }
.h7s-item strong { display: block; font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--accent); }
.h7s-item span { font-size: 11px; opacity: .5; text-transform: uppercase; letter-spacing: 1px; }
/* --- Hero Split Section --- */
.hero-split {
  margin-top: var(--header-height);
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--white) 0%, #F0EDE5 40%, rgba(58, 140, 130, 0.06) 100%);
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 114, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-split-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 62, 80, 0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-badge .lucide {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw + 0.75rem, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.15vw + 0.5rem, 1.2rem);
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--gray-500);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.hero-trust-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Images Grid */
.hero-split-images {
  position: relative;
  height: 520px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-secondary {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 55%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 5px solid var(--white);
}

.hero-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  top: 60px;
  left: 0;
  width: 40%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  border: 4px solid var(--white);
  opacity: 0.85;
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shape {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(232, 114, 90, 0.12);
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  z-index: 0;
}

/* Mobile Hero */
@media (max-width: 1023px) {
  .hero-split {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-split-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-split-images {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image-main {
    width: 80%;
    height: 220px;
    right: 0;
  }

  .hero-image-secondary {
    width: 55%;
    height: 160px;
    bottom: 0;
    right: 20px;
  }

  .hero-image-accent {
    top: 30px;
    left: 0;
    width: 40%;
    height: 130px;
  }

  .hero-shape {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -20px;
  }
}

@media (max-width: 767px) {
  .hero-split-images {
    height: 260px;
  }

  .hero-image-main {
    width: 85%;
    height: 180px;
  }

  .hero-image-secondary {
    width: 55%;
    height: 130px;
    bottom: 0;
    right: 10px;
  }

  .hero-image-accent {
    top: 20px;
    height: 100px;
  }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--primary);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 768px) {
  .stat-number { font-size: 36px; }
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* --- Package Cards --- */
.packages-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(45, 37, 32, 0.06);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(197, 168, 128, 0.2);
}

.package-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-card-image img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 30px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

.badge-populer { background: var(--accent-dark); }
.badge-promo { background: #E05A47; }
.badge-new { background: var(--green); }
.badge-sold { background: var(--red); }
.badge-tersedia { background: var(--green-light); }

.package-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
  z-index: 2;
}

.package-wishlist:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.1);
}

.package-card-body {
  padding: 24px;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.stars { color: var(--accent); }

.package-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.package-card:hover .package-name {
  color: var(--accent-dark);
}

.package-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

/* --- CTA — Card Style with Gradient Background --- */
.cta-new {
  background: linear-gradient(160deg, var(--accent) 0%, var(--gold) 100%);
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.cta-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.cta-card-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 0 0 4px 4px;
}

.cta-card-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.cta-card-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-card .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-card .btn-outline-dark {
  border-color: var(--gray-300);
  color: var(--gray-700);
}

.cta-card .btn-outline-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Fallback old CTA */
.cta-section {
  background: var(--primary-dark);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta-title { font-size: 36px; }
}

.cta-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-section .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .cta-card {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }
}

/* --- Page Header --- */
.page-header {
  margin-top: var(--header-height);
  padding: 48px 0 32px;
  background: var(--gray-50);
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .page-title { font-size: 40px; }
}

.page-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* --- Packages Page --- */
.packages-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- Package Detail --- */
.package-detail-gallery {
  margin-top: 0;
}

.gallery-main {
  position: relative;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-main { height: 500px; }
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.25s ease;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: var(--transition);
  border: 2.5px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-thumb:hover img {
  transform: scale(1.07);
}

.package-detail-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .package-detail-layout {
    grid-template-columns: 1fr 380px;
  }
}

.package-detail-content {}

.package-detail-header {
  margin-bottom: 24px;
}

.package-detail-header .package-rating {
  margin-bottom: 12px;
}

.package-detail-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.package-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-500);
}

.package-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-detail-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-price {
  margin-bottom: 20px;
}

.sidebar-price .price-current {
  font-size: 28px;
}

.sidebar-price .price-original {
  font-size: 16px;
}

.sidebar-price .price-unit {
  font-size: 14px;
}

.sidebar-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.sidebar-wa {
  width: 100%;
  justify-content: center;
}

.sidebar-price .package-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sidebar-card .package-badge {
  position: static;
}

/* --- Booking Form --- */
.booking-form-section {
  margin-top: 32px;
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-md);
}

.booking-form {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-form .form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,77,107,0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}

.contact-value a {
  color: var(--primary);
}

.contact-value a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card .booking-form {
  grid-template-columns: 1fr;
}

/* --- About --- */
.about-stats {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

@media (min-width: 640px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

.about-stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.about-stat-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.about-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

.team-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-200);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

.team-role {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* --- Gallery --- */
.gallery-masonry {
  columns: 2;
  gap: 8px;
}

@media (min-width: 640px) {
  .gallery-masonry { columns: 3; gap: 12px; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

@media (min-width: 640px) {
  .gallery-item { margin-bottom: 12px; }
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,77,107,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.gallery-item-fee {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-50);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
}

/* --- Blog Detail --- */
.blog-detail-section {
  padding-bottom: 40px;
}

.blog-detail-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .blog-detail-layout {
    grid-template-columns: 1fr 320px;
  }
}

.blog-detail-article {
  max-width: 800px;
}

.blog-detail-image {
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 16px;
  color: var(--gray-900);
}

.blog-detail-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
}

.blog-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-detail-content p {
  margin-bottom: 16px;
}

.blog-detail-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.blog-detail-content ul li {
  margin-bottom: 8px;
}

.blog-detail-sidebar .sidebar-card {
  font-size: 14px;
}

.blog-detail-sidebar .sidebar-card ul li a:hover {
  color: var(--accent);
}

/* --- Sticky CTA (Mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  z-index: 998;
  gap: 8px;
}

@media (max-width: 767px) {
  .sticky-cta { display: flex; }
}

.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: 14px;
}

/* --- Open Trip Page --- */
.open-trip-table-wrap {
  overflow-x: auto;
}

.open-trip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.open-trip-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.open-trip-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
}

.open-trip-table tr:hover td {
  background: var(--gray-50);
}

.quota-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.quota-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
}

.quota-fill.low {
  background: var(--red);
}

.quota-fill.medium {
  background: var(--gold);
}

/* --- Page Content Styles --- */
.content-section {
  padding: 24px 0;
}

.content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

.content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 24px 0 12px;
}

/* ============================================================
   Services & Destinations — Modular Stylesheet
   Uses variables from style.css (Design System: Midnight Gold)
   ============================================================ */

/* --- Services Hero --- */
.services-hero {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 16px 24px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/destinasi/nusa-penida.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.services-hero > * {
  position: relative;
  z-index: 1;
}

.services-hero::after {
  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='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.services-hero-sub {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* --- Services Section --- */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

/* --- Tabs --- */
.services-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid #E5E7EB;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  color: var(--gray-700);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  border-color: var(--accent);
  color: var(--primary);
}

/* --- Filter Chips --- */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.chip {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
  user-select: none;
}

.chip.active {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.chip:hover:not(.active) {
  background: var(--gray-200);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Service Card --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* --- Card Image --- */
.service-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

/* --- Badge --- */
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(30, 27, 75, 0.85);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}

/* --- Overlay --- */
.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30, 27, 75, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

.service-price-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 2;
}

/* --- Card Body --- */
.service-card-body {
  padding: 20px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* --- Card Footer --- */
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
  font-family: var(--font-heading);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive: Tablet --- */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-hero-title {
    font-size: 36px;
  }

  .services-hero {
    min-height: 300px;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 28px;
  }

  .services-hero-sub {
    font-size: 16px;
  }

  .services-hero {
    min-height: 280px;
    padding: 60px 16px 40px;
  }

  .services-section {
    padding: 48px 0;
  }

  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    justify-content: flex-start;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .service-card-image {
    height: 200px;
  }

  .services-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .detail-hero-title {
    font-size: 24px;
  }
}

/* ============================================================
   Package / Detail Page
   ============================================================ */

/* --- Hero --- */
.detail-hero-bg {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.detail-hero-overlay {
  width: 100%;
  padding: 60px 0 40px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.75) 100%);
}

.detail-type-badge {
  display: inline-block;
  background: var(--accent, #C9A84D);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-hero-title {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.detail-hero-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent, #C9A84D);
}

/* --- Layout --- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 40px 0;
}

.detail-main {
  min-width: 0;
}

.detail-sidebar {
  position: relative;
}

/* --- Cards --- */
.detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.detail-card h2 {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark, #0f0c29);
  margin-bottom: 16px;
}

.detail-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600, #6b7280);
}

/* --- Gallery --- */
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

/* --- Booking Card (sticky) --- */
.detail-booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
}

.booking-card-price {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark, #0f0c29);
  line-height: 1;
}

.booking-card-label {
  font-size: 14px;
  color: var(--gray-500, #9ca3af);
  margin-bottom: 20px;
}

.booking-card-info {
  padding: 16px 0;
  border-top: 1px solid var(--gray-200, #e5e7eb);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.info-row span:first-child {
  color: var(--gray-500, #9ca3af);
}

.info-row span:last-child {
  color: var(--primary-dark, #0f0c29);
  font-weight: 600;
}

/* --- Highlights Grid --- */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50, #f9fafb);
  border-radius: 12px;
  border: 1px solid var(--gray-100, #f3f4f6);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #1E1B4B);
  color: var(--accent, #C9A84D);
  font-size: 18px;
}

.highlight-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700, #374151);
  line-height: 1.3;
  padding-top: 8px;
}

/* --- Info Grid --- */
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--gray-50, #f9fafb);
  border-radius: 12px;
  border: 1px solid var(--gray-100, #f3f4f6);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #1E1B4B);
  color: #fff;
  margin-bottom: 10px;
}

.info-card-label {
  font-size: 12px;
  color: var(--gray-500, #9ca3af);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark, #0f0c29);
}

/* --- Tips Block --- */
.detail-tips {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-dark, #0f0c29), var(--primary, #1E1B4B));
  color: #fff;
  border-radius: 12px;
}

.detail-tips h3 {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent, #C9A84D);
}

.detail-tips p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Includes / Excludes --- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.inc-section h3,
.exc-section h3 {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-section h3 { color: var(--green-600, #059669); }
.exc-section h3 { color: var(--red-500, #ef4444); }

.inc-list,
.exc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inc-list li,
.exc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-700, #374151);
  border-bottom: 1px solid var(--gray-100, #f3f4f6);
}

.inc-list li:last-child,
.exc-list li:last-child {
  border-bottom: none;
}

.inc-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--green-600, #059669);
}

.exc-list li::before {
  content: '✕';
  font-weight: 700;
  color: var(--red-500, #ef4444);
}

/* --- Rating Stars --- */
.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 14px;
}

/* --- Not Found --- */
.detail-notfound {
  text-align: center;
  padding: 100px 20px;
}

.detail-notfound h2 {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-dark, #0f0c29);
}

/* --- Related --- */
#relatedSection {
  padding: 60px 0;
  background: #F9FAFB;
}

#relatedSection .section-title {
  font-family: var(--font-heading, 'Archivo', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark, #0f0c29);
  text-align: center;
  margin-bottom: 40px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-sidebar {
    order: -1;
  }

  .detail-booking-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .detail-hero-bg {
    min-height: 320px;
  }

  .detail-hero-title {
    font-size: 28px;
  }

  .detail-hero-price {
    font-size: 22px;
  }

  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .detail-hero-bg {
    min-height: 280px;
  }

  .detail-hero-title {
    font-size: 24px;
  }
}

/* ============================================================
   GALLERY — Enhanced (hover zoom, overlay, shadow)
   ============================================================ */
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.gallery-main img { transition: transform 0.5s ease; }
.gallery-main:hover img { transform: scale(1.02); }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.gallery-thumb { width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; opacity: .6; transition: all .3s; border: 2px solid transparent; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.package-detail-gallery { padding-top: 20px; padding-bottom: 10px; }

/* T7: 2-column grid, coral left accent border, unique from all */
.packages-grid, .dest-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
@media (max-width: 767px) { .packages-grid, .dest-grid { grid-template-columns: 1fr !important; } }
.package-card, .dest-card { display: flex; flex-direction: row; border-left: 5px solid var(--accent); border-radius: var(--radius-md); overflow: hidden; border-top: none !important; }
.package-card:hover, .dest-card:hover { border-left-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateX(3px); }
.package-card-image, .dest-card-img { width: 200px; flex-shrink: 0; height: auto !important; min-height: 160px; }
.package-card-image img, .dest-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.package-card-body, .dest-card-body { flex: 1; padding: 16px; }
@media (max-width: 639px) { .package-card, .dest-card { flex-direction: column; } .package-card-image, .dest-card-img { width: 100%; height: 180px; } }

.gallery-carousel{position:relative}.gc-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:12px;padding-bottom:12px;scrollbar-width:none}.gc-track::-webkit-scrollbar{display:none}.gc-slide{flex:0 0 100%;scroll-snap-align:start;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:16/7}.gc-slide img{width:100%;height:100%;object-fit:cover}.gc-dots{display:flex;justify-content:center;gap:8px;margin-top:12px}.gcd{width:8px;height:8px;border-radius:50%;background:var(--gray-300);border:none;cursor:pointer;transition:all .3s}.gcd.active{background:var(--accent);width:24px;border-radius:4px}
.gallery-t7{columns:3;column-gap:12px}@media(max-width:1023px){.gallery-t7{columns:2}}@media(max-width:639px){.gallery-t7{columns:1}}.g7-item{break-inside:avoid;margin-bottom:12px;border-radius:var(--radius-md);overflow:hidden;transition:.3s}.g7-item:hover{transform:scale(1.02);box-shadow:var(--shadow-lg)}.g7-item img{width:100%;display:block}
.gallery-t7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.g7g-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.g7g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g7g-item:hover img { transform: scale(1.04); }
@media (max-width: 639px) { .gallery-t7-grid { grid-template-columns: 1fr; } }
