/* ═══════════════════════════════════════════════════════════
   Hamro Notary Pro — main.css
   Component-level styles: header, hero, sections, footer, forms
   ════════════════════════════════════════════════════════════ */

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img { height: 48px; width: auto; }

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.site-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: all 0.2s;
}

.site-nav .nav-menu a:hover,
.site-nav .nav-menu li.current-menu-item > a {
    color: var(--navy);
    background: var(--light);
}

.header-cta {
    flex-shrink: 0;
    font-size: 0.88rem;
    padding: 10px 20px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}
.mobile-toggle:hover { background: var(--light); }
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0 20px;
}
.mobile-menu.open { display: block; }
.mobile-nav-menu { list-style: none; margin: 0; padding: 0 20px; }
.mobile-nav-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: background 0.2s;
}
.mobile-nav-menu li a:hover { background: var(--light); color: var(--navy); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201,162,39,.08);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.trust-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
    background: var(--gold);
    padding: 20px 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    color: #fff;
}

.trust-item strong {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.trust-item span {
    font-size: 0.78rem;
    opacity: 0.88;
    margin-top: 3px;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
}

/* ── Service Cards ───────────────────────────────────────── */
.services-section { background: #fff; }
.services-grid { }

.service-card {
    text-align: center;
    padding: 36px 24px;
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Why Us ──────────────────────────────────────────────── */
.why-us { background: var(--light); }

.why-card {
    text-align: center;
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.why-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Quote Form ──────────────────────────────────────────── */
.quote-section { }

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.form-group { display: flex; flex-direction: column; }

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}

.quote-form select { appearance: none; cursor: pointer; }

.quote-form textarea { resize: vertical; min-height: 90px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

.form-success {
    margin-top: 12px;
    color: #15803d;
    font-weight: 500;
    text-align: center;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { }
.testimonials-grid { }

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--light); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover { background: var(--light); }
.faq-question[aria-expanded="true"] { color: var(--gold-dark); }

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-text p { opacity: 0.85; font-size: 1rem; }

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.8);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 260px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.7);
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact li a { color: rgba(255,255,255,.7); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,.45);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}

.page-hero .badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.page-title {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.page-subtitle {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }

/* ── Page Content ────────────────────────────────────────── */
.page-content-section { padding: 72px 0; }

.page-content, .entry-content { font-size: 1rem; line-height: 1.75; color: var(--text); }
.entry-content h2, .entry-content h3 { margin: 32px 0 14px; color: var(--navy); }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--navy); text-decoration: underline; }
.entry-content a.btn { text-decoration: none; }
.entry-content a.btn-navy { color: var(--white); }
.entry-content a.btn-gold { color: var(--white); }
.entry-content img { border-radius: var(--radius); margin: 24px 0; }

.page-featured-image { margin-bottom: 40px; }
.featured-img { width: 100%; border-radius: var(--radius-lg); }

/* ── Blog Grid ───────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-card { padding: 0; overflow: hidden; }

.blog-thumb { display: block; overflow: hidden; }
.blog-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.blog-thumb:hover .blog-img { transform: scale(1.05); }

.blog-body { padding: 24px; }

.blog-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }

.blog-title { font-size: 1.05rem; margin-bottom: 10px; }
.blog-title a { color: var(--navy); text-decoration: none; }
.blog-title a:hover { color: var(--gold-dark); }

.blog-excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.read-more { font-size: 0.88rem; color: var(--gold-dark); font-weight: 600; }
.read-more:hover { text-decoration: underline; }

.pagination { text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; }

.no-posts { text-align: center; padding: 40px; color: var(--muted); }
.no-posts a { color: var(--navy); text-decoration: underline; }

/* ── Single Post ─────────────────────────────────────────── */
.single-post-layout { max-width: 800px; }
.single-thumbnail { margin-bottom: 36px; }
.post-meta { color: rgba(255,255,255,.6); font-size: 0.88rem; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.entry-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.88rem; }
.post-navigation { margin-top: 40px; }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.post-navigation a { color: var(--navy); font-weight: 600; }
.post-navigation a:hover { color: var(--gold-dark); }

/* ── About Page ──────────────────────────────────────────── */
.about-mission { padding: 80px 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .badge { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card span { font-size: 0.85rem; color: var(--muted); }

/* ── 404 Page ────────────────────────────────────────────── */
.error-404-section { padding: 120px 0; text-align: center; }
.error-404-inner { max-width: 560px; margin: 0 auto; }
.error-404-graphic {
    font-size: 8rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -4px;
}
.error-404-section h1 { margin-bottom: 12px; }
.error-404-section p { color: var(--muted); margin-bottom: 36px; }
.error-404-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.error-search .search-form { display: flex; gap: 8px; }
.error-search input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
}
.error-search button {
    padding: 12px 20px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* ── Floating WhatsApp ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,.6);
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ── Mobile Sticky Bar ───────────────────────────────────── */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: filter 0.2s;
}
.mobile-bar-btn:hover { filter: brightness(0.9); }
.mobile-bar-call     { background: var(--navy); }
.mobile-bar-whatsapp { background: #25D366; }
.mobile-bar-quote    { background: var(--gold); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .site-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-sticky-bar { display: flex; }

    .hero { padding: 72px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .trust-strip-inner { gap: 0; }
    .trust-item { padding: 8px 16px; }
    .trust-divider { display: none; }

    .quote-form { grid-template-columns: 1fr; }
    .quote-form .form-group[style*="1 / -1"] { grid-column: 1; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { width: 100%; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

    .blog-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    .whatsapp-float { bottom: 78px; right: 16px; width: 50px; height: 50px; }
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card { text-align: center; padding: 28px 20px; }

.contact-card-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }

.contact-form-wrap h2 { margin-bottom: 8px; }

.contact-form {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form   { grid-template-columns: 1fr; }
}

/* ── Contact Map ─────────────────────────────────────────── */
.contact-map-wrapper iframe {
    width: 100% !important;
    height: 350px !important;
    display: block !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* ── Google Reviews Widget Section ── */
.google-reviews-section { padding: 80px 0; background: var(--white); }
.google-reviews-widget { margin: 0 auto; max-width: 1100px; }
.google-reviews-widget .ti-widget { font-family: 'Inter', sans-serif !important; }
@media (max-width: 768px) { .google-reviews-section { padding: 60px 0; } }

/* ── Google Reviews Static Section ─────────────────────────── */
.google-reviews-section { padding: 80px 0; background: var(--white); }

/* Badge */
.gr-badge-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.gr-badge {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
    background: var(--light); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 32px;
}
.gr-g-logo { width: 40px; height: 40px; flex-shrink: 0; }
.gr-badge-info { display: flex; flex-direction: column; gap: 4px; }
.gr-badge-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.gr-badge-stars { display: flex; gap: 2px; }
.gr-star { width: 18px; height: 18px; }
.gr-star.filled path { fill: #fbbc04; }
.gr-star.empty  path { fill: #e0e0e0; }
.gr-badge-score { font-size: 0.9rem; color: var(--text); }
.gr-badge-score strong { font-size: 1.2rem; color: var(--navy); }
.gr-badge-link {
    font-size: 0.85rem; font-weight: 600; color: #4285f4;
    text-decoration: none; white-space: nowrap;
}
.gr-badge-link:hover { text-decoration: underline; }

/* Cards */
.gr-cards-grid { margin-bottom: 40px; }
.gr-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.gr-card-header { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
    width: 40px; height: 40px; border-radius: 50%; color: #fff;
    font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gr-card-meta { flex: 1; display: flex; flex-direction: column; }
.gr-card-name { font-size: 0.9rem; color: var(--navy); }
.gr-card-role { font-size: 0.78rem; color: var(--muted); }
.gr-card-g { width: 20px; height: 20px; flex-shrink: 0; }
.gr-card-stars { display: flex; align-items: center; gap: 2px; }
.gr-card-stars .gr-star { width: 14px; height: 14px; }
.gr-card-date { font-size: 0.78rem; color: var(--muted); margin-left: 6px; }
.gr-card-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; flex: 1; font-style: italic; }

/* CTA row */
.gr-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .google-reviews-section { padding: 60px 0; }
    .gr-badge { padding: 16px 20px; gap: 14px; }
    .gr-cta-row { flex-direction: column; align-items: center; }
}
