/* Reviews page — loads AFTER home.css + about.css */

/* Rating badge in hero */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 14px 22px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.rating-stars {
    color: #ffc107;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1;
}
.rating-text { color: #fff; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; }
.rating-text strong { color: var(--teal); font-size: 20px; font-weight: 600; margin-right: 4px; }

/* =========================================================
   FEATURED QUOTES
   ========================================================= */
.featured-reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 40px;
}
.featured-header,
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}
.featured-header h2,
.reviews-header h2 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(30px, 3.5vw, 44px);
    color: var(--ink);
    margin: 10px 0 0;
    line-height: 1.2;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.featured-quote {
    position: relative;
    margin: 0;
    padding: 40px 32px 32px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.featured-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.featured-quote::before {
    content: "\201C";
    position: absolute;
    top: -8px; left: 18px;
    font-family: "Playfair Display", serif;
    font-size: 110px;
    line-height: 1;
    color: var(--teal);
    opacity: 0.18;
}
.quote-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.featured-quote p {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 0 20px;
}
.featured-quote cite,
.review-meta {
    display: block;
    font-style: normal;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.featured-quote cite strong,
.review-meta strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.featured-quote cite span,
.review-meta span {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.google-cta {
    text-align: center;
    margin-top: 44px;
}

/* =========================================================
   REVIEW GRID (the rest)
   ========================================================= */
.reviews {
    background: #f6f7f8;
    padding: 90px 24px 80px;
    margin-top: 60px;
}
.reviews-header { max-width: 1200px; margin: 0 auto 40px; }
.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.review-card {
    background: #fff;
    padding: 26px 26px 22px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.09);
}
.review-card p {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 18px;
    flex: 1;
}
.review-meta { margin-top: auto; }

.leave-review { text-align: center; margin-top: 50px; }

/* =========================================================
   GOOGLE CTA BLOCK
   ========================================================= */
.google-cta {
    margin-top: 70px;
    padding: 0 0 20px;
}
.google-cta-inner {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fb 100%);
    border: 1px solid rgba(1, 156, 192, 0.18);
    border-radius: 14px;
    padding: 44px 48px;
    box-shadow: 0 20px 50px rgba(1, 156, 192, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.google-cta-copy { flex: 1 1 320px; }
.google-cta-stars {
    color: #f5b301;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.google-cta-copy h3 {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 26px;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
}
.google-cta-copy h3 strong {
    color: var(--teal);
    font-weight: 700;
}
.google-cta-copy p {
    color: #5a6068;
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}
.google-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-primary {
    background: var(--teal);
    border: 2px solid var(--teal);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 4px;
    display: inline-block;
    transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary:hover {
    background: #017b97;
    border-color: #017b97;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(1, 156, 192, 0.28);
}

.btn-ghost-dark {
    background: transparent;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 4px;
    display: inline-block;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn-ghost-dark:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 640px) {
    .featured-reviews { padding: 60px 18px 20px; }
    .reviews { padding: 60px 18px 50px; }
    .featured-quote { padding: 34px 24px 26px; }
    .featured-quote p { font-size: 17px; }
    .rating-badge { flex-direction: column; gap: 6px; padding: 12px 20px; }
    .google-cta-inner { padding: 32px 24px; flex-direction: column; text-align: center; gap: 22px; }
    .google-cta-actions { width: 100%; justify-content: center; }
    .google-cta-actions .btn-primary, .google-cta-actions .btn-ghost-dark { width: 100%; text-align: center; }
    .google-cta-copy h3 { font-size: 22px; }
}
