/* Heliskiing Page - Perfect Modern Design */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 450px;
  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.92) 0%, rgba(168, 85, 247, 0.92) 100%);
}

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

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

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

.breadcrumb-nav span {
  opacity: 0.7;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  color: white;
  text-shadow: 2px 2px 15px 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.4rem;
  color: white;
  opacity: 0.95;
  max-width: 750px;
  line-height: 1.6;
}

/* Packages Section */
.packages-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

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

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

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

.packages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Package Box */
.package-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.package-box:hover {
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}

/* Package Header */
.package-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 32px;
  border-bottom: 2px solid #f3f4f6;
}

.package-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.4);
}

.package-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.package-desc {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Duration Tabs */
.duration-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 32px;
  background: #f9fafb;
}

.duration-tab {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.duration-tab:hover {
  border-color: #a855f7;
  transform: translateY(-2px);
}

.duration-tab.active {
  border-color: #13314f;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tab-icon {
  width: 48px;
  height: 48px;
  background: #13314f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.duration-tab.active .tab-icon {
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tab-text {
  flex: 1;
}

.tab-label {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.duration-tab.active .tab-label {
  color: #13314f;
}

.tab-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
}

/* Dates Section */
.dates-section {
  padding: 32px;
}

.dates-panel {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dates-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 24px;
}

.dates-header i {
  color: #13314f;
  font-size: 20px;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.date-option {
  position: relative;
  cursor: pointer;
}

.date-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.date-content {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.date-option:hover .date-content {
  border-color: #a855f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.date-option input:checked + .date-content {
  border-color: #13314f;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.date-icon {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.date-option input:checked + .date-content .date-icon {
  background: #13314f;
  color: white;
}

.date-text {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #374151;
  flex: 1;
}

.date-check {
  color: #10b981;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.date-option input:checked + .date-content .date-check {
  opacity: 1;
}

/* Book Action */
.book-action {
  padding: 0 32px 32px;
}

.btn-book-package {
  width: 100%;
  padding: 18px 32px;
  background: #13314f;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-book-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #6b7280;
}

.modal-close-btn:hover {
  background: #e5e7eb;
  color: #374151;
  transform: rotate(90deg);
}

.modal-head {
  text-align: center;
  margin-bottom: 32px;
}

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

.modal-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 8px;
}

.modal-subheading {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6b7280;
}

.booking-details {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.highlight {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #e5e7eb;
}

.detail-label {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-value {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

.detail-value.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;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #13314f;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
  resize: vertical;
}

.btn-submit-booking {
  width: 100%;
  padding: 16px;
  background: #13314f;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  margin-top: 8px;
}

.btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

/* Empty Message */
.empty-message {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
}

.empty-message i {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-message p {
  font-family: 'Cabin', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .package-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .duration-tabs {
    grid-template-columns: 1fr;
  }

  .dates-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

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

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

  .package-name {
    font-size: 1.5rem;
  }

  .modal-box {
    padding: 28px;
  }

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

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