/* ========================================
   INNER PAGE STYLES
   For service pages, city pages, etc.
   ======================================== */

/* Coverage items as links */
a.coverage-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a.coverage-item:hover {
    background: var(--accent-orange) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

a.coverage-item:hover i {
    color: white !important;
}

/* Inner Page Hero */
.inner-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
    overflow: hidden;
    margin-top: 95px;
    text-align: center;
    padding: 4rem 2rem;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.inner-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.inner-hero .breadcrumb a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-hero .breadcrumb a:hover {
    color: var(--accent-orange-hover);
}

.inner-hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
}

.inner-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.inner-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.inner-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Inner Page Content Sections */
.inner-content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.inner-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-orange), #ffaa33);
    border-radius: 2px;
}

.inner-content h2.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.inner-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.inner-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.inner-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.inner-content ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.inner-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* Service Feature Cards */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);
}

.service-detail-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.service-detail-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--secondary-dark);
}

.service-detail-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 3rem 0;
}

.two-col-content h2::after {
    left: 0;
    transform: none;
}

/* City page nearby areas */
.nearby-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.nearby-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 25px;
    color: var(--secondary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.nearby-area-tag:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.nearby-area-tag i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

a.nearby-area-tag:hover i {
    color: white;
}

/* Inner page CTA bar */
.inner-cta {
    background: linear-gradient(135deg, var(--secondary-dark), #3a3a3a);
    padding: 4rem 2rem;
    text-align: center;
}

.inner-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.inner-cta h2::after {
    display: none;
}

.inner-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inner-cta .cta-phone {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.inner-cta .cta-phone:hover {
    color: var(--accent-orange-hover);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .inner-hero {
        min-height: 35vh;
        margin-top: 62px;
        padding: 3rem 1.5rem;
    }
    
    .inner-content {
        padding: 3rem 1.5rem;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding-bottom: 5.5rem;
    }
}

/* ── Photo Hero Background ───────────────────────────────────── */
.inner-hero--photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.inner-hero--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
    z-index: 1;
}

.inner-hero--photo .inner-hero-content {
    position: relative;
    z-index: 2;
}

/* ── In-Content Photo Pair ───────────────────────────────────── */
.inner-photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.inner-photo,
.inner-photo--single {
    margin: 0;
}

.inner-photo img,
.inner-photo--single img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.inner-photo--single {
    margin: 2.5rem 0;
}

.inner-photo--single img {
    height: 340px;
    max-width: 560px;
}

.inner-photo figcaption,
.inner-photo--single figcaption {
    font-size: 0.82rem;
    color: #999;
    margin-top: 0.6rem;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .inner-photo-pair {
        grid-template-columns: 1fr;
    }

    .inner-photo img {
        height: 220px;
    }

    .inner-photo--single img {
        height: 240px;
        max-width: 100%;
    }
}

/* ── About Team Section ──────────────────────────────────────── */
.about-team-section {
    margin: 3rem 0;
}

.about-team-section h2 {
    margin-bottom: 0.5rem;
}

.about-team-section > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.about-team-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-team-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.about-team-card:hover .about-team-photo img {
    transform: scale(1.03);
}

.about-team-info {
    padding: 1.5rem;
}

.about-team-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.about-team-role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.about-team-info p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-team-creds {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-team-creds span {
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-team-creds i {
    color: var(--accent-orange);
    font-size: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-team-photo {
        height: 260px;
    }
}
/* ═══════════════════════════════════════════════════════════════
   HELPFUL RESOURCES — Blog article cards
   ═══════════════════════════════════════════════════════════════ */
.resources-section {
    margin-top: 3rem;
}

.resources-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.resources-section h3::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.resources-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.resource-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 18px rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.resource-card-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.resource-card-icon i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.resource-card-body {
    flex: 1;
    min-width: 0;
}

.resource-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.35;
    margin-bottom: 0.3rem;
}

.resource-card-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.45;
}

.resource-card-arrow {
    color: var(--accent-orange);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.resource-card:hover .resource-card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE AREAS — City grid
   ═══════════════════════════════════════════════════════════════ */
.service-areas-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.04) 0%, rgba(255, 140, 0, 0.02) 100%);
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #ffaa33, transparent);
    border-radius: 14px 14px 0 0;
}

.service-areas-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.service-areas-section h2::after {
    display: none;
}

.service-areas-section > p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.65rem;
}

.city-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.9rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.city-chip:hover {
    border-color: rgba(255, 140, 0, 0.35);
    background: rgba(255, 140, 0, 0.04);
    transform: translateY(-1px);
}

.city-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.city-chip.is-hq .city-chip-dot {
    background: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.city-chip:hover .city-chip-dot {
    background: var(--accent-orange);
}

.city-chip-info {
    min-width: 0;
    flex: 1;
}

.city-chip-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.city-chip-name .hq-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(255, 140, 0, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.city-chip-detail {
    display: block;
    font-size: 0.72rem;
    color: #999;
    line-height: 1.35;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .resources-cards {
        grid-template-columns: 1fr;
    }

    .city-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .service-areas-section {
        padding: 1.5rem;
    }

    .city-chip-detail {
        display: none;
    }

    .city-chip-name .hq-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .city-grid {
        grid-template-columns: 1fr 1fr;
    }

    .city-chip {
        padding: 0.55rem 0.7rem;
    }
}
