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

/* --- Hero Full-Screen Slider --- */
.hero-slider-t2 {
  margin-top: var(--header-height);
  height: 85vh;
  min-height: 550px;
  position: relative;
  overflow: hidden;
}

.hero-slide-t2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide-t2.active {
  opacity: 1;
}

.hero-overlay-t2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(13,115,119,0.75) 0%, rgba(26,43,44,0.35) 100%);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-badge-t2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title-t2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle-t2 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-search-t2 {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 100px;
  padding: 4px;
  box-shadow: var(--shadow-lg);
}

.hero-search-t2 i {
  margin-left: 16px;
  color: var(--gray-500);
  width: 18px;
  height: 18px;
}

.hero-search-t2 input {
  flex: 1;
  border: none;
  padding: 12px 12px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: transparent;
}

.hero-search-t2 .btn-primary {
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 14px;
  margin: 3px;
}

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

.hero-dots-t2 {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot-t2 {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot-t2.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .hero-slider-t2 { height: 70vh; min-height: 450px; }
  .hero-search-t2 { margin: 0 16px 20px; }
}

/* --- 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(26, 43, 44, 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;
  }
}

/* ============================================================
   SERVICE DETAIL — Split Layout (Image Left + Content Right)
   ============================================================ */
.sd-split-section {
  padding-top: 40px;
}

.sd-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1023px) {
  .sd-split-layout { grid-template-columns: 1fr; gap: 40px; }
}

.sd-split-image {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1023px) {
  .sd-split-image { position: static; max-height: 400px; }
}

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

.sd-split-content {}

.sd-split-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.sd-split-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.sd-split-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 32px 0 16px;
}

.sd-split-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.sd-split-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sd-sf-icon {
  width: 44px; height: 44px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.sd-sf-icon .lucide { width: 22px; height: 22px; }

.sd-split-feature strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.sd-split-feature p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.sd-split-dests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.sd-dest-tag {
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}

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

/* ============================================================
   PACKAGES GALLERY — 3-Column Masonry Grid
   ============================================================ */
@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card-image {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.package-card-image img {
  transition: transform 0.5s ease;
}

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

/* ============================================================
   PACKAGES — Horizontal Card Design (different from T1)
   ============================================================ */
.pkg-h-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg-h-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pkg-h-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .pkg-h-card { grid-template-columns: 1fr; }
}

.pkg-h-image {
  position: relative;
  min-height: 200px;
}

.pkg-h-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
}

.pkg-h-image .package-badge {
  z-index: 1;
  top: 12px; left: 12px;
}

.pkg-h-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pkg-h-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.pkg-h-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.pkg-h-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pkg-h-meta .lucide { width: 14px; height: 14px; }

.pkg-h-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 16px;
  flex-grow: 1;
}

.pkg-h-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pkg-h-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-h-price .price-original {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: line-through;
}

.pkg-h-price .price-current {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.pkg-h-price .price-unit {
  font-size: 12px;
  color: var(--gray-500);
}

.pkg-h-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .pkg-h-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   GALLERY — 2×2 Grid (different from T1 main+thumbs)
   ============================================================ */
.gallery-grid-section {
  padding-top: 20px;
  padding-bottom: 10px;
}

.gallery-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 639px) {
  .gallery-2x2 { grid-template-columns: 1fr 1fr; gap: 4px; }
}

.gallery-grid-item {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gallery-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ============================================================
   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; }

/* Gallery T2 — Bento Grid with Hover Overlay */
.gallery-t2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; grid-auto-flow: dense; }
@media (max-width: 1023px) { .gallery-t2-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) { .gallery-t2-grid { grid-template-columns: repeat(2, 1fr); } }

.g2-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.g2-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; min-height: 200px; }
.g2-item:hover img { transform: scale(1.08); }
.g2-tall { grid-row: span 2; }
.g2-wide { grid-column: span 2; }

.g2-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); padding: 16px; color: #fff; opacity: 0; transition: opacity .3s; }
.g2-item:hover .g2-overlay { opacity: 1; }
.g2-overlay span { font-family: var(--font-heading); font-size: 14px; font-weight: 600; }
