/* =========================================================
   REVIEW PAGE
========================================================= */
.gk-review-page {
  width: 100%;
  background: #fff;
  color: #202124;
  font-family: "DM Sans", Arial, sans-serif;
}
/* =========================================================
   BANNER
   Same style as About / Services pages
========================================================= */
.gk-review-banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #3a0a14;
}
.gk-review-banner-image {
  position: absolute;
  inset: 0;
  background:
    url("assets/reviews/review-banner.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.gk-review-banner-overlay {
  position: absolute;
  inset: 0;
  /*
       Soft maroon overlay.
       The image remains clearly visible.
    */
  background:
    linear-gradient(90deg,
      rgba(48, 7, 15, .70) 0%,
      rgba(76, 10, 24, .42) 48%,
      rgba(47, 6, 14, .10) 100%);
}
.gk-review-banner-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gk-review-banner-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffdbe0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gk-review-banner-label::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 50px;
  background: #e8475e;
}
.gk-review-banner-content h1 {
  max-width: 650px;
  margin-top: 13px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(39px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -2px;
  color: #fff;
}
.gk-review-banner-content h1 span {
  display: block;
  color: #f07181;
}
.gk-review-banner-content p {
  max-width: 530px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .79);
  font-size: 13px;
  line-height: 1.65;
}
.gk-review-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  font-size: 10px;
}
.gk-review-breadcrumb a {
  color: #fff;
}
.gk-review-breadcrumb i {
  color: #e34a61;
  font-size: 8px;
}
.gk-review-breadcrumb span {
  color: rgba(255, 255, 255, .60);
}
/* =========================================================
   MAIN REVIEW CONTAINER
========================================================= */
.gk-review-main {
  width: min(980px, 94%);
  margin: 0 auto;
  padding: 55px 0 70px;
}
/* =========================================================
   BUSINESS HEADER
========================================================= */
.gk-google-business-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #dadce0;
}
.gk-business-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.gk-business-logo {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e3e6;
}
.gk-business-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gk-business-info h2 {
  margin: 4px 0 2px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
  color: #202124;
}
.gk-business-category {
  margin: 0;
  font-size: 11px;
  color: #5f6368;
}
.gk-business-location {
  margin-top: 3px;
  color: #70757a;
  font-size: 10px;
}
/* =========================================================
   GOOGLE LABEL
========================================================= */
.gk-google-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  color: #5f6368;
}
.gk-google-g {
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  background:
    linear-gradient(90deg,
      #4285f4 0%,
      #34a853 34%,
      #fbbc05 66%,
      #ea4335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* =========================================================
   WRITE REVIEW
========================================================= */
.gk-write-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid #dadce0;
  color: #1a73e8;
  background: #fff;
  font-size: 10px;
  font-weight: 600;
  transition:
    background .25s ease,
    box-shadow .25s ease;
}
.gk-write-review-btn:hover {
  color: #174ea6;
  background: #f8fafd;
  box-shadow:
    0 1px 3px rgba(60, 64, 67, .15);
}
/* =========================================================
   REVIEW SUMMARY
========================================================= */
.gk-review-summary {
  display: grid;
  grid-template-columns:
    180px minmax(0, 420px);
  align-items: center;
  gap: 42px;
  padding: 25px 5px;
  border-bottom: 1px solid #dadce0;
}
.gk-overall-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gk-rating-number {
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
  color: #202124;
}
.gk-overall-stars {
  margin-top: 7px;
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 1px;
}
.gk-rating-total {
  margin-top: 5px;
  color: #5f6368;
  font-size: 10px;
}
/* =========================================================
   RATING BARS
========================================================= */
.gk-rating-distribution {
  width: 100%;
}
.gk-rating-line {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 8px;
  height: 17px;
  color: #5f6368;
  font-size: 9px;
}
.gk-rating-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 50px;
  background: #dadce0;
}
.gk-rating-bar span {
  display: block;
  height: 100%;
  border-radius: 50px;
  background: #fbbc04;
}
/* =========================================================
   FILTERS
========================================================= */
.gk-review-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid #dadce0;
}
.gk-filter-btn {
  min-height: 31px;
  padding: 0 13px;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: #fff;
  color: #5f6368;
  cursor: pointer;
  font-size: 10px;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}
.gk-filter-btn:hover {
  background: #f8f9fa;
}
.gk-filter-btn.active {
  color: #1a73e8;
  border-color: #a8c7fa;
  background: #e8f0fe;
}
/* =========================================================
   REVIEW
========================================================= */
.gk-google-review {
  padding: 25px 5px;
  border-bottom: 1px solid #dadce0;
}
.gk-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gk-reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
}
.gk-reviewer-avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
}
.gk-avatar-blue {
  color: #1967d2;
  background: #e8f0fe;
}
.gk-avatar-red {
  color: #d93025;
  background: #fce8e6;
}
.gk-avatar-green {
  color: #188038;
  background: #e6f4ea;
}
.gk-avatar-yellow {
  color: #b06000;
  background: #fef7e0;
}
.gk-avatar-purple {
  color: #7e57c2;
  background: #f0e8ff;
}
.gk-reviewer-details h3 {
  margin: 0;
  color: #202124;
  font-size: 12px;
  font-weight: 600;
}
.gk-reviewer-details span {
  display: block;
  margin-top: 2px;
  color: #70757a;
  font-size: 9px;
}
.gk-review-menu {
  color: #5f6368;
  font-size: 13px;
}
/* =========================================================
   STARS
========================================================= */
.gk-review-rating-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}
.gk-google-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 1px;
}
.gk-verified-label {
  color: #70757a;
  font-size: 9px;
}
/* =========================================================
   REVIEW BODY
========================================================= */
.gk-review-body {
  max-width: 760px;
  margin: 10px 0 0;
  color: #3c4043;
  font-size: 12px;
  line-height: 1.7;
}
/* =========================================================
   REVIEW ACTIONS
========================================================= */
.gk-review-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.gk-review-actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #5f6368;
  cursor: pointer;
  font-size: 9px;
}
.gk-review-actions button:hover {
  color: #202124;
}
/* =========================================================
   BOTTOM GOOGLE CTA
========================================================= */
.gk-reviews-footer {
  margin-top: 25px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #dadce0;
  border-radius: 10px;
  background: #fff;
}
.gk-reviews-footer-google {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gk-reviews-footer-google .gk-google-g {
  font-size: 23px;
}
.gk-reviews-footer-google strong {
  display: block;
  color: #202124;
  font-size: 11px;
}
.gk-reviews-footer-google span {
  display: block;
  margin-top: 2px;
  color: #70757a;
  font-size: 9px;
}
.gk-reviews-footer>a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1a73e8;
  font-size: 10px;
  font-weight: 600;
}
.gk-reviews-footer>a:hover {
  color: #174ea6;
}
/* =========================================================
   TABLET
========================================================= */
@media(max-width:700px) {
  .gk-review-banner {
    height: 330px;
  }
  .gk-google-business-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .gk-write-review-btn {
    width: 100%;
  }
  .gk-review-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gk-overall-rating {
    align-items: center;
  }
}
/* =========================================================
   MOBILE
========================================================= */
@media(max-width:500px) {
  .gk-review-banner {
    height: 300px;
  }
  .gk-review-banner-content {
    width: calc(100% - 30px);
  }
  .gk-review-banner-content h1 {
    font-size: 35px;
    letter-spacing: -1px;
  }
  .gk-review-banner-content p {
    font-size: 11px;
  }
  .gk-review-main {
    width: 92%;
    padding: 45px 0 50px;
  }
  .gk-business-logo {
    width: 54px;
    height: 54px;
  }
  .gk-business-info h2 {
    font-size: 18px;
  }
  .gk-review-summary {
    padding: 20px 0;
  }
  .gk-rating-number {
    font-size: 39px;
  }
  .gk-google-review {
    padding: 21px 0;
  }
  .gk-review-body {
    font-size: 11px;
    line-height: 1.65;
  }
  .gk-reviews-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .gk-reviews-footer>a {
    width: 100%;
    justify-content: center;
    min-height: 39px;
    border-radius: 6px;
    background: #e8f0fe;
  }
}
/* =========================================================
   SMALL PHONES
========================================================= */
@media(max-width:390px) {
  .gk-review-banner {
    height: 285px;
  }
  .gk-review-banner-content h1 {
    font-size: 32px;
  }
}