/* --------------- Reviews Page (polaroid gallery) --------------- */

.right-side .rvg-top,
.right-side .rvg-gallery.section-padding,
.right-side .rvg-cta.section-padding {
  padding-left: 80px;
  padding-right: 80px; }

@media (max-width: 991px) {
  .right-side .rvg-top,
  .right-side .rvg-gallery.section-padding,
  .right-side .rvg-cta.section-padding {
    padding-left: 48px;
    padding-right: 48px; } }

@media (max-width: 767px) {
  .right-side .rvg-top,
  .right-side .rvg-gallery.section-padding,
  .right-side .rvg-cta.section-padding {
    padding-left: 24px;
    padding-right: 24px; } }

.right-side .rvg-gallery .container,
.right-side .rvg-cta .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }

.right-side .rvg-gallery .row.sm-marg,
.right-side .rvg-cta .row.sm-marg {
  margin-left: 0;
  margin-right: 0; }

.right-side .rvg-gallery .row.sm-marg > .col-12,
.right-side .rvg-cta .row.sm-marg > .col-12 {
  padding-left: 0;
  padding-right: 0; }

/* Top bar */
.rvg-top {
  background: linear-gradient(120deg, #1b1b1b 0%, #262626 100%);
  color: #fff;
  padding: 40px 48px;
  position: relative;
  overflow: hidden; }

.rvg-top::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 68, 56, 0.2) 0%, transparent 70%);
  pointer-events: none; }

@media (max-width: 767px) {
  .rvg-top {
    padding: 28px 24px; } }

.rvg-top-inner {
  position: relative;
  z-index: 1; }

.rvg-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px; }

.rvg-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s; }

.rvg-breadcrumb a:hover {
  color: #fff; }

.rvg-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px; }

.rvg-breadcrumb span:last-child {
  color: var(--main-color); }

.rvg-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px; }

.rvg-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--main-color);
  margin-bottom: 12px; }

.rvg-top-text h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 600;
  margin: 0; }

.rvg-top-text h1 .accent {
  color: var(--main-color); }

.rvg-top-stats {
  display: flex;
  gap: 28px;
  flex-shrink: 0; }

.rvg-stat .num {
  display: block;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #fff; }

.rvg-stat .lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px; }

.rvg-lead {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0; }

/* Gallery */
.rvg-gallery {
  background: #ece8e2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 40%); }

.rvg-gallery-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap; }

.rvg-gallery-bar h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 0;
  color: #111; }

.rvg-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }

.rvg-rating img {
  max-height: 18px;
  width: auto; }

.rvg-rating > span {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.3; }

.rvg-rating > span span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #888; }

.rvg-grid {
  margin-left: -15px;
  margin-right: -15px; }

/* Polaroid cards */
.rvg-polaroid {
  background: #fff;
  padding: 14px 14px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column; }

.rvg-grid > div:nth-child(odd) .rvg-polaroid {
  transform: rotate(-1.2deg); }

.rvg-grid > div:nth-child(even) .rvg-polaroid {
  transform: rotate(1deg); }

.rvg-grid > div:nth-child(3n) .rvg-polaroid {
  transform: rotate(0.5deg); }

.rvg-polaroid:hover {
  transform: rotate(0deg) translateY(-8px) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
  z-index: 2;
  position: relative; }

.rvg-polaroid-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ddd; }

.rvg-polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95); }

.rvg-polaroid-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 4px; }

.rvg-polaroid-quote {
  flex: 1;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  font-style: italic;
  font-weight: 400; }

.rvg-polaroid-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12); }

.rvg-polaroid-author strong {
  display: block;
  font-size: 14px;
  color: #111;
  margin-bottom: 2px;
  font-style: normal; }

.rvg-polaroid-author span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #999;
  font-style: normal; }

.rvg-polaroid-stars {
  display: inline-flex;
  gap: 2px;
  color: #ffb800;
  font-size: 10px;
  flex-shrink: 0; }

/* CTA */
.rvg-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px;
  background: #111;
  color: #fff; }

@media (max-width: 991px) {
  .rvg-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px; } }

.rvg-cta-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--main-color);
  margin-bottom: 10px; }

.rvg-cta-content h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  margin-bottom: 8px; }

.rvg-cta-content p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65; }

.rvg-cta-box .butn-bg {
  flex-shrink: 0; }

@media (max-width: 575px) {
  .rvg-top-stats {
    width: 100%;
    justify-content: flex-start; } }
