/* Common Guiding Pages Styles */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 400px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
}

.breadcrumb-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  color: white;
  opacity: 0.9;
}

.breadcrumb-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-nav span {
  opacity: 0.7;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.hero-subtitle {
  position: relative;
  z-index: 10;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: white;
  opacity: 0.95;
  max-width: 700px;
}

/* Packages Section */
.packages-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #6b7280;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.package-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.package-duration-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 24px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #13314f;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

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

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.package-content {
  padding: 24px;
}

.package-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.package-description {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid #f3f4f6;
}

.package-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: #13314f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #13314f;
  transition: gap 0.3s ease;
}

.package-card:hover .package-link {
  gap: 10px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.empty-text {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #9ca3af;
  margin-top: 20px;
}

/* Featured Section - Customize Your Adventure */
.featured-section {
  padding: 60px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.featured-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
  border: 2px solid #e0e7ff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  transition: transform 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-icon {
  width: 80px;
  height: 80px;
  background: #13314f;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.featured-content {
  color: #111827;
}

.featured-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.2;
}

.featured-description {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.featured-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-benefits li {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #13314f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-benefits li i {
  color: #13314f;
  font-size: 1rem;
}

.featured-button {
  background: #13314f;
  color: white;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.featured-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
  gap: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .featured-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 24px;
    text-align: center;
  }

  .featured-icon {
    margin: 0 auto;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .featured-description {
    font-size: 1rem;
  }

  .featured-benefits {
    align-items: flex-start;
  }

  .featured-button {
    width: 100%;
    justify-content: center;
  }
}
