/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  /* animation: popupFadeIn 0.3s ease-in-out; */
}

/* @keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
} */

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.popup-close:hover {
  color: #ff4444;
}

.pricing-section {
  text-align: center;
}

.pricing-title {
  color: #14a29b;
  margin-bottom: 1.5rem;
  font-size: 1.8em;
  font-weight: bold;
}

.offer-box {
  background: #14a29b61;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #14a29b;
  margin: 1rem 0;
}

.offer-box p {
  margin: 10px 0;
  font-size: 1em;
  color: #555;
}

.discount {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.2rem;
}

.timer-container {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #333;
}

.timer {
  font-weight: bold;
  color: #14a29b;
  font-size: 1.5rem;
}

.claim-btn {
  background: #14a29b;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.claim-btn:hover {
  background: #128c86;
}

.claim-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.form-section {
  margin-bottom: 2rem;
}

.form-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: black;
  margin-left: 5rem;
  margin-top: 4rem;
}

.form {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.9rem;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin-top: 4rem;
}

.form-img {
  flex: 1;
  min-width: 300px;
}

.form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-content {
  flex: 1;
  padding: 30px;
  min-width: 300px;
}

form div {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

input:invalid:focus,
textarea:invalid:focus {
  border-color: #ff4444;
  box-shadow: 0 0 5px rgba(255, 68, 68, 0.3);
}

/* Contact and Location Section */
.contact-location {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-info {
  padding: 20px;
}

.contact-info h4 {
    font-size: 2rem;
    font-weight: 900;
    color: #276562;
    margin-bottom: 10px;
}

.contact-info strong {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 10px;
  display: block;
}

.contact-info a {
  text-decoration: none;
  color: #14a29b;
  font-size: 1.3rem;
}

.contact-info a:hover {
    font-size: 1.2rem;
  }

  .contact-info p {
    color: #14a29b;
  font-size: 1.3rem;
  }

  .map-wrapper {
    padding: 20px;
  }

  .map-wrapper iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

.reviews1 h3 {
  padding-top: 2rem;
  color: #276562;
}

.item-wrapper .stars {
  color: #f5c518;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.text-wrapper p {
  color: #276562;
}

@media (max-width: 1000px) {
  .form {
    margin-top: 3rem;
  }
}

@media (max-width: 990px) {
    .reviews-container {
        display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

@media (max-width: 768px) {
  .form {
    flex-direction: column;
  }

  .form-img {
    max-width: 60%;
    margin: 0 auto;
  }

  .form-content {
    width: 60%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
    .reviews-container {
        display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
  }