/* PRICING SPECIFIC STYLES */

:root{
    --greencheck: #00c853;
    --redx:#ef4444;
}


.pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-color) 100%);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
/* chat gpt*/
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-features {
  padding: 25px;
  flex-grow: 1;
}


.pricing-card {
  min-height: 100%;
}

.pricing-features li {
  min-height: 48px;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
}

.pricing-features i {
  margin-right: 10px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.pricing-features ul {
  display: grid;
  grid-template-rows: repeat(7, 2.5rem); /* 7 features, each gets 2.5rem height */
  gap: 0; /* optional spacing */
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
  padding: 0 0.5rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}


/* end chatgpt*/



.pricing-card:hover {
    transform: translateY(-5px);
}

/* Fixed Basic plan header - using darker teal shades */

.pricing-card-header {
    text-align: center;
    background-color: var(--primary-color);
    color:white;
    padding: 1.0rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color:white;
    /*margin-bottom: 10px;*/
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
   /* margin-bottom: 5px;*/
}

.pricing-period {
    font-size: 0.95rem;
}


.pricing-features {
    padding: 25px;
}


.pricing-card-body {
  border-top: none;     /* Top border */
  border-left: 4px solid var(--teal);   /* Left border */
  border-right: 4px solid var(--teal);  /* Right border */
  border-bottom: 4px solid var(--teal); /* No bottom border */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.pricing-card.basic .pricing-features i,
.pricing-card.pro .pricing-features i {
    color: inherit;
}

.pricing-button {
    padding: 0 25px 25px;
    text-align: center;
}

.cta-button {
    background-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}