.summit-review-section{
  padding:90px 0;
  background:var(--section-bg);
}

.review-top{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.review-image-wrap{
  position:relative;
  width:100%;
  max-width:430px;
  margin:0 auto;
}

.review-image-wrap::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border:2px solid rgba(7,18,43,.18);
  border-radius:50%;
  left:-55px;
  top:35px;
  z-index:0;
}

.review-image-wrap img{
  position:relative;
  z-index:2;
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:50%;
  border:6px solid var(--white);
  box-shadow:var(--shadow);
}

.quote-icon{
  position:absolute;
  z-index:4;
  left:-18px;
  bottom:70px;
  width:92px;
  height:92px;
  border-radius:50%;
  background:var(--sun-yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 35px rgba(255,190,46,.35);
}

.quote-icon svg{
  width:46px;
  height:46px;
  fill:var(--primary-dark);
}

.section-tag{
  display:inline-flex;
  padding:7px 18px;
  border:1px solid var(--leaf-green);
  color:var(--leaf-green);
  border-radius:999px;
  font-weight:800;
  margin-bottom:18px;
  background:rgba(109,190,69,.06);
}

.review-content h2{
  font-size:44px;
  margin-bottom:18px;
  color:var(--primary-dark);
}

.review-stars{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:18px;
}

.review-stars svg{
  width:24px;
  height:24px;
  fill:var(--sun-yellow);
  filter:drop-shadow(0 4px 8px rgba(255,190,46,.25));
}

.review-title{
  font-size:22px;
  margin:0 0 14px;
  color:var(--primary-dark);
}

.review-text{
  font-size:18px;
  line-height:1.7;
  color:var(--text-color);
  margin:0;
}

.review-author-row{
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.review-author-info h3{
  font-size:22px;
  margin-bottom:4px;
  color:var(--primary-dark);
}

.review-author-info span{
  color:var(--text-muted);
  font-weight:700;
}

.google-review-link{
  width:58px;
  height:58px;
  min-width:58px;
  border-radius:50%;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border-color);
  box-shadow:var(--shadow);
  cursor:pointer;
  transition:all .3s ease;
}

.google-review-link svg{
  width:34px;
  height:34px;
  display:block;
}

.google-review-link:hover{
  transform:translateY(-4px) scale(1.06);
  border-color:var(--sun-yellow);
  box-shadow:0 18px 35px rgba(255,190,46,.28);
}

.trusted-box{
  margin-top:70px;
  padding:38px;
  border-radius:var(--radius);
  background:var(--primary-dark);
  box-shadow:var(--shadow);
}

.trusted-box h3{
  color:var(--white);
  font-size:34px;
  margin-bottom:14px;
}

.trusted-box p{
  color:rgba(255,255,255,.82);
  margin-bottom:22px;
}

.trusted-box ul{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-bottom:30px;
}

.trusted-box li{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,190,46,.25);
  color:var(--white);
  padding:16px;
  border-radius:16px;
  font-weight:800;
  text-align:center;
}

.review-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}


.summit-btn-outline svg{
  width:20px;
  height:20px;
  flex-shrink:0;
  color:currentColor;
}

.summit-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}


.summit-btn-outline:hover{
  background:#2467f5;
  color:#ffffff;
  transform:translateY(-3px);
}


@media(max-width:1024px){
  .review-top{
    grid-template-columns:1fr;
    gap:40px;
  }

  .review-content h2{
    font-size:40px;
  }

  .trusted-box ul{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:767px){
  .summit-review-section{
    padding:60px 0;
  }

  .review-content h2{
    font-size:34px;
  }

  .review-text{
    font-size:16px;
  }

  .review-image-wrap{
    max-width:320px;
  }

  .review-image-wrap::before{
    width:270px;
    height:270px;
    left:-25px;
    top:25px;
  }

  .review-image-wrap img{
    height:320px;
  }

  .quote-icon{
    width:72px;
    height:72px;
    left:0;
    bottom:40px;
  }

  .quote-icon svg{
    width:36px;
    height:36px;
  }

  .review-author-row{
    align-items:flex-start;
  }

  .trusted-box{
    padding:24px;
  }

  .trusted-box h3,
  .summit-map-section h3{
    font-size:28px;
  }

  .trusted-box ul{
    grid-template-columns:1fr;
  }

  .review-actions{
    flex-direction:column;
  }

  .map-embed iframe{
    height:360px;
  }
}