.reviews-hero {
    position: relative;
    min-height: 60vh;
    background:
        linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
        url("/img/hero/hero2.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 6% 80px;
}

.reviews-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1950px;
    padding: 50px;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.reviews-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 22px;
}

.reviews-hero-content p {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto;
}

.reviews-intro .section-heading p {
    color: #555;
}

.reviews-section {
    background: #f7f4ef;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: #fff;
    padding: 34px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-top: 4px solid #b99665;
}

.stars {
    color: #b99665;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.review-card p {
    color: #444;
    margin-bottom: 22px;
}

.review-card strong {
    color: #111;
}

.review-cta {
    background:
        linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
        url("/img/communities/orlando.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 6%;
}

.review-cta div {
    max-width: 780px;
    margin: 0 auto;
}

.review-cta h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
}

.review-cta p {
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
.google-review-card {
    position: relative;
}

.review-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.review-source {
    background: #efe6d8;
    color: #5f4228;
    font-size: .78rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.review-text {
    transition: max-height .25s ease;
}

.review-text.collapsed {
    max-height: 155px;
    overflow: hidden;
    position: relative;
}

.review-text.collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55px;
    background: linear-gradient(transparent, #fff);
}

.read-more-btn {
    border: none;
    background: #8b5e34;
    color: #fff;
    padding: 9px 15px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    margin: 6px 0 16px;
}

.read-more-btn:hover {
    background: #6f4724;
}

.review-content.collapsed {
    max-height: 170px;
    overflow: hidden;
    position: relative;
}

.review-content.collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(transparent, #fff);
}

.review-content p {
    margin-bottom: 0;
}


/* Review source logos and proper gold stars */

.stars {
    color: #fbbc04 !important;
    letter-spacing: 2px;
    font-size: 1.15rem;
}

.review-source,
.review-source-small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
}

.review-source img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.review-source-small img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.review-source.google-review,
.review-source-small.google-review {
    color: #1a73e8;
}

.review-source.zillow-review,
.review-source-small.zillow-review {
    color: #006aff;
}

.review-meta {
    margin-top: 10px;
    color: #777;
    font-size: .9rem;
    line-height: 1.4;
}

.stars,
.testimonial .stars,
.review-card .stars {
    color: #fbbc04 !important;
    letter-spacing: 2px;
    font-size: 1.15rem;
    line-height: 1;
}


.review-banner {
    font-size: 1.35rem;
    font-weight: 700;
}

.intro-stars {
    color: #fbbc04;
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-right: 10px;
    text-shadow: 0 0 8px rgba(251,188,4,.35);
    vertical-align: middle;
}