/* Pricing Section */
.pricing-section {
  background-color:transparent;
  color: white;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
}

.pricing-section h1{
  font-size: 8rem; 
  font-weight: 700;
  line-height: 1.2;
  color: white;
  position: relative; 
margin-bottom: 1rem;
}


.title .our{
  font-family: 'Geomatic';
    font-weight: bold;
    font-style: normal;
  position: absolute;
  top: -10%;
  left: 35%;
  font-size: 3rem; 
  font-weight: 500; 
  color: white
}

/* Section Title */
.pricing-header h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* Button Groups */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pricing-tabs .btn {
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border: none;
}

/* Service Buttons */
.service-btn {
  background-color: #2b2b2b;
  color: white;
}

.service-btn:hover,
.service-btn.active {
  background-color: #595959;
  color: white;
}

/* Billing Buttons */
.billing-btn {
  background-color: #2b2b2b;
  color: white;
}

.billing-btn:hover,
.billing-btn.active {
  background-color: white;
  color: black;
}

/* STRICT 3-COLUMN GRID */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Reduce spacing */
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pricing Card Format */
.card {
  background: #2b2b2b;
  border-radius: 10px;
  text-align: center;
  width: 30%; /* Ensure strict 3 columns */
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  margin: 0px; /* Remove margin */
}

/* Ensuring Cards Are the Same Height */
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers content horizontally */
}

.card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Pricing Amount */
.card-body .h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

/* Button */
.card-body a {
  width: 100%;
  padding: 10px;
  background-color: black;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  margin-top: 15px;
}

p span{
  color: #FF007F;
}

.card-body a:hover {
  background-color: #595959;
}

/* Footer */
.card-footer {
  padding: 10px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature List */
.card-footer ol {
  padding-left: 0;
  list-style: none;
}

.card-footer li {
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.card-footer i {
  color: #FF007F;
  margin-right: 8px;
}
.card-body .btn {
  width: 80%;
  max-width: 250px; /* Keeps button size consistent */
  text-align: center;

}

/* FIX SPECIAL OFFERS */
.special-offers {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  flex-wrap: wrap;
}

.special-card {
  background: #2b2b2b;
  padding: 20px;
  border-radius: 10px;
  
  width: 30%;
}

.special-card h3{
  text-align: center;
}
.special-card ul li{
  text-align: start;
  margin-top: 20px;
  
}

/* Restore Special Offer Button */
.special-card button {
  width: 100%;
  padding: 10px;
  background-color: black;
  color: white;
  border-radius: 8px;
  border: none;
  margin-top: 10px;
}

.special-card button:hover {
  background-color: #595959;
}

/* Restore "Request a Quote" Link */
.special-card a {
  text-decoration: none;
  color: #FF007F;
  font-weight: bold;
}

.special-card a:hover {
  text-decoration: underline;
}

/* Discount Ribbon */
.discount-badge {
  position: absolute;
  top: 10px;
  left: -15px;
  background: linear-gradient(45deg, #ff3445 0%, #8b0a0a 51%, #ff1d1d 100%);
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(-20deg);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  border-radius: 5px;
}

/* Original Price (Strikethrough) */
.original-price {
  text-decoration: line-through;
  color: gray;
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Discounted Price */
.discounted-price {
  color: #ff6547;
  font-size: 1.5rem;
  font-weight: bold;
}


/* Responsive Grid */
@media (max-width: 992px) {
  .pricing-container {
      flex-direction: column;
      align-items: center;
  }
  .pricing-section h1{
    font-size: 4rem; 

  }
  
  
  .title .our{
 
    top: -22%;
    left: 12%;
    font-size: 2rem; 

  }
  
  .card {
      width: 90%;
  }

  .special-offers {
      flex-direction: column;
  }

  .special-card {
      width: 90%;
  }
}


/* Fully optimized for small mobile screens (phones) */
@media (max-width: 576px) {
  .pricing-section {
    padding: 30px 10px; /* Reduce padding */
  }

  .pricing-section h1 {
    font-size: 3.5rem; /* Reduce size further for small phones */
    margin-bottom: 0.5rem;
  }

  .title .our {
    top: -20%;
    left: 10%;
    font-size: 1.8rem;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-tabs .btn {
    width: 100%; /* Full width buttons */
    text-align: center;
  }

  .pricing-container {
    gap: 15px;
  }

  .card {
    width: 100%; /* Full width on very small screens */
    min-height: auto;
    padding: 10px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-body .h2 {
    font-size: 1.5rem;
  }

  .special-card {
    width: 100%;
  }

  .special-card h3 {
    font-size: 1.5rem;
  }

  .special-card ul li {
    font-size: 0.9rem;
  }

  .card-body a {
    font-size: 0.9rem;
    padding: 8px;
  }
}
