/* Sticky Enquiry Box */
.enquiry-sticky {
  position: sticky;
  top: 100px;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 350px;
}

.enquiry-sticky h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #222;
}

.enquiry-sticky p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.enquiry-sticky input,
.enquiry-sticky select,
.enquiry-sticky textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.enquiry-sticky textarea {
  resize: none;
  height: 90px;
}

.enquiry-sticky button {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-sticky button:hover {
  background: #333;
}

.form-status {
  margin-top: 10px;
  font-size: 13px;
  color: green;
}

* {
  box-sizing: border-box;
}

.reviews-section {
  background: #f8f9fa;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.slider-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 33.333%;
  padding: 10px;
}

@media (max-width: 900px) {
  .slide {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .slide {
    min-width: 100%;
  }
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.summary-card {
  background: #f1f3f4;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-badge {
  background: linear-gradient(135deg,#6f7bf7,#8e44ad);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
}

.summary-text {
  font-size: 14px;
  color: #555;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-header h4 {
  margin: 0;
  font-size: 15px;
}

.review-header small {
  color: #777;
}

.stars {
  color: #fbbc04;
  font-size: 18px;
  margin: 10px 0;
}

.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.read-more {
  color: #1a73e8;
  font-size: 14px;
  text-decoration: none;
}

/* Navigation */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.prev { left: 10px; }
.next { right: 10px; }
