#pricing-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.pricing-con {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-text-con {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-text-con h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-col);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pricing-text-con p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
}

.pricing-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  border-color: var(--primary-col);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-col) 0%, #2a2a2a 100%);
  padding: 25px;
  color: #ffffff;
}

.card-header h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.card-content {
  padding: 30px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.detail-row .label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-row .value {
  font-size: 1rem;
  color: var(--primary-col);
  font-weight: 700;
  text-align: right;
}

.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

.price-section {
  text-align: center;
  margin-bottom: 15px;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.price-range {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price {
  font-size: 1.6rem;
  color: var(--primary-col);
  font-weight: 700;
}

.separator {
  color: #ccc;
  font-size: 1.2rem;
  font-weight: 300;
}

.cta-section {
  text-align: center;
}

.price-breakup-btn {
  background: var(--primary-col);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-breakup-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 65, 65, 0.3);
}

.price-breakup-btn:active {
  transform: translateY(0);
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #pricing-section {
    padding: 50px 15px;
  }

  .pricing-text-con h3 {
    font-size: 2.5rem;
  }

  .pricing-text-con p {
    font-size: 1rem;
  }

  .pricing-items {
    gap: 25px;
  }

  .pricing-card {
    max-width: 380px;
  }

  .card-header {
    padding: 20px;
  }

  .card-header h4 {
    font-size: 1.6rem;
  }

  .card-content {
    padding: 25px;
  }

  .detail-row .label {
    font-size: 0.85rem;
  }

  .detail-row .value {
    font-size: 0.95rem;
  }

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

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #pricing-section {
    padding: 40px 12px;
  }

  .pricing-text-con {
    margin-bottom: 35px;
  }

  .pricing-text-con h3 {
    font-size: 2rem;
  }

  .pricing-text-con p {
    font-size: 0.95rem;
  }

  .pricing-items {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .pricing-card {
    max-width: 100%;
  }

  .card-header {
    padding: 18px;
  }

  .card-header h4 {
    font-size: 1.5rem;
  }

  .card-content {
    padding: 20px;
  }

  .detail-row {
    flex-direction: column;
    gap: 5px;
  }

  .detail-row .label {
    font-size: 0.8rem;
  }

  .detail-row .value {
    font-size: 0.9rem;
    text-align: left;
  }

  .divider {
    margin: 15px 0;
  }

  .price-label {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .price-breakup-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #pricing-section {
    padding: 30px 10px;
  }

  .pricing-text-con {
    margin-bottom: 25px;
  }

  .pricing-text-con h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .pricing-text-con p {
    font-size: 0.9rem;
  }

  .pricing-items {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pricing-card {
    max-width: 100%;
    border-radius: 10px;
  }

  .card-header {
    padding: 15px;
  }

  .card-header h4 {
    font-size: 1.3rem;
  }

  .card-content {
    padding: 18px;
  }

  .detail-row {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
  }

  .detail-row .label {
    font-size: 0.75rem;
    text-transform: uppercase;
  }

  .detail-row .value {
    font-size: 0.85rem;
  }

  .divider {
    margin: 12px 0;
  }

  .price-label {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .price-range {
    gap: 6px;
  }

  .price {
    font-size: 1.2rem;
  }

  .separator {
    font-size: 1rem;
  }

  .price-breakup-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #pricing-section {
    padding: 25px 8px;
  }

  .pricing-text-con {
    margin-bottom: 20px;
  }

  .pricing-text-con h3 {
    font-size: 1.3rem;
  }

  .pricing-text-con p {
    font-size: 0.85rem;
  }

  .pricing-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-header {
    padding: 12px;
  }

  .card-header h4 {
    font-size: 1.1rem;
  }

  .card-content {
    padding: 15px;
  }

  .detail-row {
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }

  .detail-row .label {
    font-size: 0.7rem;
  }

  .detail-row .value {
    font-size: 0.8rem;
  }

  .divider {
    margin: 10px 0;
  }

  .price {
    font-size: 1.1rem;
  }

  .price-breakup-btn {
    padding: 9px 18px;
    font-size: 0.8rem;
    width: 100%;
  }
}
