/* Pricing Page Specific Styles */
.pricing-page-section {
  padding: 150px 0 100px;
  min-height: 100vh;
}

/* Re-using the unified pricing table styles, now in a dedicated CSS file */
.unified-pricing-table-container {
  margin-top: 40px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  box-shadow: var(--card-shadow);
}
.pricing-table-responsive {
  width: 100%;
  display: table;
  border-collapse: collapse;
}
.pricing-header-row,
.pricing-data-row {
  display: table-row;
}
.header-cell,
.cell {
  display: table-cell;
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
}
.pricing-data-row:last-child .cell {
  border-bottom: none;
}
.pricing-header-row {
  background-color: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cell[data-label="Plan"] {
  width: 25%;
  font-weight: 700;
}
.cell[data-label="Plan"] strong {
  font-size: 1.1rem;
}
.cell[data-label="Plan"] span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: block;
  margin-top: 4px;
}
.cell[data-label="Price"] .price-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}
.cell[data-label="Price"] .price-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}
.whatsapp-cta {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #25d366 !important;
  transition: all 0.3s ease;
}
.whatsapp-cta:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-2px) scale(1.05);
}
.whatsapp-order-container {
  text-align: center;
  margin: 40px 0 20px;
}
.whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #25d366 !important;
  padding: 15px 30px;
  font-size: 1.1rem;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-btn:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-3px);
  animation-play-state: paused;
}
.whatsapp-btn i {
  margin-right: 10px;
  font-size: 1.3rem;
}
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pricing-header-row {
    display: none;
  }
  .pricing-table-responsive,
  .pricing-data-row,
  .cell {
    display: block;
  }
  .pricing-data-row {
    padding: 20px;
    border-bottom: 2px solid var(--border-color-heavy);
  }
  .cell {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    border-bottom: 1px dashed var(--border-color);
  }
  .cell:last-child {
    border-bottom: none;
  }
  .cell::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-secondary);
    text-align: left;
    margin-right: 10px;
  }
  .cell[data-label="Plan"],
  .cell[data-label="Price"] {
    flex-direction: column;
    align-items: flex-end;
  }
  .cell[data-label="Action"] {
    padding-top: 15px;
  }
  .cell[data-label="Action"] .btn {
    width: 100%;
  }
}
