/* Page Banner */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  max-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/3943716/pexels-photo-3943716.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -80px;
}

.banner-content {
  max-width: 800px;
  padding: var(--space-2);
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: var(--space-1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Price List Section */
.price-list-section {
  padding: var(--space-8) 0;
  background-color: var(--gray-100);
}

.price-category {
  margin-bottom: var(--space-6);
}

.price-category h2 {
  color: var(--secondary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--primary);
}

.price-table {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 0.8fr;
  align-items: center;
  padding: var(--space-2);
  border-bottom: 1px solid var(--gray-200);
  transition: background-color var(--transition-fast);
}

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

.price-row:hover {
  background-color: var(--gray-100);
}

.price-row.header {
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
}

.price-row .col {
  padding: 0 var(--space-1);
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.price-notes {
  margin-top: var(--space-6);
  background: white;
  padding: var(--space-4);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.price-notes h3 {
  color: var(--secondary);
  margin-bottom: var(--space-2);
}

.price-notes ul {
  list-style: disc;
  padding-left: var(--space-4);
}

.price-notes li {
  color: var(--gray-700);
  margin-bottom: var(--space-1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .price-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 30vh;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .price-row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    padding: var(--space-2);
  }
  
  .price-row.header {
    display: none;
  }
  
  .price-row .col {
    padding: var(--space-1) 0;
  }
  
  .price-row .col:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 576px) {
  .page-banner {
    min-height: 250px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .price-notes {
    padding: var(--space-2);
  }
}