/**
 * ═══════════════════════════════════════════════════════════════════════
 * SEO Components — The Grind Events Hire
 * ═══════════════════════════════════════════════════════════════════════
 * Styles for breadcrumbs, related services grid, area tags, and
 * enhanced footer. Loaded by seo-head.php.
 */

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.breadcrumb-nav {
    background: rgba(26, 26, 26, 0.95);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    font-size: 0.85rem;
}

.breadcrumb-nav .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255, 255, 255, 0.4);
    padding: 0 0.5rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active span {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Related Services Grid ───────────────────────────────────────── */
.related-services-section {
    background: #1a1a1a;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.related-service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.related-service-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-2px);
}

.related-service-link i {
    font-size: 1.5rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.related-service-link:hover i {
    transform: scale(1.15);
}

/* ── Local Area Tags ─────────────────────────────────────────────── */
.local-areas-section {
    background: #151515;
    padding: 1.5rem 0;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.area-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.08);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.area-tag:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.3);
}

/* ── Enhanced Footer ─────────────────────────────────────────────── */
.footer {
    background: #111;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-title {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6b35;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #ff6b35;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ff6b35;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

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

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #ff6b35;
}

/* ── FAQ Section (shared) ────────────────────────────────────────── */
.faq-section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item .faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
}

.faq-item .faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-item .faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ── CTA Section ─────────────────────────────────────────────────── */
.seo-cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
    padding: 3.5rem 0;
    text-align: center;
}

.seo-cta-section h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.seo-cta-section .btn-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #fff;
    color: #ff6b35;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.3rem;
}

.seo-cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.seo-cta-section .btn-cta-outline {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.3rem;
}

.seo-cta-section .btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .related-service-link {
        font-size: 0.78rem;
    }

    .related-service-link i {
        font-size: 1.2rem;
    }
}
