/* =========================================
   SEO PAGE STYLES (PREMIUM)
   ========================================= */

:root {
    /* Colors */
    --seo-green: #10b981;       /* Growth Green */
    --seo-green-dark: #047857;
    --seo-navy: #0f172a;        /* Dark Background */
    --seo-bg: #f8fafc;          /* Light Background */
    --seo-text: #334155;
    --seo-border: #e2e8f0;
    
    /* Visuals */
    --seo-radius: 24px;
    --seo-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15);
}

.seo-page-wrapper {
    font-family: 'Inter', sans-serif;
    color: var(--seo-navy);
    background: #fff;
    overflow: hidden;
}

/* --- UTILITIES --- */
.seo-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.seo-container.small-width { max-width: 800px; }
.section-head { margin-bottom: 4rem; }
.section-head.centered { text-align: center; }
.section-head h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; color: var(--seo-text); max-width: 600px; margin: 0 auto; }

/* ================= 1. HERO SECTION ================= */
.seo-hero {
    padding: 8rem 0 6rem;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Text */
.live-indicator {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; color: var(--seo-green);
    background: #ecfdf5; padding: 6px 12px; border-radius: 50px;
    margin-bottom: 1.5rem; border: 1px solid rgba(16, 185, 129, 0.2);
}
.pulsing-dot {
    width: 8px; height: 8px; background: var(--seo-green); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGreen 2s infinite;
}

.seo-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem;
}
.text-gradient {
    background: linear-gradient(135deg, var(--seo-navy) 0%, var(--seo-green) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.lead { font-size: 1.2rem; color: var(--seo-text); line-height: 1.6; margin-bottom: 2rem; }

/* Hero Buttons */
.hero-btns { display: flex; gap: 1rem; margin-bottom: 3rem; }
.btn-seo {
    padding: 14px 32px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
}
.btn-seo.primary {
    background: var(--seo-green); color: white;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}
.btn-seo.primary:hover { background: var(--seo-green-dark); transform: translateY(-2px); }
.btn-seo.secondary {
    background: white; color: var(--seo-navy); border: 1px solid var(--seo-border);
}
.btn-seo.secondary:hover { border-color: var(--seo-navy); }

/* Trust Logos */
.trust-badges p { font-size: 0.85rem; color: #94a3b8; font-weight: 600; margin-bottom: 0.5rem; }
.logos { display: flex; gap: 1.5rem; font-size: 1.5rem; color: #cbd5e1; }

/* Hero Visual (Dashboard) */
.hero-visual { position: relative; display: flex; justify-content: center; }

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.dashboard-main {
    width: 100%; max-width: 420px; padding: 2rem;
    position: relative; z-index: 2;
    animation: floatMain 6s ease-in-out infinite;
}

.dash-header { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.dash-title { font-weight: 700; display: flex; align-items: center; gap: 8px; }
.dash-title i { color: var(--seo-green); }
.dash-period { font-size: 0.8rem; color: #94a3b8; background: #f1f5f9; padding: 4px 8px; border-radius: 6px; }

.dash-number { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: 10px; }
.growth { font-size: 1rem; color: var(--seo-green); font-weight: 700; background: #ecfdf5; padding: 4px 8px; border-radius: 6px; }

/* Chart Bars */
.chart-container { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.bar {
    flex: 1; background: #e2e8f0; border-radius: 4px 4px 0 0;
    height: var(--h); animation: growBar 1s ease-out forwards; animation-delay: var(--d);
}
.bar.active { background: var(--seo-green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.4); }

/* Floating Cards */
.float-card {
    position: absolute; padding: 12px 16px; border-radius: 16px;
    display: flex; align-items: center; gap: 12px; z-index: 3;
    background: white; box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.rank-card { top: -20px; right: -20px; animation: floatCard 5s ease-in-out infinite 1s; }
.speed-card { bottom: -30px; left: -10px; animation: floatCard 7s ease-in-out infinite 0.5s; }

.icon-box { width: 40px; height: 40px; background: #fffbeb; color: #f59e0b; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.speed-circle { width: 40px; height: 40px; border: 3px solid var(--seo-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--seo-green); font-size: 0.9rem; }
.tiny-label { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; font-weight: 700; }

/* ================= 2. BENTO GRID ================= */
.seo-services { padding: 6rem 0; background: #fff; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--seo-bg);
    border: 1px solid var(--seo-border);
    border-radius: 24px;
    padding: 2rem;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.bento-card:hover { transform: translateY(-5px); border-color: var(--seo-green); }

/* Grid Spans */
.span-2 { grid-column: span 2; display: flex; justify-content: space-between; align-items: center; }
.span-1 { grid-column: span 1; }
.row-2 { grid-row: span 2; }

.icon-bg {
    width: 50px; height: 50px; background: white; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--seo-green); margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.icon-bg.accent { color: #8b5cf6; }

.bento-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.8rem; }
.bento-card p { font-size: 0.95rem; color: var(--seo-text); line-height: 1.6; }

.check-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.check-list li { margin-bottom: 0.5rem; display: flex; gap: 10px; align-items: center; font-weight: 500; }
.check-list i { color: var(--seo-green); }

.content-tags span {
    display: inline-block; background: white; padding: 6px 12px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; margin: 5px 5px 0 0; border: 1px solid var(--seo-border);
}

/* Code Snippet Visual */
.code-snippet {
    background: #1e293b; padding: 1.5rem; border-radius: 12px;
    color: #a5b4fc; font-family: monospace; font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ================= 3. ROADMAP ================= */
.seo-roadmap { padding: 6rem 0; background: #f1f5f9; }

.roadmap-track {
    display: flex; justify-content: space-between; position: relative; margin-top: 4rem;
}
.roadmap-line {
    position: absolute; top: 25px; left: 0; width: 100%; height: 4px;
    background: #cbd5e1; z-index: 0;
}

.roadmap-step { position: relative; z-index: 1; width: 22%; }
.step-marker {
    width: 50px; height: 50px; background: var(--seo-navy); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem; margin-bottom: 1.5rem;
    border: 4px solid #f1f5f9;
}
.roadmap-step:hover .step-marker { background: var(--seo-green); transform: scale(1.1); transition: 0.3s; }

.step-content h3 { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--seo-text); }

/* ================= 4. FAQ ================= */
.seo-faq { padding: 6rem 0; }
.seo-details {
    border-bottom: 1px solid var(--seo-border); margin-bottom: 1rem; padding-bottom: 1rem;
}
.seo-details summary {
    font-weight: 700; font-size: 1.1rem; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between;
}
.seo-details summary::after { content: '+'; font-weight: 300; color: var(--seo-green); font-size: 1.5rem; }
.seo-details[open] summary::after { content: '-'; }
.seo-details p { margin-top: 1rem; color: var(--seo-text); line-height: 1.6; }

/* ================= 5. CTA CARD ================= */
.seo-cta { padding: 4rem 0 6rem; }
.cta-card {
    background: var(--seo-navy); color: white;
    border-radius: 32px; padding: 4rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
/* Background Pattern */
.cta-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}

.cta-card h2 { font-family: 'Outfit', sans-serif; font-size: 2.5rem; margin-bottom: 1rem; position: relative; }
.cta-card p { color: #cbd5e1; font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; }

.audit-form {
    display: flex; gap: 10px; justify-content: center; max-width: 600px; margin: 0 auto; position: relative;
}
.audit-form input {
    padding: 14px 20px; border-radius: 12px; border: none; outline: none; width: 40%;
}
.micro-copy { font-size: 0.8rem; margin-top: 1rem; opacity: 0.7; }

/* Animations */
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes growBar { from { height: 0; } }
@keyframes floatMain { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .trust-logos { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .span-2, .span-1, .row-2 { grid-column: span 1; grid-row: auto; }
    .card-visual { display: none; } /* Hide code snippet on mobile */
    
    .roadmap-track { flex-direction: column; gap: 2rem; margin-top: 2rem; }
    .roadmap-line { width: 4px; height: 100%; left: 23px; top: 0; }
    .roadmap-step { width: 100%; display: flex; gap: 1.5rem; align-items: flex-start; }
    .step-marker { margin-bottom: 0; flex-shrink: 0; }
    
    .audit-form { flex-direction: column; width: 100%; }
    .audit-form input { width: 100%; }
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .span-2 {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .row-2 {
        grid-row: span 1;
    }
    
    .seo-hero h1 { font-size: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
}

/* =========================================
   SEO DOMINATION SECTION STYLES
   ========================================= */

:root {
    --seo-emerald: #10b981;
    --seo-navy: #0f172a;
    --seo-slate: #64748b;
    --seo-bg-light: #f8fafc;
}

.search-domination-section {
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.domination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* --- LEFT: CONTENT --- */
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ecfdf5; color: var(--seo-emerald);
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    padding: 8px 16px; border-radius: 50px; margin-bottom: 1.5rem;
}

.strategy-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 800; line-height: 1.1;
    color: var(--seo-navy); margin-bottom: 1rem;
}

.text-highlight {
    background: linear-gradient(120deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.15rem; color: var(--seo-slate); line-height: 1.6; margin-bottom: 3rem;
}

/* Strategy Cards */
.strategy-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.strat-card {
    display: flex; gap: 1.5rem;
    background: #fff; padding: 1.5rem;
    border: 1px solid #e2e8f0; border-radius: 20px;
    transition: 0.3s;
}

.strat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.08);
    border-color: var(--seo-emerald);
}

.card-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}

.icon-tech { background: #e0e7ff; color: #4f46e5; }
.icon-content { background: #fce7f3; color: #ec4899; }
.icon-auth { background: #ecfdf5; color: #10b981; }

.card-text h3 { font-size: 1.25rem; font-weight: 700; color: var(--seo-navy); margin-bottom: 0.5rem; }
.card-text p { font-size: 0.95rem; color: var(--seo-slate); margin: 0; line-height: 1.5; }


/* --- RIGHT: VISUAL ANIMATION --- */
.search-simulator {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}

/* Fake Browser Header */
.browser-header {
    background: #fff; border-bottom: 1px solid #e2e8f0;
    padding: 12px 20px; display: flex; align-items: center; gap: 20px;
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #10b981; }

.url-bar {
    background: #f1f5f9; color: #94a3b8; font-size: 0.8rem;
    padding: 6px 12px; border-radius: 6px; flex-grow: 1; text-align: center;
}

/* Search Input Area */
.search-bar-container {
    text-align: center; padding: 3rem 2rem 2rem;
    border-bottom: 1px solid #e2e8f0; background: #fff;
}
.google-logo { font-family: 'Product Sans', sans-serif; font-weight: 700; font-size: 2rem; letter-spacing: -1px; margin-bottom: 1.5rem; }
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC05; } .g-green { color: #34A853; }

.fake-input {
    max-width: 400px; margin: 0 auto;
    border: 1px solid #dfe1e5; border-radius: 50px;
    padding: 12px 20px; display: flex; align-items: center; gap: 10px;
    color: #5f6368; font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Typing Animation */
.typing-text {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typeText 2s steps(20, end) 1s forwards;
}
.cursor { animation: blink 1s infinite; }

/* Search Results Area */
.search-results {
    padding: 2rem;
    background: #fff;
    display: flex; flex-direction: column; gap: 1.5rem;
    position: relative;
    min-height: 350px;
}

/* Result Cards */
.result-card {
    padding: 1rem; border-radius: 12px;
    transition: 0.5s ease;
}

.result-card.winner {
    border: 1px solid #e2e8f0;
    opacity: 0.5; filter: grayscale(1);
    transform: scale(0.95);
}

/* The Hero Card (Organic) */
.result-card.organic {
    background: #fff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.2);
    position: absolute;
    top: 120px; /* Start below */
    left: 20px; right: 20px;
    z-index: 2;
    opacity: 0;
    animation: floatUpRank 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3s forwards;
}

/* Result Styling */
.result-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 0.85rem; color: #202124; }
.favicon { width: 16px; height: 16px; }
.meta-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-name { font-weight: 600; }
.url { font-size: 0.75rem; color: #5f6368; }
.ad-badge { font-weight: 700; color: #202124; }

.result-link { color: #1a0dab; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; cursor: pointer; }
.result-link:hover { text-decoration: underline; }
.result-desc { font-size: 0.9rem; color: #4d5156; line-height: 1.5; }

/* Floating Stat */
.floating-stat {
    position: absolute; top: -15px; right: -15px;
    background: var(--seo-emerald); color: white;
    padding: 8px 16px; border-radius: 50px;
    font-weight: 700; font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    display: flex; align-items: center; gap: 6px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 4.2s forwards;
    opacity: 0; transform: scale(0);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes typeText { to { width: 100%; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@keyframes floatUpRank {
    0% { transform: translateY(50px) scale(0.9); opacity: 0; }
    100% { transform: translateY(-90px) scale(1.05); opacity: 1; }
}

@keyframes popIn { to { opacity: 1; transform: scale(1); } }

/* RESPONSIVE */
@media (max-width: 960px) {
    .domination-grid { grid-template-columns: 1fr; gap: 3rem; }
    .search-simulator { max-width: 500px; margin: 0 auto; }
    .strategy-content { text-align: center; }
    .strategy-content .section-badge { margin: 0 auto 1.5rem; }
    .strat-card { text-align: left; }
}

/* =========================================
   LOCAL SEO SECTION STYLES
   ========================================= */

.local-seo-section {
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.local-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

/* --- RIGHT: CONTENT --- */
.local-tag {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: #f59e0b; /* Amber */
    background: #fffbeb;
    padding: 6px 14px; border-radius: 50px; width: fit-content;
    margin-bottom: 1.5rem;
}

.local-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 800; line-height: 1.1;
    color: var(--seo-navy); margin-bottom: 1.5rem;
}

.local-lead {
    font-size: 1.1rem; color: var(--seo-muted); line-height: 1.6; margin-bottom: 3rem;
}

.local-features { display: flex; flex-direction: column; gap: 2rem; }

.feature-row { display: flex; gap: 1.5rem; align-items: flex-start; }

.f-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: var(--seo-bg-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--seo-emerald); font-size: 1.4rem;
    transition: 0.3s;
}

.feature-row:hover .f-icon {
    background: var(--seo-emerald); color: white; transform: scale(1.1);
}

.feature-row h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--seo-navy); }
.feature-row p { font-size: 0.95rem; color: var(--seo-slate); margin: 0; line-height: 1.5; }


/* --- LEFT: 3D MAP VISUAL --- */
.local-visual {
    display: flex; justify-content: center; align-items: center;
    perspective: 1000px; /* Creates 3D space */
    height: 500px;
}

/* The Tilted Plane */
.map-plane {
    width: 100%; height: 100%;
    background: #f8fafc;
    border-radius: 30px;
    transform: rotateX(40deg) rotateZ(-20deg) scale(0.9); /* Isometric Tilt */
    box-shadow: 20px 30px 50px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: visible; /* Allow pins to stick out */
}

/* Grid Lines Pattern */
.map-grid-lines {
    position: absolute; inset: 0; opacity: 0.4;
    background-image: linear-gradient(#e2e8f0 1px, transparent 1px), linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 30px;
}

/* Radar Pulse Animation */
.radar-pulse {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    border: 2px solid var(--seo-emerald);
    border-radius: 50%;
    opacity: 0;
    animation: pulseWave 3s infinite linear;
}
.radar-pulse.delay-1 { animation-delay: 1.5s; }

/* Center Pin */
.center-pin {
    position: absolute; top: 45%; left: 50%;
    transform: translate(-50%, -100%);
    z-index: 5;
    animation: hoverPin 3s ease-in-out infinite;
}
.pin-head {
    font-size: 3rem; color: #ef4444; /* Google Red */
    filter: drop-shadow(0 5px 10px rgba(239, 68, 68, 0.4));
}
.pin-shadow {
    width: 20px; height: 6px; background: rgba(0,0,0,0.2);
    border-radius: 50%; margin: 0 auto;
    animation: shrinkShadow 3s ease-in-out infinite;
}

/* Floating GMB Card */
.gmb-card {
    position: absolute; top: 15%; right: -10%;
    background: white; padding: 1.2rem; border-radius: 16px;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.15);
    width: 240px;
    transform: rotateX(0deg) rotateZ(20deg); /* Counter-rotate to look flat */
    animation: floatGMB 6s ease-in-out infinite;
    z-index: 6;
    border: 1px solid #f1f5f9;
}

.gmb-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: #202124; }
.gmb-rating { font-size: 0.8rem; color: #e67e22; font-weight: 600; margin-bottom: 10px; }
.gmb-status { font-size: 0.8rem; color: #16a34a; font-weight: 600; margin-bottom: 12px; }
.dot { display: inline-block; width: 6px; height: 6px; background: #16a34a; border-radius: 50%; margin-right: 4px; }

.gmb-actions { display: flex; gap: 8px; }
.btn-gmb {
    flex: 1; font-size: 0.75rem; text-align: center; padding: 6px;
    border: 1px solid #e2e8f0; border-radius: 20px; color: #1a73e8; font-weight: 600;
}
.btn-gmb.primary { background: #1a73e8; color: white; border: none; }

/* Review Bubble */
.review-bubble {
    position: absolute; bottom: 20%; left: -5%;
    background: white; padding: 10px 15px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 10px;
    transform: rotateZ(20deg);
    z-index: 4;
    animation: floatReview 5s ease-in-out infinite 1s;
}
.review-bubble img { width: 32px; height: 32px; border-radius: 50%; }
.review-text { display: flex; flex-direction: column; line-height: 1.1; }
.review-text strong { font-size: 0.75rem; color: var(--seo-navy); }
.review-text span { font-size: 0.65rem; color: var(--seo-muted); }

/* Mini Pins */
.mini-pin {
    position: absolute; width: 12px; height: 12px; background: #94a3b8; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.2);
}
.p1 { top: 30%; left: 20%; }
.p2 { top: 70%; left: 60%; }
.p3 { top: 40%; right: 30%; }

/* --- ANIMATIONS --- */
@keyframes pulseWave {
    0% { width: 0; height: 0; opacity: 0.8; }
    100% { width: 250px; height: 250px; opacity: 0; }
}

@keyframes hoverPin {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -120%); }
}

@keyframes shrinkShadow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(0.6); opacity: 0.1; }
}

@keyframes floatGMB {
    0%, 100% { transform: rotateZ(20deg) translateY(0); }
    50% { transform: rotateZ(20deg) translateY(-15px); }
}

@keyframes floatReview {
    0%, 100% { transform: rotateZ(20deg) translateY(0); }
    50% { transform: rotateZ(20deg) translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .local-grid { grid-template-columns: 1fr; gap: 4rem; }
    
    /* Reorder visual to bottom on mobile */
    .local-visual { order: 2; height: 400px; }
    .local-content { order: 1; text-align: center; }
    .feature-row { justify-content: center; text-align: left; }
    
    .gmb-card { right: 0; top: 5%; }
    .review-bubble { left: 0; bottom: 10%; }
}