/* --- Full-width Section --- */
.hours-fees-section {
  width: 100%;
  background: var(--color-primary);
  color: var(--font-color-light);
  padding: 60px 5%;
  border-radius: 0;
  scroll-margin-top: 100px;
  box-sizing: border-box;
}

/* --- Layout Wrapper --- */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* --- Hours Column --- */
.hours-column {
  flex: 1;
  min-width: 250px;
}
.hours-column h2 {
  color: var(--font-color-light);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.hours-column p {
  color: var(--font-color-light);
  margin-bottom: 20px;
  opacity: 0.95;
  line-height: 1.5;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours-table td:first-child {
  opacity: 0.9;
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* --- Fees Column --- */
.fees-column {
  flex: 1;
  min-width: 250px;
}
.fees-column h2 {
  color: var(--font-color-light);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* --- Fee Cards Grid --- */
.fee-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  grid-auto-rows: 1fr;
}

/* --- Fee Card --- */
.fee-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  backdrop-filter: blur(6px);
}
.fee-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Card Header --- */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-header h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--font-color-light);
}
.card-header .price {
  font-size: 1rem;
  color: var(--font-color-light);
}
.fee-card ul {
  list-style: disc;
  margin: 0 0 15px 0px;
  color: var(--font-color-light);
  flex-grow: 1;
}
.fee-card li {
  margin-bottom: 4px;
}

/* --- Button --- */
.inquire-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  background: var(--color-accent);
  color: var(--font-color-light);
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
}
.inquire-btn:hover {
  background: var(--color-secondary);
  transform: scale(1.05);
}

/* --- Tablet --- */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .fee-cards {
    grid-template-columns: 1fr;
  }
  .fee-card {
    text-align: center;
    align-items: center;
  }
  .fee-card ul {
    list-style: none;
    padding: 0;
  }
  .inquire-btn {
    align-self: center;
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .hours-fees-section {
    padding: 40px 15px;
  }
  .hours-column h2, .fees-column h2 {
    font-size: 1.4rem;
  }
  .hours-table td {
    font-size: 0.85rem;
  }
}

/* --- Scroll Animation --- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="fade-left"].active,
[data-animate="fade-right"].active {
  transform: translateX(0);
}
