/* ---------- Unique Section Styles ---------- */
body{
    font-family: "Poppins", sans-serif;
}
.reviewSection1 {
  font-family: "Poppins", sans-serif;
  background-color: white;
  padding: 40px 20px;
  text-align: center;
}

a {
  text-decoration: none;
}

.reviewSection1 .review-title {
  font-size: 2rem;
  font-weight: 600;
  color: black;
  margin-bottom: 30px;
}

.review-container {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  min-width: 350px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 0 15px #203a70;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  background: #dcdcdc;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
  font-size: 16px;
}

.review-name {
  font-weight: 700;
  font-size: 17px;
  color: #222;
}

.review-verified {
  color: #00b67a;
  font-size: 16px;
}

.review-stars {
  color: #f5c518;
  font-size: 14px;
  margin-right: 5px;
}

.review-recommend {
  color: #00b67a;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 10px 0;
}

.review-city {
  border-top: 1px solid #eee;
  padding-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.review-city span {
  font-weight: normal;
  color: #666;
}

/* Action Buttons */
.review-buttons {
  margin-top: 30px;
}

.review-buttons .btn {
  padding: 12px 36px;
  background: #c41f1f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid #c41f1f;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

.review-buttons .btn:hover {
  color: #c41f1f;
  border: 2px solid #c41f1f;
  background-color: white;
}

/* Popup Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  position: relative;
  background: #fff;
  padding: 20px 25px 25px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-box h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #c41f1f;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.popup-row {
  display: flex;
  gap: 10px;
}

.popup-row input {
  flex: 1;
}

.popup-box button[type="submit"] {
  width: 100%;
  padding: 10px;
  background: #c41f1f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #c41f1f;
}

@media (max-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviewSection1 {
    padding: 20px 10px;
  }

  .review-grid {
    gap: 15px;
    padding: 0 10px;
  }

  .review-card {
    padding: 20px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
