/* Reviews Section */
.reviews-section {
  background: #f5f5f5;
  padding: 48px 0;
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.visits-section {
  padding: 60px 0;
  background: #fff;
}

.visits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.visit-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.visit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.3));
  z-index: 1;
}

.visit-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 30px;
  max-width: 520px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.88);
}

.visit-content p {
  font-size: 1rem;
  margin: 0 0 10px 0;
  opacity: 1;
  font-weight: 600;
  color: #fff;
}

.visit-content h2 {
  font-size: 2.8rem;
  margin: 0 0 18px 0;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 1024px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
  .visits-grid {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 320px;
  }

  .visit-content {
    max-width: 100%;
  }

  .visit-content h2 {
    font-size: 2.2rem;
  }
}


/* Left column */
.reviews-left {
  padding: 0 16px;
}

.reviews-title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #111;
  line-height: 1.2;
}

.reviews-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0 0 28px 0;
}

/* Trustpilot badge */
.trustpilot-summary {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.badge-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px 0;
}

.badge-stars {
  font-size: 2rem;
  color: #0ab65f;
  margin: 0 0 10px 0;
}

.badge-caption {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

.trustpilot-link {
  color: #0ab65f;
  font-weight: 700;
  text-decoration: none;
}

/* Right column - Carousel */
.reviews-right {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

/* Review card */
.review-card {
  scroll-snap-align: start;
  min-width: 360px;
  max-width: 360px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.12);
}

/* Review stars */
.review-stars {
  font-size: 1.3rem;
  color: #1dbf73;
  letter-spacing: 3px;
}

/* Review header (date and stars) */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999;
}

/* Review title */
.review-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Review text */
.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
  flex: 1;
}

/* Review separator */
.review-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Reviewer name */
.review-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Carousel controls */
.carousel-controls {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .reviews-title {
    font-size: 28px;
  }

  .reviews-container {
    gap: 24px;
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 18px;
  }

  .carousel-controls {
    top: -45px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}