/* ========================================
   SEO Pages – City, Area, Material, Blog
   Extends service-pages.css
   ======================================== */

/* ── Breadcrumb ─────────────────────────── */
.breadcrumb {
    padding: 15px 20px;
    background: var(--background-light);
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: var(--text-light);
    margin: 0 8px;
}

/* ── SEO Content Sections ───────────────── */
.seo-intro {
    padding: 50px 20px;
    background: var(--white);
}
.seo-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.seo-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 900px;
}

/* ── Service Grid on city/area pages ────── */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.seo-service-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.seo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,102,204,0.12);
    border-color: var(--primary-color);
}
.seo-service-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.seo-service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.seo-service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ── Area Links Grid (city pages) ───────── */
.area-links {
    padding: 50px 20px;
    background: var(--background-light);
}
.area-links h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}
.area-grid a {
    display: block;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}
.area-grid a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ── Material Spec Table ────────────────── */
.material-specs {
    margin: 30px 0;
    overflow-x: auto;
}
.material-specs table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.material-specs th,
.material-specs td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.material-specs th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}
.material-specs tr:nth-child(even) {
    background: var(--background-light);
}
.material-specs tr:hover {
    background: rgba(0,102,204,0.05);
}

/* ── Blog Categories Navigation ─────────── */
.blog-categories {
    padding: 20px;
    background: var(--background-light);
    border-bottom: 1px solid #e0e0e0;
}
.category-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.category-label {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 500;
}
.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.2s ease;
}
.category-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.category-tag i {
    font-size: 0.85rem;
}
.blog-category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.badge-selling-guides {
    background: #e8f5e9;
    color: #2e7d32;
}
.badge-scrap-prices {
    background: #fff3e0;
    color: #e65100;
}

/* ── Blog Listing ───────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--background-light);
}
.blog-card-body {
    padding: 20px;
}
.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.blog-card-body .blog-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.blog-date {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 6px;
}
.blog-read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}
.blog-back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.blog-back-link:hover {
    text-decoration: underline;
}
.blog-card-body p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Blog Post Article ──────────────────── */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.blog-article h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.blog-article .blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.blog-article h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 35px 0 15px;
}
.blog-article h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 25px 0 10px;
}
.blog-article p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.blog-article ul,
.blog-article ol {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}
.blog-article img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* ── Landmarks Grid (area pages) ────────── */
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.landmark-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.landmark-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

/* ── FAQ Accordion (area pages) ─────────── */
.faq-list {
    max-width: 850px;
    margin-top: 20px;
}
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}
.faq-item summary {
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary:hover {
    background: var(--background-light);
}
.faq-item p {
    padding: 0 20px 16px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ── CTA Banner (reused across page types) ── */
.seo-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 20px;
    text-align: center;
    color: var(--white);
}
.seo-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.seo-cta p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
}
.seo-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .seo-intro h2 { font-size: 1.5rem; }
    .blog-article h1 { font-size: 1.7rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-cta h2 { font-size: 1.4rem; }
}
