/* =====================================================
   ROHREXPERTE — Shared Styles (header, footer, banner)
   Used by: impressum.html, datenschutz.html, service pages
   ===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Roboto', sans-serif; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.blue { color: #1874BB; }

/* ── Notdienst Banner ── */
.notdienst-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #b71c1c 0%, #e53935 50%, #b71c1c 100%);
    background-size: 200% 100%;
    animation: notBannerShift 6s ease-in-out infinite;
    color: #fff;
    padding: 9px 50px 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 700;
    font-size: 14px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 3px 16px rgba(183,28,28,0.5);
    flex-wrap: wrap;
}
.notdienst-banner.hidden { transform: translateY(-110%); }
@keyframes notBannerShift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.notdienst-pulse {
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: notPulse 1s ease-in-out infinite;
}
@keyframes notPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.65); }
}
.notdienst-text { letter-spacing: 0.3px; }
.notdienst-cta {
    color: #fff !important;
    background: rgba(255,255,255,0.22);
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    border: 1.5px solid rgba(255,255,255,0.55);
    transition: background 0.2s;
    white-space: nowrap;
}
.notdienst-cta:hover { background: rgba(255,255,255,0.38); }
.notdienst-close {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
}
.notdienst-close:hover { color: #fff; }
@media (max-width: 768px) {
    .notdienst-banner { padding: 5px 32px 5px 10px; font-size: 11px; gap: 8px; min-height: 26px; justify-content: flex-start; flex-wrap: nowrap; }
    .notdienst-cta { display: none; }
    .notdienst-pulse {
        position: relative;
        width: 18px; height: 18px;
        border-radius: 50%;
        background: rgba(180,0,0,0.5);
        border: 2.5px solid rgba(255,255,255,0.92);
        box-shadow: 0 0 8px 2px rgba(255,255,255,0.35);
        flex-shrink: 0;
        overflow: hidden;
        animation: none;
    }
    .notdienst-pulse::after {
        content: '';
        position: absolute;
        inset: 0;
        background: conic-gradient(rgba(255,255,255,0.97) 0deg 80deg, transparent 80deg 360deg);
        animation: beaconSpin 0.6s linear infinite;
    }
    @keyframes beaconSpin { to { transform: rotate(360deg); } }
}

/* ── Trust Bar ── */
.trust-bar {
    background: #0d5a96;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 0;
    letter-spacing: 0.3px;
}
.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.trust-bar-item i { font-size: 16px; opacity: 0.95; }
@media (max-width: 768px) {
    .trust-bar { font-size: 12px; padding: 10px 0; }
    .trust-bar-inner { gap: 14px; overflow-x: auto; padding: 0 16px; }
    .trust-bar-inner::-webkit-scrollbar { display: none; }
}

/* ── Header ── */
.header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.header-logo img { height: 60px; }
.header-badges { display: flex; align-items: center; gap: 15px; }
.header-badges img { height: 50px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone-text { text-align: right; }
.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 2px;
}
.open-badge.is-open  { background: #e8f9e8; color: #1e8c1e; }
.open-badge.is-closed{ background: #fff3e0; color: #e65100; }
.open-badge::before  { content: '●'; font-size: 9px; }
.header-phone-text .number {
    color: #1874BB;
    font-weight: 900;
    font-size: 26px;
}
.header-phone-avatar {
    width: 55px; height: 55px;
    border-radius: 50%;
    border: 3px solid #1874BB;
    background: #fff;
    flex-shrink: 0;
    animation: cta-pulse 2s infinite;
    overflow: hidden;
}
.header-phone-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

@keyframes cta-pulse {
    0%   { box-shadow: 0 6px 25px rgba(24,116,187,0.45), 0 0 0 0 rgba(24,116,187,0.4); }
    70%  { box-shadow: 0 6px 25px rgba(24,116,187,0.45), 0 0 0 18px rgba(24,116,187,0); }
    100% { box-shadow: 0 6px 25px rgba(24,116,187,0.45), 0 0 0 0 rgba(24,116,187,0); }
}

/* ── Sub Nav Bar ── */
.sub-nav {
    background: #0d5a96;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    position: relative;
}
.sub-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 42px;
}
.sub-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 600;
    padding: 0 16px;
    height: 100%;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    border-right: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.2px;
}
.sub-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.sub-nav a:hover  { color: #fff; background: rgba(255,255,255,0.07); }
.sub-nav a.active { color: #fff; background: #1874BB; }
.sub-nav a i { font-size: 12px; opacity: 0.8; }

/* Hamburger button — mobile only */
.sub-nav-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 18px;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.sub-nav-toggle i { font-size: 16px; transition: transform 0.3s; }
.sub-nav.open .sub-nav-toggle i { transform: rotate(180deg); }

/* Mobile dropdown */
.sub-nav-links {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 768px) {
    .sub-nav { padding: 0; }
    .sub-nav-inner { height: auto; padding: 0; flex-direction: column; align-items: stretch; }
    .sub-nav-toggle { display: flex; }
    .sub-nav-links {
        display: none;
        flex-direction: column;
        height: auto;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .sub-nav.open .sub-nav-links { display: flex; }
    .sub-nav-links a {
        height: 44px;
        padding: 0 20px;
        font-size: 13px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }
    .sub-nav-links a:first-child { border-left: none; }
    .sub-nav-links a:last-child  { border-bottom: none; }
}

/* Anfragen Button */
.header-anfragen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1874BB 0%, #1155a0 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 50px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(24,116,187,0.35);
    white-space: nowrap;
}
.header-anfragen-btn:hover {
    background: linear-gradient(135deg, #0d5a96 0%, #0a4a80 100%);
    box-shadow: 0 6px 22px rgba(24,116,187,0.5);
    transform: translateY(-1px);
}
.header-anfragen-btn i { font-size: 14px; }

/* Mobile Header Avatar */
@keyframes avatarPulseRing  { 0% { transform:scale(1);opacity:0.6; } 100% { transform:scale(1.8);opacity:0; } }
@keyframes avatarPulseRing2 { 0% { transform:scale(1);opacity:0.4; } 100% { transform:scale(2.2);opacity:0; } }
@keyframes phoneShake {
    0%,100%{transform:rotate(0deg);}
    10%{transform:rotate(-12deg);}20%{transform:rotate(12deg);}
    30%{transform:rotate(-10deg);}40%{transform:rotate(10deg);}
    50%{transform:rotate(-6deg);}60%{transform:rotate(6deg);}70%{transform:rotate(0deg);}
}
.mobile-header-avatar { display: none; }

@media (max-width: 768px) {
    .header .container { justify-content: center; flex-wrap: nowrap; gap: 10px; }
    .header-logo img { height: 36px; }
    .header-badges { display: none; }
    .header-phone { display: none !important; }
    .header-anfragen-btn { display: none; }
    .mobile-header-avatar {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    .mobile-header-avatar a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px; height: 48px;
    }
    .mobile-avatar-circle {
        width: 48px; height: 48px;
        border-radius: 50%;
        position: relative; z-index: 2;
    }
    .mobile-avatar-face {
        position: absolute; inset: 0;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
        transition: opacity 0.5s ease;
    }
    .mobile-avatar-front { border: 2px solid #1874BB; background: #fff; opacity: 1; z-index: 2; }
    .mobile-avatar-back  { border: 2px solid #33C000; background: #33C000; opacity: 0; z-index: 1; }
    .mobile-avatar-back i { font-size: 22px; color: #fff; }
    .mobile-avatar-circle.flipped .mobile-avatar-front { opacity: 0; z-index: 1; }
    .mobile-avatar-circle.flipped .mobile-avatar-back  { opacity: 1; z-index: 2; }
    .mobile-avatar-circle.shake .mobile-avatar-back i  { animation: phoneShake 0.8s ease; }
    .mobile-avatar-label {
        position: absolute;
        right: 52px; top: 50%;
        transform: translateY(-50%);
        background: #1874BB;
        color: #fff;
        font-size: 11px; font-weight: 700;
        padding: 4px 10px;
        border-radius: 12px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 1; z-index: 10;
        transition: opacity 0.4s ease;
    }
    .mobile-avatar-pulse {
        position: absolute; top: 0; left: 0;
        width: 48px; height: 48px;
        border-radius: 50%;
        border: 2px solid #33C000;
        z-index: 1; opacity: 0; pointer-events: none;
    }
    .mobile-avatar-pulse.animate { animation: avatarPulseRing 1.2s ease-out forwards; }
    .mobile-avatar-pulse.ring2.animate { animation: avatarPulseRing2 1.2s ease-out 0.3s forwards; }
}

/* ── Footer ── */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 25px 0;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links a { color: #fff; margin-left: 20px; font-size: 14px; }
.footer-links a i { margin-right: 5px; }
.footer-music {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
}
.music-btn {
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.music-btn:hover { border-color: #00AFEF; color: #00AFEF; }
.music-btn.playing { border-color: #33C000; color: #33C000; animation: musicPulse 1.5s ease infinite; }
@keyframes musicPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(51,192,0,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(51,192,0,0); }
}
.music-info { font-size: 12px; color: rgba(255,255,255,0.6); }
.music-info.playing { color: rgba(255,255,255,0.9); }
@media (max-width: 768px) {
    .footer .container { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── CTA Float Button (desktop) ── */
.cta-float {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 999;
    display: flex; align-items: center;
    gap: 0; flex-direction: row-reverse;
}
.cta-float-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1874BB 0%, #00AFEF 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(24,116,187,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; z-index: 2; flex-shrink: 0;
    animation: cta-pulse 2s infinite;
}
.cta-float:hover .cta-float-circle {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 30px rgba(24,116,187,0.55);
    animation: none;
}
.cta-float-panel {
    background: #fff;
    border-radius: 16px;
    max-width: 0; overflow: hidden; opacity: 0;
    transform: translateX(20px);
    transition: max-width 0.4s, opacity 0.3s, transform 0.4s, padding 0.4s;
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
    white-space: nowrap; margin-right: -8px; pointer-events: none;
}
.cta-float:hover .cta-float-panel {
    max-width: 300px; opacity: 1;
    transform: translateX(0);
    padding: 16px 24px 16px 20px;
    pointer-events: auto;
}
.cta-float-panel .cta-label { font-size: 15px; font-weight: 700; color: #1874BB; margin-bottom: 2px; }
.cta-float-panel .cta-hours { font-size: 12px; color: #999; margin-bottom: 6px; }
.cta-float-panel .cta-number { font-size: 20px; font-weight: 900; color: #222; display: flex; align-items: center; gap: 8px; }
.cta-float-panel .cta-number i { color: #1874BB; font-size: 16px; }
@media (max-width: 768px) { .cta-float { display: none; } }

/* ── Page content (impressum / datenschutz) ── */
.page-hero {
    background: linear-gradient(135deg, #0d5a96 0%, #1874BB 100%);
    padding: 50px 0 40px;
    color: #fff;
}
.page-hero h1 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.page-hero p  { font-size: 16px; opacity: 0.85; }
.page-body {
    background: #f5f8fd;
    padding: 50px 0;
}
.page-card {
    background: #fff;
    border-radius: 18px;
    padding: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-bottom: 30px;
}
.page-card h2 {
    font-size: 20px;
    color: #1874BB;
    margin-top: 30px;
    margin-bottom: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f4fa;
}
.page-card h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.page-card h3 { font-size: 16px; color: #333; margin: 16px 0 6px; font-weight: 700; }
.page-card p  { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 10px; }
.page-card a  { color: #1874BB; }
.page-card a:hover { text-decoration: underline; }
.page-card ul { padding-left: 20px; margin-bottom: 15px; }
.page-card li { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 6px; }
@media (max-width: 768px) {
    .page-hero h1 { font-size: 26px; }
    .page-card { padding: 28px 20px; }
}

/* ── Service page specific ── */
.svc-hero {
    background: linear-gradient(135deg, #0d5a96 0%, #1874BB 60%, #1a8fd1 100%);
    padding: 70px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -200px; right: -150px;
    pointer-events: none;
}
.svc-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
}
.svc-hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 14px;
}
.svc-hero h1 { font-size: 42px; font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.svc-hero p  { font-size: 17px; opacity: 0.88; line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.svc-hero-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    min-width: 180px;
    flex-shrink: 0;
}
.svc-hero-badge .badge-num { font-size: 44px; font-weight: 900; line-height: 1; }
.svc-hero-badge .badge-label { font-size: 13px; opacity: 0.8; margin-top: 6px; font-weight: 600; }
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.25s;
    white-space: nowrap;
}
.svc-btn-white {
    background: #fff;
    color: #1874BB;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.svc-btn-white:hover { background: #f0f8ff; transform: translateY(-2px); }
.svc-btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}
.svc-btn-outline:hover { background: rgba(255,255,255,0.15); }
.svc-btn-wrap { display: flex; gap: 14px; flex-wrap: wrap; }

.svc-section {
    padding: 70px 0;
}
.svc-section-alt { background: #f5f8fd; }
.svc-section h2 { font-size: 30px; font-weight: 900; color: #1a2840; margin-bottom: 10px; }
.svc-section p  { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }

/* ── City Page Content Sections ── */
.svc-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}
.svc-content h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1a2840;
    margin-bottom: 18px;
    margin-top: 10px;
}
.svc-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 22px;
}
.svc-content ul {
    margin-bottom: 25px;
    padding-left: 5px;
}
.svc-content ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
    list-style: none;
}
.svc-content ul li strong {
    color: #1a2840;
}
.svc-section .section-label {
    color: #1874BB; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 10px; display: block;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}
.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1.5px solid #e8eef7;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.feature-card:hover { box-shadow: 0 10px 32px rgba(24,116,187,0.12); transform: translateY(-4px); border-color: #1874BB; }
.feature-card .fc-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #eef4fd, #d8eaff);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #1874BB;
    margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 800; color: #1a2840; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.check-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #333; font-weight: 600;
}
.check-item i { color: #33C000; font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.svc-faq-list { margin-top: 32px; }
.svc-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8eef7;
    margin-bottom: 12px;
    overflow: hidden;
}
.svc-faq-q {
    padding: 18px 22px;
    font-weight: 700; font-size: 15px; color: #1a2840;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    user-select: none;
}
.svc-faq-q i { color: #1874BB; transition: transform 0.3s; flex-shrink: 0; }
.svc-faq-item.open .svc-faq-q i { transform: rotate(180deg); }
.svc-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 22px;
    font-size: 14px; color: #666; line-height: 1.8;
}
.svc-faq-item.open .svc-faq-a { max-height: 300px; padding: 0 22px 18px; }

.svc-cta-bar {
    background: linear-gradient(135deg, #0d5a96, #1874BB);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.svc-cta-bar h2 { font-size: 32px; font-weight: 900; margin-bottom: 10px; }
.svc-cta-bar p  { font-size: 16px; opacity: 0.85; margin-bottom: 30px; }
.svc-cta-bar .svc-btn-white { font-size: 18px; padding: 18px 38px; }

/* ── CTA Section (City Pages) ── */
.cta-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}
.cta-section h2 { font-size: 32px; font-weight: 900; color: #1a1a2e; margin-bottom: 12px; }
.cta-section p { font-size: 16px; color: #666; margin-bottom: 24px; }
.cta-section .liquid-btn { display: inline-block; }

/* ── Breadcrumb Navigation ── */
.breadcrumb-nav {
    background: #f5f8fd;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 13px;
}
.breadcrumb-list li {
    display: flex;
    align-items: center;
}
.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #999;
}
.breadcrumb-list a {
    color: #1874BB;
    text-decoration: none;
}
.breadcrumb-list a:hover {
    text-decoration: underline;
}
.breadcrumb-list [aria-current="page"] {
    color: #333;
    font-weight: 500;
}

/* ── City Page Services Section ── */
.svc-features {
    background: #f5f8fd;
    padding: 50px 20px;
}
.svc-features .container {
    max-width: 1200px;
    margin: 0 auto;
}
.svc-features h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1a2840;
    margin-bottom: 10px;
}
.svc-features p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.service-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
}
.service-card i {
    font-size: 28px;
    color: #1874BB;
    margin-bottom: 14px;
    display: block;
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2840;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── City Page Layout Classes ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.process-step {
    text-align: center;
    background: #fff;
    padding: 28px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.process-step-number {
    background: linear-gradient(135deg, #1874BB, #0d5a96);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 14px;
}
.process-step h3 { font-size: 16px; font-weight: 700; color: #1a2840; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 0; }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 22px;
    margin-bottom: 10px;
}
.problem-card {
    background: #fff;
    padding: 24px 22px;
    border-radius: 10px;
    border-left: 4px solid #1874BB;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.problem-card h3 { margin-top: 0; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a2840; }
.problem-card p { margin: 0; font-size: 14px; color: #555; line-height: 1.7; }

.faq-item {
    background: #fff;
    padding: 22px 24px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #e8eef7;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.faq-item h3 { margin: 0 0 10px 0; font-size: 16px; font-weight: 700; color: #1874BB; }
.faq-item p { margin: 0; font-size: 14px; color: #555; line-height: 1.75; }

.service-areas-list {
    columns: 2;
    column-gap: 30px;
    margin-top: 18px;
}
.service-areas-list li { margin-bottom: 12px; font-size: 15px; color: #444; }

.emergency-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 45px 20px;
    text-align: center;
    margin: 0;
}
.emergency-banner h2 { color: white; margin-bottom: 12px; font-size: 28px; font-weight: 900; }
.emergency-banner p { color: rgba(255,255,255,0.92); font-size: 16px; margin-bottom: 22px; line-height: 1.6; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .svc-hero-grid { grid-template-columns: 1fr; }
    .svc-hero-badge { display: none; }
    .svc-hero h1 { font-size: 28px; }
    .feature-grid { grid-template-columns: 1fr; }
    .check-grid { grid-template-columns: 1fr; }
    .svc-cta-bar h2 { font-size: 24px; }

    /* City Pages Mobile */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 22px 18px; }
    .svc-features h2 { font-size: 22px; }
    .svc-content { padding: 35px 16px; }
    .svc-content h2 { font-size: 22px; margin-bottom: 14px; }
    .svc-content p { font-size: 14px; margin-bottom: 18px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
    .process-step { padding: 20px 12px; }
    .process-step h3 { font-size: 14px; }
    .process-step p { font-size: 13px; }
    .problems-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-areas-list { columns: 1; }
    .emergency-banner { padding: 32px 16px; margin: 0; }
    .emergency-banner h2 { font-size: 22px; margin-bottom: 10px; }
    .cta-section { padding: 40px 16px; margin-top: 40px; }
    .cta-section h2 { font-size: 24px; }
}

/* ── Mobile Action Bar ── */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 58px;
    z-index: 9800;
    overflow: hidden;
}
@media (max-width: 768px) {
    .mob-bar { display: flex; }
    body { padding-bottom: 58px; }
}
.mob-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    color: rgba(255,255,255,0.96);
    font-weight: 800;
    font-size: 13.5px;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    backdrop-filter: blur(22px) saturate(200%);
    -webkit-backdrop-filter: blur(22px) saturate(200%);
    border-top: 1px solid rgba(255,255,255,0.22);
    position: relative;
    overflow: hidden;
}
.mob-bar-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 48%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.22), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 1;
}
.mob-bar-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,0.08), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 1;
}
.mob-bar-btn-call {
    background: rgba(24, 120, 210, 0.28);
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}
.mob-bar-btn-form {
    background: rgba(11, 80, 155, 0.28);
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -30px;
}
.mob-bar-btn span { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; }
.mob-bar-btn-call span { margin-right: 12px; }
.mob-bar-btn-form span { margin-left: 20px; }
.mob-bar-btn i { font-size: 17px; }
@keyframes mobJelly {
    0%   { transform: scale(1,1); }
    15%  { transform: scale(0.86,1.18); }
    30%  { transform: scale(1.2,0.82); }
    45%  { transform: scale(0.93,1.1); }
    62%  { transform: scale(1.09,0.91); }
    78%  { transform: scale(0.97,1.04); }
    100% { transform: scale(1,1); }
}
.mob-bar-btn.jelly { animation: mobJelly 0.52s cubic-bezier(0.36,0.07,0.19,0.97) both; }
