/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.plumber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
    padding: 0;
}
.plumber-header.scrolled {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.plumber-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 30px;
    gap: 12px;
    position: relative;
}

/* Logo — swap white / color on scroll */
.plumber-logo {
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    height: 55px;
    display: flex;
    align-items: center;
}
.plumber-logo-img {
    height: 55px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s;
}
.logo-white {
    opacity: 1;
    position: relative;
}
.logo-color {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 55px;
    width: auto;
    max-width: none;
    object-fit: contain;
    opacity: 0;
}
.plumber-header.scrolled .logo-white { opacity: 0; }
.plumber-header.scrolled .logo-color { opacity: 1; }

/* Nav — white on transparent, dark on scroll */
.plumber-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 8px;
}
.plumber-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.plumber-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.plumber-header.scrolled .plumber-nav a {
    color: #265380;
}
.plumber-header.scrolled .plumber-nav a:hover {
    color: #E8892F;
    background: rgba(38,83,128,0.06);
}

/* Dropdown Zone 95 */
.plumber-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    cursor: pointer;
}
.plumber-dropdown-toggle:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
.plumber-header.scrolled .plumber-dropdown-toggle {
    color: #265380;
}
.plumber-header.scrolled .plumber-dropdown-toggle:hover {
    color: #E8892F;
    background: rgba(38,83,128,0.06);
}
.plumber-dropdown {
    position: static;
}
.plumber-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 24px 30px 20px;
    z-index: 10002;
    text-align: center;
}
/* Invisible bridge to keep hover alive between toggle and menu */
.plumber-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.plumber-dropdown.open .plumber-dropdown-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 10px;
}
.plumber-dropdown-zone-intro {
    width: 100%;
    text-align: center;
    color: #7a8ea0;
    font-size: 0.85em;
    margin: 0 0 6px;
    font-weight: 500;
}
.plumber-dropdown-menu a {
    display: inline-block;
    padding: 10px 18px;
    color: #265380;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.plumber-dropdown-menu a:hover {
    background: #f4f6f9;
    color: #E8892F;
}

/* Mega Menu Services */
.plumber-mega {
    position: static;
}
.plumber-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 20px 30px;
    z-index: 10002;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.plumber-mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}
.plumber-mega.open .plumber-mega-menu {
    display: grid;
}
.plumber-mega-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    text-decoration: none;
}
.plumber-mega-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none !important;
    transition: none !important;
    pointer-events: none;
}
.plumber-mega-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26,61,92,0.9) 0%, rgba(26,61,92,0.4) 100%);
    pointer-events: none;
}
.plumber-mega-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}
.plumber-mega-label svg {
    flex-shrink: 0;
    margin-left: auto;
}

/* CTA button */
.plumber-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8892F;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.plumber-header-cta:hover,
.plumber-header-cta:active,
.plumber-header-cta:focus {
    background: #E8892F;
    color: #fff;
    transform: none;
    text-decoration: none;
}

/* Burger button (hidden on desktop) */
.plumber-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}
.plumber-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.plumber-header.scrolled .plumber-burger span {
    background: #265380;
}
.plumber-burger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.plumber-burger.open span:nth-child(2) {
    opacity: 0;
}
.plumber-burger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Mobile nav ── */
@media (max-width: 900px) {
    .plumber-header-inner {
        padding: 8px 10px;
    }
    .plumber-logo {
        height: 35px;
    }
    .plumber-logo-img {
        height: 35px;
    }
    .plumber-burger {
        display: flex;
    }
    .plumber-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100vw;
        background: linear-gradient(180deg, #1a3d5c 0%, #265380 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 70px 16px 20px;
        gap: 2px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        box-sizing: border-box;
    }
    .plumber-nav.open {
        transform: translateX(0);
    }
    .plumber-nav a,
    .plumber-nav .plumber-dropdown-menu a,
    .plumber-header.scrolled .plumber-nav a,
    .plumber-header.scrolled .plumber-dropdown-toggle {
        padding: 12px 16px;
        font-size: 1em;
        border-radius: 10px;
        border-bottom: none;
        color: #fff !important;
        background: transparent !important;
        transition: background 0.2s;
    }
    .plumber-nav a:hover,
    .plumber-nav a:active,
    .plumber-nav .plumber-dropdown-menu a:hover {
        background: rgba(255,255,255,0.1) !important;
        color: #E8892F !important;
    }
    /* Mobile CTA phone — always visible in header bar */
    .plumber-header-cta {
        position: relative;
        z-index: 10001;
        padding: 6px 10px;
        font-size: 0.75em;
        gap: 5px;
        margin-left: auto;
    }
    /* Mobile dropdown */
    .plumber-dropdown {
        width: 100%;
        position: relative;
    }
    .plumber-dropdown-toggle,
    .plumber-header.scrolled .plumber-dropdown-toggle {
        display: flex;
        width: 100%;
        padding: 12px 16px;
        font-size: 1em;
        border-radius: 10px;
        border-bottom: none;
        color: #fff !important;
        justify-content: space-between;
        cursor: pointer;
    }
    .plumber-dropdown-toggle:hover {
        color: #fff !important;
        background: rgba(255,255,255,0.1) !important;
    }
    .plumber-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        min-width: 0;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
        display: none;
        border-radius: 12px;
        margin: 4px 0 8px;
        padding: 8px 0;
    }
    .plumber-dropdown.open .plumber-dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    .plumber-dropdown-menu::before {
        display: none;
    }
    .plumber-dropdown-menu a {
        color: #fff;
        padding: 8px 20px;
        font-size: 0.92em;
        border-radius: 8px;
        margin: 0 8px;
    }
    .plumber-dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #E8892F;
    }
    /* Mobile mega menu */
    .plumber-mega {
        width: 100%;
        position: relative;
    }
    .plumber-mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        background: rgba(255,255,255,0.06);
        box-shadow: none;
        border-radius: 12px;
        margin: 4px 0 8px;
        padding: 8px;
        grid-template-columns: 1fr !important;
        gap: 6px;
    }
    .plumber-mega-menu::before {
        display: none;
    }
    .plumber-mega.open .plumber-mega-menu {
        display: grid;
    }
    .plumber-mega-item {
        height: 140px;
        border-radius: 10px;
    }
    .plumber-mega-img {
        transform: none !important;
        transition: none !important;
    }
    .plumber-mega-label {
        font-size: 0.85em;
        padding: 10px 14px;
        color: #fff !important;
    }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.plumber-footer {
    background: #1a3d5c;
    color: rgba(255,255,255,0.8);
    padding: 60px 30px 0;
}
.plumber-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
}
.plumber-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.plumber-footer-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left;
}
.plumber-footer-brand p {
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 380px;
}
/* Footer contact info block */
.plumber-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.plumber-footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 1.05em;
    line-height: 1.5;
}
.plumber-footer-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.plumber-footer-info-item a {
    display: inline !important;
    color: rgba(255,255,255,0.75) !important;
    padding: 0 !important;
    font-size: 1em !important;
    transition: color 0.2s;
}
.plumber-footer-info-item a:hover {
    color: #E8892F !important;
}
/* Hours - Google Business style */
.plumber-footer-hours-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.plumber-hours-badge {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    width: fit-content;
}
.plumber-hours-table {
    border-collapse: collapse;
    font-size: 0.8em;
    color: rgba(255,255,255,0.6);
    display: table !important;
    overflow: visible !important;
    max-width: none !important;
}
.plumber-hours-table td {
    padding: 3px 0;
}
.plumber-hours-table td:first-child {
    padding-right: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.plumber-footer-info-item.plumber-footer-hours {
    align-items: flex-start;
}
.plumber-footer-info-item.plumber-footer-hours svg {
    margin-top: 4px;
}
/* Big phone CTA in footer */
.plumber-footer-big-phone {
    display: inline-block;
    background: #E8892F;
    color: #fff !important;
    padding: 14px 35px !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 1.4em !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(232,137,47,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}
.plumber-footer-big-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,137,47,0.5);
    color: #fff !important;
}
/* Footer map - full width under columns */
.plumber-footer-map {
    max-width: 1400px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
}

.plumber-footer-col h4 {
    color: #fff;
    font-weight: 700;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
}
.plumber-footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 5px 0;
    font-size: 0.95em;
    transition: color 0.2s;
}
.plumber-footer-col a:hover {
    color: #E8892F;
}
.plumber-footer-col p {
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 8px 0 0;
}
.plumber-footer-contact-bar {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.plumber-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E8892F;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
}
.plumber-footer-contact-bar span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9em;
}
.plumber-footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.plumber-footer-bottom p {
    margin: 0;
    font-size: 0.85em;
    color: rgba(255,255,255,0.4);
}
.plumber-footer-credit {
    margin-top: 8px !important;
}
.plumber-footer-credit a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.plumber-footer-credit a:hover {
    color: #E8892F;
}

/* ── Footer tablet ── */
@media (max-width: 1024px) {
    .plumber-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
/* ── Footer mobile ── */
@media (max-width: 600px) {
    .plumber-footer {
        padding: 40px 20px 0;
    }
    .plumber-footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .plumber-footer-contact-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .plumber-footer-big-phone {
        font-size: 1.2em !important;
        padding: 12px 25px !important;
        display: block;
    }
    .plumber-footer-map iframe {
        height: 180px;
    }
}

/* ── Admin bar ── */
.admin-bar .plumber-header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .plumber-header {
        top: 46px;
    }
}

/* ═══════════════════════════════════════
   KADENCE OVERRIDES — full-bleed layout
   ═══════════════════════════════════════ */

/* Kill ALL Kadence width constraints */
.site,
.site-container,
.content-container,
.content-container.site-container,
.content-wrap,
.content-area,
.entry-content-wrap,
.entry.single-entry,
.entry.content-bg {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.content-area {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.entry-content-wrap {
    padding: 0 !important;
}

.entry.single-entry {
    box-shadow: none !important;
}

/* Ensure plumber-page is full width */
.plumber-page {
    width: 100%;
}

/* No top margin on first section (hero goes behind header) */
.plumber-page > section:first-child,
.entry-content > .plumber-page > section:first-child {
    margin-top: 0 !important;
}

body {
    padding-top: 0 !important;
}

/* Mobile titles smaller */
@media (max-width: 900px) {
    .plumber-page h2,
    .single-content h2,
    .entry-content h2 { font-size: 1.6em !important; }

    /* Hero: image au-dessus du texte */
    .hero-inner {
        flex-direction: column-reverse !important;
    }
    .hero-inner > div {
        min-width: 0 !important;
    }

    /* Grilles services/outils: 1 colonne */
    .entry-content div[style*="minmax(350px"],
    .outils-cards {
        grid-template-columns: 1fr !important;
    }

    /* Sections flex image+texte: empiler verticalement, image d'abord */
    .entry-content div[style*="flex:0 0 420px"],
    .entry-content div[style*="flex:0 0 380px"],
    .entry-content div[style*="flex:0 0 280px"] {
        flex: 1 1 100% !important;
        order: -1 !important;
    }
    .methode-right {
        flex: 1 1 100% !important;
        min-height: 300px !important;
        order: -1 !important;
    }
    .tarifs-img {
        flex: 1 1 100% !important;
        min-height: 250px !important;
        order: -1 !important;
    }
    .tarifs-content {
        flex: 1 1 100% !important;
    }

    /* Empêcher min-width de déborder — grands blocs layout seulement */
    .entry-content div[style*="flex:1;min-width:320px"],
    .entry-content div[style*="flex:1;min-width:300px"],
    .entry-content div[style*="flex:1;min-width:350px"],
    .entry-content div[style*="flex:1; min-width:320px"],
    .entry-content div[style*="flex:1; min-width:300px"] {
        min-width: 0 !important;
    }

    /* Flex parents: forcer wrap en colonne */
    .entry-content div[style*="display:flex"][style*="flex-wrap:wrap"][style*="gap:40px"] {
        flex-direction: column !important;
    }
}
@media (max-width: 600px) {
    .plumber-page h2,
    .single-content h2,
    .entry-content h2 { font-size: 1.4em !important; }
    .plumber-page h3,
    .single-content h3,
    .entry-content h3 { font-size: 1.05em !important; }
}

/* Hide leftover Kadence header/footer if any */
#masthead,
.site-header:not(.plumber-header) {
    display: none !important;
}
#colophon,
.site-footer:not(.plumber-footer) {
    display: none !important;
}
.cf7-devis-wrap {
    padding-bottom: 10px !important;
}

/* ═══════════════════════════════════════
   LARGE SCREENS — scale up for 1600px+
   ═══════════════════════════════════════ */

/* Increase max-width on large screens */
@media (min-width: 1600px) {
    .plumber-header-inner,
    .plumber-footer-inner,
    .plumber-footer-contact-bar {
        max-width: 1600px;
    }
    .entry-content div[style*="max-width:1400px"],
    .entry-content div[style*="max-width: 1400px"] {
        max-width: 1600px !important;
    }
    .entry-content section > div:first-child {
        max-width: 1600px !important;
    }
    .hero-inner {
        max-width: 1600px !important;
    }
    /* Scale up typography */
    .entry-content h1 {
        font-size: clamp(2.8em, 3.5vw, 4.5em) !important;
    }
    .entry-content h2 {
        font-size: clamp(1.5em, 2vw, 2.2em) !important;
    }
    .entry-content h3 {
        font-size: clamp(1.15em, 1.5vw, 1.5em) !important;
    }
    /* Scale paddings */
    .entry-content section {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
    .plumber-header-inner {
        padding: 14px 40px;
    }
    .plumber-footer {
        padding: 70px 50px 0;
    }
    /* Mega menu wider */
    .plumber-mega-item {
        height: 190px;
    }
}

/* Ultra-wide: 1920px+ (Full HD and above) */
@media (min-width: 1920px) {
    .plumber-header-inner,
    .plumber-footer-inner,
    .plumber-footer-contact-bar {
        max-width: 1800px;
    }
    .entry-content div[style*="max-width:1400px"],
    .entry-content div[style*="max-width: 1400px"] {
        max-width: 1800px !important;
    }
    .entry-content section > div:first-child {
        max-width: 1800px !important;
    }
    .hero-inner {
        max-width: 1800px !important;
    }
    .entry-content section {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .plumber-header-inner {
        padding: 16px 50px;
    }
    .plumber-nav a,
    .plumber-dropdown-toggle {
        font-size: 1.05em;
        padding: 10px 16px;
    }
    .plumber-header-cta {
        padding: 12px 28px;
        font-size: 1.05em;
    }
    .plumber-logo-img,
    .logo-color {
        height: 65px;
    }
    .plumber-logo {
        height: 65px;
    }
    .plumber-mega-item {
        height: 210px;
    }
    .plumber-mega-label {
        font-size: 1em;
        padding: 16px 20px;
    }
    .plumber-footer-inner {
        gap: 60px;
    }
    .plumber-footer-logo {
        height: 55px;
    }
}

/* 2K+ screens (2560px) */
@media (min-width: 2560px) {
    .plumber-header-inner,
    .plumber-footer-inner,
    .plumber-footer-contact-bar {
        max-width: 2200px;
    }
    .entry-content div[style*="max-width:1400px"],
    .entry-content div[style*="max-width: 1400px"] {
        max-width: 2200px !important;
    }
    .entry-content section > div:first-child {
        max-width: 2200px !important;
    }
    .hero-inner {
        max-width: 2200px !important;
    }
    .entry-content h1 {
        font-size: clamp(3.5em, 3.8vw, 5.5em) !important;
    }
    .entry-content h2 {
        font-size: clamp(2em, 2.2vw, 2.8em) !important;
    }
    .entry-content p,
    .entry-content li {
        font-size: clamp(1em, 1.1vw, 1.3em) !important;
    }
    .plumber-nav a,
    .plumber-dropdown-toggle {
        font-size: 1.15em;
        padding: 12px 20px;
    }
    .plumber-header-cta {
        padding: 14px 32px;
        font-size: 1.15em;
    }
    .plumber-logo-img,
    .logo-color {
        height: 75px;
    }
    .plumber-logo {
        height: 75px;
    }
    .plumber-mega-item {
        height: 240px;
    }
    .plumber-footer {
        padding: 90px 80px 0;
    }
    .plumber-footer-col a {
        font-size: 1.1em;
        padding: 7px 0;
    }
    .plumber-footer-col h4 {
        font-size: 1em;
    }
    .plumber-footer-logo {
        height: 65px;
    }
}
