/* ════════════════════════════════
   REVIEWS / YORUMLAR
   ════════════════════════════════ */

.reviews-section {
  background: #060d1c;
  padding: 96px 0 80px;
  overflow: hidden;
}

/* ── Header ── */
.reviews-header {
  text-align: center;
  padding: 0 4vw 40px;
}
.reviews-header .section-label {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: #c9a96e !important;
  justify-content: center;
}
.reviews-header .section-label svg { flex-shrink: 0; }
.reviews-header .section-title  { color: #e2e8f0 !important; }
.reviews-header .section-title em { color: #c9a96e !important; font-style: italic; }

/* ── Summary row ── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 0 4vw 52px;
  flex-wrap: wrap;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.score-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: #e8d5a3;
  line-height: 1;
}
.score-right { display: flex; flex-direction: column; gap: 4px; }
.score-stars {
  font-size: 20px;
  color: #c9a96e;
  letter-spacing: 2px;
  line-height: 1;
}
.score-count {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.reviews-divider {
  width: 1px;
  height: 52px;
  background: rgba(201,169,110,0.18);
  flex-shrink: 0;
}
.btn-reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border: 1px solid rgba(201,169,110,0.35);
  color: #c9a96e;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.26s, border-color 0.26s, color 0.26s;
}
.btn-reviews-google:hover {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.65);
  color: #e8d5a3;
}
.btn-reviews-google svg { flex-shrink: 0; transition: transform 0.26s; }
.btn-reviews-google:hover svg { transform: translateX(4px); }

/* ── Marquee container ── */
.reviews-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: default;
}
.reviews-marquee-outer::before,
.reviews-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 7vw, 120px);
  z-index: 10;
  pointer-events: none;
}
.reviews-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #060d1c 15%, transparent);
}
.reviews-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #060d1c 15%, transparent);
}

/* ── Marquee track ── */
.reviews-marquee {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 8px 24px 20px;
  animation: reviews-scroll 55s linear infinite;
  will-change: transform;
}
.reviews-marquee-outer:hover .reviews-marquee {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Review card ── */
.reviews-card {
  flex-shrink: 0;
  width: 340px;
  background: rgba(255,255,255,0.036);
  border: 1px solid rgba(201,169,110,0.11);
  border-radius: 6px;
  padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.32s, background 0.32s, transform 0.32s, box-shadow 0.32s;
}
.reviews-card:hover {
  background: rgba(255,255,255,0.058);
  border-color: rgba(201,169,110,0.26);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Stars */
.rc-stars {
  font-size: 14px;
  color: #c9a96e;
  letter-spacing: 2px;
  line-height: 1;
}

/* Review text */
.rc-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer: avatar + info + Google G */
.rc-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.rc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.rc-av-1 { background: #6d28d9; }
.rc-av-2 { background: #0e7490; }
.rc-av-3 { background: #b45309; }
.rc-av-4 { background: #065f46; }
.rc-av-5 { background: #9d174d; }
.rc-av-6 { background: #1e40af; }

.rc-info { flex: 1; min-width: 0; }
.rc-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-date {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.rc-google { flex-shrink: 0; opacity: 0.55; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .reviews-section { padding: 64px 0 60px; }
  .score-num { font-size: 56px; }
  .score-stars { font-size: 17px; }
  .reviews-summary { gap: 20px; flex-direction: column; }
  .reviews-divider { display: none; }
  .reviews-card { width: 280px; padding: 20px 18px 16px; }
  .rc-text { font-size: 15px; }
}
