/* ====================================================
   SEO BOOST STYLESHEET – Ganesh Enterprises
   Local SEO Enhancement Blocks
   ==================================================== */

/* ---- Trust Signals Bar ---- */
.seo-trust-bar {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    padding: 28px 0;
}

.seo-trust-bar .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 12px 8px;
}

.seo-trust-bar .trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
}

.seo-trust-bar .trust-item:hover .trust-icon {
    background: rgba(255, 255, 255, 0.3);
}

.seo-trust-bar .trust-label {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.seo-trust-bar .trust-value {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* ---- Emergency CTA Banner ---- */
.seo-emergency-cta {
    background: linear-gradient(135deg, #e65100 0%, #bf360c 100%);
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-emergency-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.seo-emergency-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.seo-emergency-cta h2 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.seo-emergency-cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.seo-emergency-cta .btn-call {
    background: #fff;
    color: #e65100;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 6px 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.seo-emergency-cta .btn-call:hover {
    background: #fff3e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.seo-emergency-cta .btn-book {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 34px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 6px 8px;
    transition: all 0.25s;
}

.seo-emergency-cta .btn-book:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ---- Review / Rating Cards ---- */
.seo-reviews-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.seo-reviews-section .section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f9a825;
    margin-bottom: 6px;
}

.seo-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.seo-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.seo-review-card .review-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: #e3f2fd;
    font-family: Georgia, serif;
    margin-bottom: 4px;
}

.seo-review-card .review-stars {
    color: #f9a825;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.seo-review-card .review-text {
    color: #424242;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.seo-review-card .review-author {
    font-weight: 700;
    color: #1a237e;
    font-size: 0.9rem;
}

.seo-review-card .review-location {
    font-size: 0.8rem;
    color: #9e9e9e;
}

.seo-agg-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff9c4;
    border: 1px solid #f9a825;
    border-radius: 50px;
    padding: 8px 22px;
    margin-bottom: 32px;
}

.seo-agg-rating .agg-score {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e65100;
    font-family: 'Montserrat', sans-serif;
}

.seo-agg-rating .agg-stars {
    color: #f9a825;
    font-size: 1rem;
}

.seo-agg-rating .agg-count {
    color: #757575;
    font-size: 0.85rem;
}

/* ---- Internal Linking Cluster ---- */
.seo-service-cluster {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #e8eaf6;
    border-bottom: 1px solid #e8eaf6;
}

.seo-service-cluster h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.seo-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.seo-area-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e8eaf6;
    color: #1a237e;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.22s;
    border: 1px solid #c5cae9;
}

.seo-area-link:hover {
    background: #1a237e;
    color: #fff;
    border-color: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.seo-area-link i {
    font-size: 0.75rem;
}

/* ---- Service Areas Prose Section ---- */
.seo-content-section {
    padding: 60px 0;
    background: #fff;
}

.seo-content-section.alt-bg {
    background: #f5f7ff;
}

.seo-content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}

.seo-content-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #283593;
    margin-bottom: 12px;
}

.seo-content-section p {
    color: #424242;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.seo-content-section ul {
    margin-bottom: 18px;
    padding-left: 0;
}

.seo-content-section ul li {
    list-style: none;
    padding: 5px 0 5px 26px;
    position: relative;
    color: #424242;
    font-size: 0.95rem;
    line-height: 1.7;
}

.seo-content-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #1a237e;
    font-size: 0.85rem;
    top: 7px;
}

.seo-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0 24px;
}

.seo-problem-item {
    background: #e8eaf6;
    border-left: 4px solid #1a237e;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a237e;
    display: flex;
    align-items: center;
    gap: 9px;
}

.seo-problem-item i {
    color: #e65100;
}

.seo-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.seo-brand-pill {
    background: #fff;
    border: 2px solid #c5cae9;
    color: #1a237e;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* ---- Breadcrumb SEO Enhancement ---- */
.seo-breadcrumb-bar {
    background: #f5f7ff;
    padding: 10px 0;
    border-bottom: 1px solid #e8eaf6;
}

.seo-breadcrumb-bar .breadcrumb {
    font-size: 0.82rem;
    margin-bottom: 0;
}

.seo-breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
    color: #333;
}

.seo-breadcrumb-bar .breadcrumb-item a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
}

.seo-breadcrumb-bar .breadcrumb-item.active {
    color: #333;
    font-weight: 700;
}

/* ---- FAQ Section ---- */
.seo-faq-section {
    padding: 60px 0;
    background: #f5f7ff;
}

.seo-faq-section .accordion-button {
    font-weight: 600;
    color: #1a237e;
    background: transparent;
}

.seo-faq-section .accordion-button:not(.collapsed) {
    color: #e65100;
    background: #fff3e0;
    box-shadow: none;
}

.seo-faq-section .accordion-item {
    border: 1px solid #e8eaf6;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.seo-faq-section .accordion-button::after {
    filter: hue-rotate(200deg);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .seo-emergency-cta h2 {
        font-size: 1.45rem;
    }

    .seo-trust-bar .trust-value {
        font-size: 1rem;
    }

    .seo-content-section {
        padding: 40px 0;
    }

    .seo-reviews-section {
        padding: 40px 0;
    }

    .seo-area-links {
        gap: 8px;
    }

    .seo-area-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}