/* Price Section */
.price-section {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #fff5f9, #f8f0ff);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.price-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.price-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
}

.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.service-category h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-purple-pink);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.price-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(182, 140, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-purple-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(182, 140, 255, 0.25);
}

.price-item:hover::before {
  transform: scaleX(1);
}

.price-info h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b68cff;
  display: block;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .price-section {
    padding: 8rem 1rem 3rem;
  }

  .service-category {
    margin-bottom: 3rem;
  }

  .service-category h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-item {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .price-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-category h3 {
    font-size: 1.4rem;
  }

  .price-info h4 {
    font-size: 1.2rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.3rem;
  }
}

.volume-table {
  width: 100%;
  overflow-x: auto;
}

.volume-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(182, 140, 255, 0.15);
}

.volume-table th,
.volume-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(182, 140, 255, 0.1);
}

.volume-table th {
  background: var(--gradient-purple-pink);
  color: white;
  font-weight: 600;
}

.volume-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(182, 140, 255, 0.05);
}

.volume-table tr:hover {
  background: rgba(182, 140, 255, 0.05);
}

@media (max-width: 768px) {
  .volume-table {
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }

  .volume-table table {
    border-radius: 0;
  }

  .volume-table th,
  .volume-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Price Chart Section */
.price-chart-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f0ff, #fff5f9);
  text-align: center;
}

.price-chart-container {
  max-width: 800px;
  margin: 0 auto;
}

.price-chart-section h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
}

.price-chart-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-purple-pink);
}

.chart-image-container {
  position: relative;
  display: inline-block;
}

.price-chart-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(182, 140, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-chart-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(182, 140, 255, 0.3);
}

.chart-note {
  margin-top: 1rem;
  color: var(--text-color);
  font-style: italic;
  font-size: 0.9rem;
}

/* Responsive Design for Price Chart */
@media (max-width: 768px) {
  .price-chart-section {
    padding: 3rem 1rem;
  }

  .price-chart-section h2 {
    font-size: 1.8rem;
  }
}
