/* ============================================
   Gas First Theme - Main Stylesheet
   ============================================ */

/* Desktop Menu - Default */
.nav-menu {
    display: block;
}

.hamburger {
    display: none;
}

.nav-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

/* Desktop Dropdown Sub-menu */
.nav-links li {
    position: relative;
}

.nav-links .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 1001;
}

.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.nav-links .sub-menu a:hover {
    background: #FFF7ED;
    color: #F97316;
}

/* Mobile overlay backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.nav-overlay.active {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: white;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        overflow-y: auto;
        padding-top: 70px;
    }

    .nav-menu.active {
        display: block;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .nav-links {
        flex-direction: column;
        padding: 16px 0;
        gap: 0;
    }

    /* Top-level items */
    .nav-links > li > a,
    .nav-links > li > span.mobile-parent {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #0F172A;
        text-decoration: none;
        border-bottom: 1px solid #F1F5F9;
        cursor: pointer;
    }

    .nav-links > li > a .arrow,
    .nav-links > li > .mobile-parent .arrow {
        font-size: 12px;
        transition: transform 0.2s;
        display: inline-block;
    }

    .nav-links > li.open > a .arrow,
    .nav-links > li.open > .mobile-parent .arrow {
        transform: rotate(180deg);
    }
    
    .nav-links li {
        width: 100%;
    }

    /* Mobile sub-menu: collapsed by default, expand on .open */
    .sub-menu {
        display: none;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #F8FAFC;
        padding: 4px 0;
        margin: 0;
    }

    .nav-links > li.open > .sub-menu {
        display: block;
    }

    .sub-menu li a {
        display: block;
        padding: 11px 24px 11px 36px;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        text-decoration: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .sub-menu li a:hover {
        color: #F97316;
        background: #FFF7ED;
    }
}

/* Force logo size */
.custom-logo,
.custom-logo-link img.custom-logo,
.logo a img.custom-logo,
img.custom-logo {
    max-height: 50px !important;
    width: auto !important;
}

/* Also target any inline style WordPress might add */
.custom-logo-link {
    max-height: 50px !important;
    display: inline-block !important;
}

.emergency-tag {
    color: white !important;
}

/* Top Bar - Force visibility */
.top-bar {
    background: #0F172A !important;
    padding: 10px 0 !important;
}

.emergency-tag {
    color: white !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.top-phone {
    color: #F97316 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

.top-phone:hover {
    color: #fb923c !important;
}

/* ========== FOOTER FIX ========== */

.footer {
    background: #0F172A !important;
    padding: 60px 0 20px !important;
    color: #9ca3af !important;
}

.footer .logo-text {
    color: white !important;
}

.footer-desc {
    color: #9ca3af !important;
}

.footer-phone, .footer-email, .footer-location {
    color: #9ca3af !important;
}

.footer-phone a, .footer-email a {
    color: #F97316 !important;
    text-decoration: none !important;
}

.footer-phone a:hover, .footer-email a:hover {
    color: #fb923c !important;
}

.footer-col h4 {
    color: white !important;
    margin-bottom: 20px !important;
    font-size: 18px !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
}

.footer-col li {
    margin-bottom: 10px !important;
}

.footer-col a {
    color: #9ca3af !important;
    text-decoration: none !important;
}

.footer-col a:hover {
    color: #F97316 !important;
}

.footer-bottom {
    border-top: 1px solid #1e293b !important;
    padding-top: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
}

.footer-bottom p {
    color: #9ca3af !important;
}

.footer-actions span {
    color: #9ca3af !important;
}

/* ============================================================
   CREDENTIALS SECTION
   ============================================================ */
.credentials-section {
    background: #0F172A !important;
    padding: 56px 0 !important;
}
.credentials-header {
    text-align: center;
    margin-bottom: 36px;
}
.credentials-header h2 {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 8px !important;
}
.credentials-header p {
    color: #94a3b8 !important;
    margin: 0 !important;
    font-size: 15px;
}
.credentials-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}
.credential-item {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    border-radius: 10px !important;
    padding: 24px 20px !important;
    text-align: center !important;
    flex: 1 !important;
    min-width: 150px !important;
    max-width: 195px !important;
}
.credential-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.credential-label {
    color: #94a3b8 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 6px !important;
}
.credential-value {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
}
.credential-sub {
    color: #64748b !important;
    font-size: 12px !important;
    margin-top: 4px !important;
}
.credential-verify {
    display: inline-block !important;
    margin-top: 10px !important;
    color: #F97316 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.credential-verify:hover {
    text-decoration: underline !important;
}
@media (max-width: 768px) {
    .credentials-grid {
        gap: 12px !important;
    }
    .credential-item {
        flex: none !important;
        width: calc(50% - 6px) !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}
.footer-actions {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
}
.footer-actions a {
    color: #F97316 !important;
    text-decoration: none !important;
}
.footer-actions a:hover {
    text-decoration: underline !important;
}
/* ============================================================
   FOOTER — two-column areas list + service group headings
   ============================================================ */
.footer-areas-2col {
    column-count: 2;
    column-gap: 24px;
}
.footer-areas-2col li {
    break-inside: avoid;
}
.footer-svc-group {
    margin: 14px 0 6px;
}
.footer-svc-group:first-of-type {
    margin-top: 0;
}
.footer-svc-group a {
    color: #fff;
}

/* Services — two groups side by side, each heading kept with its list */
.footer-svc-cols {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-svc-col {
    flex: 1 1 140px;
    min-width: 140px;
}
/* ============================================================
   FOOTER — two-column areas list + service group headings
   ============================================================ */
.footer-areas-2col {
    column-count: 2;
    column-gap: 24px;
}
.footer-areas-2col li {
    break-inside: avoid;
}
.footer-svc-group {
    margin: 14px 0 6px;
}
.footer-svc-group:first-of-type {
    margin-top: 0;
}
.footer-svc-group a {
    color: #fff;
}
/* ========== REPLACED CRITICAL FIX ========== */
/* Base text colors - light backgrounds only */
body, p, li, .section-header p, .trust-card p, .service-card p, .feature-row p, .review-text, .faq-answer, .seo-text p {
    color: #111827;
}

/* Keep hero text white */
.hero h1, 
.hero .emergency-badge, 
.hero .hero-desc, 
.hero .badge,
.hero .btn-outline-white {
    color: white !important;
}
.hero .hero-desc {
    color: rgba(255,255,255,0.7) !important;
}

/* Keep footer text gray/white */
.footer, .footer-desc, .footer-bottom p, .footer-col li, .footer-col p {
    color: #9ca3af !important;
}
.footer-col h4 {
    color: white !important;
}

/* Keep emergency banner text white */
.emergency-text h3, .emergency-text p, .emergency-banner .btn-navy {
    color: white !important;
}

/* Keep stars yellow */
.stars, .review-card .stars {
    color: #fbbf24 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-orange {
    background: #F97316;
    color: white;
}

.btn-orange:hover {
    background: #ea580c;
}

.btn-outline-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: #0F172A;
}

/* Hero outline buttons: keep text/icon readable on hover (beats .hero{color:white!important}) */
.hero .btn-outline-white:hover { background:#fff !important; border-color:#fff !important; color:#0F172A !important; }
.hero .btn-outline-white:hover .gf-ico { color:#0F172A !important; }

.btn-navy {
    background: #0F172A;
    color: white;
}

.btn-outline-orange {
    border-color: #F97316;
    color: #F97316;
    background: transparent;
}

.btn-outline-orange:hover {
    background: #F97316;
    color: white;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.hero {
    background:
        radial-gradient(1200px 400px at 80% -10%, rgba(249,115,22,0.18), transparent 60%),
        linear-gradient(160deg, #0F172A 0%, #16243f 100%);
    padding: 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* min-width:0 lets the left column wrap the trust-badges instead of blowing
   out to one line and squashing the hero photo into a 400px sliver */
.hero-content {
    min-width: 0;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #F97316;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
    color: white;
    font-size: 56px;
    margin-bottom: 20px;
}

.orange-text {
    color: #F97316;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 13px;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    aspect-ratio: 4 / 3;
    min-height: 300px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.shield-icon {
    font-size: 32px;
}

.emergency-banner {
    background: #F97316;
    padding: 40px 0;
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.warning-icon {
    font-size: 40px;
}

.emergency-text .emergency-heading {
    color: white;
    font-size: 24px;
    margin-bottom: 4px;
}

.emergency-text p {
    color: rgba(255,255,255,0.9);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0F172A;
}

.section-header p {
    color: #4b5563;
    font-size: 18px;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin: 16px 0;
}

.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: #F97316;
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0F172A;
}

.trust-card p {
    color: #6b7280;
}

.bg-light {
    background: #F8FAFC;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #F97316;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.service-icon.red { background: #fee2e2; color: #dc2626; }
.service-icon.orange { background: #ffedd5; color: #F97316; }
.service-icon.amber { background: #fef3c7; color: #d97706; }
.service-icon.green { background: #dcfce7; color: #10b981; }
.service-icon.blue { background: #dbeafe; color: #3b82f6; }
.service-icon.cyan { background: #cffafe; color: #06b6d4; }

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0F172A;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.service-link {
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #0F172A;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
}

.feature-row h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0F172A;
}

.feature-row p {
    color: #6b7280;
}

.why-image {
    display: block;
    width: 100%;
    padding-top: 133%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.why-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.brands-section {
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.brand-pill {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 12px 8px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s;
}

.brand-pill:hover {
    border-color: #F97316;
    background: #fff7ed;
}

.areas-section {
    padding: 80px 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.area-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.area-card:hover {
    border-color: #F97316;
    transform: translateY(-3px);
}

.pin-icon {
    margin-right: 8px;
}

.text-center {
    text-align: center;
}

.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
}

.quote-icon {
    font-size: 56px;
    color: rgba(249, 115, 22, 0.2);
    font-family: serif;
}

.review-text {
    font-style: italic;
    color: #374151;
    margin: 16px 0;
}

.reviewer {
    color: #0F172A;
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 16px;
}

.faq-question {
    padding: 20px;
    background: #F8FAFC;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #6b7280;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.seo-content {
    padding: 80px 0;
}

.seo-text h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #0F172A;
}

.seo-text p {
    margin-bottom: 20px;
    color: #4b5563;
}

.final-cta {
    background: #0F172A;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    flex-direction: row !important;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 12px;
    box-sizing: border-box;
}

.mobile-btn {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.mobile-btn-orange {
    background: #F97316 !important;
    color: white !important;
}

.mobile-btn-orange:hover,
.mobile-btn-orange:active,
.mobile-btn-orange:focus {
    background: #EA6C0A !important;
    color: white !important;
}

.mobile-btn-navy {
    background: #0F172A !important;
    color: white !important;
}

.mobile-btn-navy:hover,
.mobile-btn-navy:active,
.mobile-btn-navy:focus {
    background: #1E293B !important;
    color: white !important;
}

/* Ensure service pages use full width */
.service-page-content .trust-section,
.service-page-content .areas-section,
.service-page-content .faq-section,
.service-page-content .booking-section {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-grid, .why-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; }
    .trust-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
    .brands-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 16px; }
    .mobile-sticky-bar { display: flex !important; flex-direction: row !important; align-items: center !important; }
    .emergency-content { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; }
}

/* Force override - check the actual parent width */
.areas-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.areas-section .container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Force full width backgrounds for service pages */
.service-page-content .trust-section {
    background: white !important;
    width: 100% !important;
}

/* ========== FIXED Edge Link Colors ========== */
/* Removed .top-phone from the list so it stays orange */
a,
.nav-links a,
.area-card,
.footer a {
    color: #0F172A !important;
}

a:hover,
.nav-links a:hover,
.area-card:hover,
.footer a:hover {
    color: #F97316 !important;
}

/* Keep phone number orange - this now works because .top-phone isn't overridden above */
.top-phone,
.footer-phone a,
.footer-email a {
    color: #F97316 !important;
}

.service-page-content .areas-section {
    background: #F8FAFC !important;
    width: 100% !important;
}

.service-page-content .faq-section {
    background: white !important;
    width: 100% !important;
}

.service-page-content .booking-section {
    background: #F8FAFC !important;
    width: 100% !important;
}

.service-page-content .trust-section .container,
.service-page-content .areas-section .container,
.service-page-content .faq-section .container,
.service-page-content .booking-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* FORCE 4 COLUMNS - MUST BE LAST */
.service-page-content .areas-grid,
.areas-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
}

.service-page-content .area-card,
.area-card {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.areas-grid br {
    display: none !important;
}
/* ========== FINAL FORCED FIXES ========== */

/* 1. Top bar phone - FORCE ORANGE */
.top-bar a[href="tel:07724566154"],
.top-bar a[href^="tel"],
div.top-bar a,
.top-phone,
.top-bar .top-phone {
    color: #F97316 !important;
    font-weight: 700 !important;
    background: transparent !important;
    text-decoration: none !important;
}

/* 2. Footer service & area links - FORCE VISIBLE LIGHT GRAY */
.footer-col ul li a,
.footer-col a,
.footer-bottom a,
.footer .footer-col a,
.footer .footer-bottom a {
    color: #9ca3af !important;
    background: transparent !important;
}

/* 3. Footer links on hover - orange */
.footer-col ul li a:hover,
.footer-col a:hover,
.footer-bottom a:hover {
    color: #F97316 !important;
}

/* 4. Keep phone/email in footer orange */
.footer-phone a,
.footer-email a {
    color: #F97316 !important;
}

/* 5. Ensure footer text is visible */
.footer-col p,
.footer-col li,
.footer-desc,
.footer-bottom p {
    color: #9ca3af !important;
}

/* 6. Keep footer headings white */
.footer-col h4 {
    color: white !important;
}
/* ========== FOOTER 4 COLUMNS (Desktop) ========== */
.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
}

/* Tablet: 2 columns */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* ========== CHANGE "Areas" HEADING TO "Areas Covered" ========== */
/* This hides the original "Areas" text and adds "Areas Covered" */
.footer-col:last-child h4 {
    font-size: 0 !important;  /* Hide original text */
    position: relative;
}
.footer-col:last-child h4::before {
    content: "Areas Covered" !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    visibility: visible !important;
    display: inline-block !important;
}
/* Fix final CTA buttons (Request Quote & WhatsApp) */
.final-cta .btn-outline-white {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}
.final-cta .btn-outline-white:hover {
    background: white !important;
    color: #0F172A !important;
    border-color: white !important;
}
/* ========== BLOG ARCHIVE GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #F97316;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.03);
}

.blog-thumbnail.placeholder {
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #9ca3af;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: #0F172A;
    text-decoration: none;
}

.blog-title a:hover {
    color: #F97316;
}

.blog-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-excerpt {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.blog-pagination {
    text-align: center;
    margin: 40px 0 20px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-decoration: none;
    color: #0F172A;
}

.blog-pagination .page-numbers.current {
    background: #F97316;
    border-color: #F97316;
    color: white;
}

.blog-pagination .page-numbers:hover:not(.current) {
    background: #F8FAFC;
    border-color: #F97316;
}

/* Tablet: 2 columns */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== HERO BUTTONS — one line on desktop, stack on mobile ========== */
/* The hero is a half-width column on desktop, so three pills + padding + gaps
   overflow the row and the third ("Get a Free Quote") wraps. Tighten the gap
   and stop the pills growing/shrinking oddly so all three fit on one line.   */
.hero-buttons {
    flex-wrap: nowrap;          /* keep them on one row at desktop */
    gap: 12px;                  /* was 16px — buys back horizontal room */
    align-items: center;
}

.hero-buttons .btn {
    flex: 0 0 auto;             /* size to content, don't grow or shrink */
    white-space: nowrap;        /* never break a label across lines */
    padding-left: 22px;         /* trim the 28px default a touch */
    padding-right: 22px;
}

.hero-buttons .btn-large {
    padding-left: 24px;         /* trim the 32px .btn-large default */
    padding-right: 24px;
}

/* Tablet and below: allow wrapping again, and let them go full width so the
   labels stay tappable rather than getting squeezed. */
@media (max-width: 1024px) {
    .hero-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== HERO TRUST BADGES — one line on desktop ========== */
/* Four pills (Gas Safe / Fully Insured / Same-Day / Local Engineers) sit in
   the half-width hero column, so the fourth wraps. Tighten gap, padding and
   font so all four fit on one row without overflowing.                      */
.trust-badges {
    flex-wrap: nowrap;
    gap: 8px;                   /* was 16px */
    align-items: center;
}

.trust-badges .badge {
    flex: 0 0 auto;             /* size to content, no grow/shrink */
    white-space: nowrap;        /* never break a label */
    padding: 7px 12px;          /* was 8px 16px */
    font-size: 12px;            /* was 13px */
}

/* Tablet and below: let them wrap rather than overflow on the narrower column. */
@media (max-width: 1024px) {
    .trust-badges {
        flex-wrap: wrap;
    }
}
/* ============================================================
   GAS FIRST — Template page styles (gf-)
   Append to the END of assets/css/main.css.
   Matches the homepage navy/orange / Poppins+Inter system.
   Covers: service, location, brand, guide, intersection templates.
   ============================================================ */

/* Width wrapper — matches the inline values used in header.php's
   .container (max-width:1280px; centered; 24px gutters). Defining it
   here means the gf- sections are constrained without inline styles. */
.gf-hero .container,
.gf-emergency .container,
.gf-zig .container,
.gf-faqs .container,
.gf-related .container,
.gf-testimonials .container,
.gf-booking .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---------- HERO ---------- */
.gf-hero {
    background: #0F172A;
    padding: 44px 0;
}
.gf-hero-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 38px;
    align-items: start;
}
.gf-hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249,115,22,.15);
    color: #F97316;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.gf-hero-tag-dot {
    width: 8px; height: 8px;
    background: #F97316; border-radius: 50%;
    display: inline-block;
}
.gf-hero-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 14px;
}
.gf-hero-title .gf-accent { color: #F97316; }
.gf-hero-sub {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 560px;
}
.gf-hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
.gf-hero-buttons .gf-btn { white-space: nowrap; }

/* Hero credibility card */
.gf-hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.gf-card-logo {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gf-card-logo img {
    max-height: 54px;
    width: auto;
    display: block;
}
.gf-card-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; }
.gf-card-rating {
    color: #fff;
    font-size: 13px;
    margin: 3px 0 16px;
}
.gf-card-rating span { color: rgba(255,255,255,.6); }
.gf-card-review-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s;
}
.gf-card-review-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.gf-card-call {
    display: block;
    background: #F97316;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}
.gf-card-call:hover { background: #ea580c; color:#fff; }

/* Hero trust pills (full-width row under both columns) */
.gf-hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 26px;
}
.gf-hero-pills .gf-pill {
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    white-space: nowrap;
}

/* ---------- EMERGENCY BANNER ---------- */
.gf-emergency {
    background: #F97316;
    padding: 18px 0;
}
.gf-emergency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.gf-emergency-text { display: flex; align-items: center; gap: 14px; }
.gf-emergency-icon { font-size: 28px; }
.gf-emergency-text h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px;
}
.gf-emergency-text p { color: rgba(255,255,255,.92); font-size: 13px; margin: 0; }
.gf-emergency-call {
    background: #0F172A;
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}
.gf-emergency-call:hover { background: #1e293b; color:#fff; }

/* ---------- ZIGZAG BODY SECTIONS ---------- */
.gf-zig {
    background: #fff;
    padding: 56px 0;
    border-bottom: 1px solid #eef0f3;
}
.gf-zig:last-of-type { border-bottom: none; }
.gf-zig-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.gf-zig-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F97316;
    margin-bottom: 6px;
}
.gf-zig h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
}
.gf-zig p { color: #475569; font-size: 17px; line-height: 1.7; margin: 0; }
.gf-zig-tile {
    border-radius: 14px;
    min-height: 165px;
    background: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gf-zig-tile svg { width: 80px; height: 80px; }
/* Alternate side: even sections put the tile first (visual-left) */
.gf-zig.gf-zig-alt .gf-zig-text { order: 2; }
.gf-zig.gf-zig-alt .gf-zig-tile { order: 1; }

/* ---------- FAQ ---------- */
.gf-faqs { background: #fff; padding: 56px 0; border-top: 1px solid #eef0f3; }
.gf-faqs > .container > h2,
.gf-faqs h2.gf-faqs-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 32px;
    text-align: center;
}
.gf-accordion { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.gf-acc-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.gf-acc-item[open] { border-left: 3px solid #F97316; }
.gf-acc-q {
    list-style: none;
    cursor: pointer;
    padding: 15px 18px;
    font-weight: 600;
    font-size: 14px;
    color: #0F172A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gf-acc-q::-webkit-details-marker { display: none; }
.gf-acc-q::after { content: "+"; color: #F97316; font-size: 18px; }
.gf-acc-item[open] .gf-acc-q::after { content: "\2212"; }
.gf-acc-a { padding: 0 18px 16px; color: #475569; font-size: 14px; line-height: 1.7; }

/* ---------- RELATED PILLS ---------- */
.gf-related { background: #F8FAFC; padding: 28px 0; border-top: 1px solid #eef0f3; }
.gf-related h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
}
.gf-related-list { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.gf-related-list a {
    display: inline-block;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    color: #0F172A;
    text-decoration: none;
}
.gf-related-list a:hover { border-color: #F97316; color: #F97316; }

/* ---------- TESTIMONIALS ---------- */
.gf-testimonials { background: #F8FAFC; padding: 40px 0; border-top: 1px solid #eef0f3; }
.gf-testimonials-head { text-align: center; margin-bottom: 26px; }
.gf-testimonials-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 8px;
}
.gf-testimonials-head .gf-t-stars { color: #fbbf24; font-size: 18px; }
.gf-testimonials-head p { color: #4b5563; font-size: 14px; margin: 4px 0 0; }
.gf-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gf-t-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 24px; }
.gf-t-quote { font-size: 44px; color: rgba(249,115,22,.2); font-family: serif; line-height: .6; height: 22px; }
.gf-t-card .gf-t-cardstars { color: #fbbf24; font-size: 15px; margin-bottom: 10px; }
.gf-t-text { color: #374151; font-size: 13.5px; line-height: 1.6; font-style: italic; margin: 0 0 14px; }
.gf-t-author { color: #0F172A; font-size: 12.5px; margin: 0; }

/* ---------- BOOKING SECTION ---------- */
.gf-booking { background: #0F172A; padding: 40px 0; }
.gf-booking-head { text-align: center; margin-bottom: 22px; }
.gf-booking-head h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}
.gf-booking-head p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; }

/* ---------- SHARED BUTTONS (reuse homepage palette) ---------- */
.gf-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13.5px;
    border: 2px solid transparent;
}
.gf-btn-orange { background: #F97316; color: #fff; padding: 11px 18px; }
.gf-btn-orange:hover { background: #ea580c; color:#fff; }
.gf-btn-outline { border-color: rgba(255,255,255,.5); color: #fff; padding: 9px 18px; background: transparent; }
.gf-btn-outline:hover { background: #fff; color: #0F172A; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .gf-hero-pills { flex-wrap: wrap; }
    .gf-hero-buttons { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .gf-hero-grid { grid-template-columns: 1fr; }
    .gf-hero-card { max-width: 360px; }
    .gf-zig-inner { grid-template-columns: 1fr; }
    /* On mobile always show tile above text, regardless of alt */
    .gf-zig .gf-zig-tile { order: 1 !important; }
    .gf-zig .gf-zig-text { order: 2 !important; }
    .gf-testimonials-grid { grid-template-columns: 1fr; }
    .gf-emergency-inner { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 480px) {
    .gf-hero-title { font-size: 28px; }
    .gf-hero-buttons { flex-direction: column; align-items: stretch; }
    .gf-hero-buttons .gf-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SPECIFICITY OVERRIDES
   The existing main.css has h1/button rules that beat the gf-
   classes (same or higher specificity, loaded earlier). These
   scoped !important rules re-assert the hero colours WITHOUT
   touching anything outside .gf-hero / gf- buttons.
   ============================================================ */

/* Heading must be white on the navy hero (beats generic h1 colour) */
.gf-hero .gf-hero-title { color: #fff !important; }
.gf-hero .gf-hero-title .gf-accent { color: #F97316 !important; }
.gf-hero .gf-hero-sub { color: rgba(255,255,255,.72) !important; }

/* Button text colours (beat existing .btn / a colour rules) */
.gf-hero .gf-btn-orange,
.gf-booking .gf-btn-orange,
a.gf-btn.gf-btn-orange { color: #fff !important; background: #F97316 !important; }
.gf-hero .gf-btn-outline,
a.gf-btn.gf-btn-outline { color: #fff !important; border-color: rgba(255,255,255,.5) !important; background: transparent !important; }
.gf-hero .gf-btn-outline:hover,
a.gf-btn.gf-btn-outline:hover { background: #fff !important; color: #0F172A !important; }

/* Card call + emergency call button text */
.gf-hero-card .gf-card-call { color: #fff !important; background: #F97316 !important; }
.gf-emergency .gf-emergency-call { color: #fff !important; background: #0F172A !important; }

/* Pills: keep on one line on desktop; allow wrap only below 1024px.
   Reduced padding/font so all five fit the row at full width. */
.gf-hero-pills { flex-wrap: nowrap !important; }
.gf-hero-pills .gf-pill {
    padding: 7px 11px !important;
    font-size: 11px !important;
}
@media (max-width: 1024px) {
    .gf-hero-pills { flex-wrap: wrap !important; }
}
/* ============================================================
   SERVICE HUB — card grid (page-service-hub.php)
   Reuses the navy/orange system; matches the old .detail-card look.
   ============================================================ */
.gf-hub-services {
    padding: 72px 0;
    background: #F8FAFC;
}
.gf-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}
.gf-hub-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gf-hub-card:hover {
    border-color: #F97316;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.gf-hub-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #0F172A;
    margin: 0 0 12px;
}
.gf-hub-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex-grow: 1;
}
.gf-hub-price {
    color: #F97316;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}
.gf-hub-price-note {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 16px;
}
.gf-hub-price + .gf-btn { margin-top: 14px; }
.gf-hub-card .gf-btn { align-self: flex-start; }

/* Service-page price block (sections.php) */
.gf-price-block {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #F97316;
    border-radius: 10px;
    padding: 14px 20px;
    margin: 4px 0 8px;
}
.gf-price-block .gf-price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F97316;
}
.gf-price-block .gf-price-note {
    color: #9ca3af;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .gf-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .gf-hub-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   CONTACT PAGE — info cards + form (moved out of template)
   ============================================================ */
.gf-contact-wrap { padding: 56px 0; background: #F8FAFC; }
.gf-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.gf-contact-info { display: flex; flex-direction: column; gap: 16px; }
.gf-ci-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.gf-ci-icon { font-size: 26px; line-height: 1; }
.gf-ci-card h4 { margin: 0 0 4px; font-family: 'Poppins', sans-serif; color: #0F172A; font-size: 16px; }
.gf-ci-card a { color: #F97316; text-decoration: none; font-weight: 600; }
.gf-ci-card p { margin: 2px 0 0; color: #64748B; font-size: 14px; }
.gf-ci-areas { line-height: 1.9; }
.gf-ci-areas a { color: #F97316; text-decoration: none; font-weight: 600; }
.gf-ci-areas a:hover { text-decoration: underline; }

/* Contact form (rendered by the [gasfirst_contact_form] shortcode) */
.gf-contact-form-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 18px; padding: 32px; }
.gf-contact-form-card h3 { margin: 0 0 6px; font-family: 'Poppins', sans-serif; color: #0F172A; }
.gf-cf-sub { margin: 0 0 20px; color: #64748B; font-size: 14px; }
.gf-cf-row { margin-bottom: 14px; }
.gf-cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gf-contact-form-card input, .gf-contact-form-card select, .gf-contact-form-card textarea {
	width: 100%; padding: 13px 14px; border: 1px solid #CBD5E1; border-radius: 10px;
	font-size: 15px; font-family: inherit; color: #0F172A; background: #fff; box-sizing: border-box;
}
.gf-contact-form-card input:focus, .gf-contact-form-card select:focus, .gf-contact-form-card textarea:focus {
	outline: none; border-color: #F97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.gf-cf-submit {
	width: 100%; padding: 15px; background: #F97316; color: #fff; border: none;
	border-radius: 50px; font-weight: 700; font-size: 16px; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.gf-cf-submit:hover { background: #ea6a0c; }
.gf-cf-trust { text-align: center; color: #94A3B8; font-size: 12px; margin: 14px 0 0; }
.gf-cf-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; padding: 14px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; }
.gf-cf-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; padding: 14px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; }
.gf-cf-hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
@media (max-width: 860px) {
	.gf-contact-grid { grid-template-columns: 1fr; }
	.gf-cf-2col { grid-template-columns: 1fr; }
}

.gf-cf-msg { display: none; }
/* ============================================================
   SINGLE BLOG POST — hero with featured image, styled article
   ============================================================ */

/* Featured image in the hero (right side, replacing the logo card) */
.gf-post-hero-image {
	border-radius: 14px;
	overflow: hidden;
	height: 220px;
	background: #1e293b;
	border: 1px solid rgba(255,255,255,0.08);
	width: 100%;
	display: block;
}
.gf-post-hero-image img,
.gf-post-hero-image a img,
section.gf-hero .gf-post-hero-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	margin: 0 !important;
	border-radius: 0 !important;
}
/* When a post has no featured image, hero text goes full width */
.gf-post-hero-solo { display: block; }
.gf-post-hero-solo .gf-hero-main { max-width: 820px; }

/* Article body */
.gf-single { padding: 32px 0 8px; background: #fff; }
.gf-single-inner { max-width: 850px; margin: 0; }
.gf-single-content { color: #334155; font-size: 17px; line-height: 1.8; }
.gf-single-content p { margin: 0 0 20px; }
.gf-single-content h2 { font-family: 'Poppins', sans-serif; color: #0F172A; font-size: 25px; margin: 36px 0 14px; }
.gf-single-content h3 { font-family: 'Poppins', sans-serif; color: #0F172A; font-size: 20px; margin: 28px 0 12px; }
.gf-single-content ul, .gf-single-content ol { margin: 0 0 20px; padding-left: 22px; }
.gf-single-content li { margin: 0 0 8px; }
.gf-single-content a { color: #F97316; text-decoration: underli
/* ============================================================
   BESPOKE SVG ICON SYSTEM  (gasfirst_icon / Gas Safe logo)
   Outline line-icons, currentColor-driven. Added 2026-06.
   ============================================================ */
.gf-ico { display:inline-block; vertical-align:middle; flex:0 0 auto; }
.gf-gas-safe-logo { display:inline-block; vertical-align:middle; width:auto; }

/* Service cards — assorted colour tiles restored (bg from .service-icon.<colour>) */
.service-icon .gf-ico { width:30px; height:30px; }
.service-icon.red .gf-ico    { color:#dc2626 !important; }
.service-icon.orange .gf-ico { color:#F97316 !important; }
.service-icon.amber .gf-ico  { color:#d97706 !important; }
.service-icon.green .gf-ico  { color:#10b981 !important; }
.service-icon.blue .gf-ico   { color:#3b82f6 !important; }
.service-icon.cyan .gf-ico   { color:#06b6d4 !important; }

/* Service-hub cards — icon above the title */
.gf-hub-icon { width:60px; height:60px; border-radius:14px; background:#FFEDD5; color:#F97316; display:flex; align-items:center; justify-content:center; align-self:flex-start; margin:0 0 16px; line-height:0; }
.gf-hub-icon .gf-ico { width:32px; height:32px; }
.gf-hub-grid .gf-hub-card:nth-child(1) .gf-hub-icon { background:#FFEDD5; color:#F97316; }
.gf-hub-grid .gf-hub-card:nth-child(2) .gf-hub-icon { background:#DCFCE7; color:#10b981; }
.gf-hub-grid .gf-hub-card:nth-child(3) .gf-hub-icon { background:#FEF3C7; color:#d97706; }
.gf-hub-grid .gf-hub-card:nth-child(4) .gf-hub-icon { background:#DBEAFE; color:#3b82f6; }
.gf-hub-grid .gf-hub-card:nth-child(5) .gf-hub-icon { background:#FEE2E2; color:#dc2626; }
.gf-hub-grid .gf-hub-card:nth-child(6) .gf-hub-icon { background:#CFFAFE; color:#06b6d4; }

/* Trust icons — soft assorted-colour medallions */
.trust-icon { width:72px; height:72px; border-radius:50%; background:#FFEDD5; color:#F97316; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; line-height:0; }
.trust-icon .gf-ico { width:36px; height:36px; }
.trust-grid .trust-card:nth-child(2) .trust-icon { background:#FFEDD5; color:#F97316; }
.trust-grid .trust-card:nth-child(3) .trust-icon { background:#DCFCE7; color:#10b981; }
.trust-grid .trust-card:nth-child(4) .trust-icon { background:#FEF3C7; color:#d97706; }
.trust-grid .trust-card:nth-child(5) .trust-icon { background:#DBEAFE; color:#3b82f6; }
.trust-grid .trust-card:nth-child(6) .trust-icon { background:#FEE2E2; color:#dc2626; }
.trust-icon.gf-trust-logo { background:transparent !important; width:auto; height:72px; border-radius:0; }
.trust-icon.gf-trust-logo .gf-gas-safe-logo { height:54px; }
.feature-icon { width:56px; height:56px; border-radius:50%; background:#FFEDD5; color:#F97316; display:flex; align-items:center; justify-content:center; flex:0 0 auto; line-height:0; }
.feature-icon .gf-ico { width:28px; height:28px; }
.features-list .feature-row:nth-child(1) .feature-icon { background:#FFEDD5; color:#F97316; }
.features-list .feature-row:nth-child(2) .feature-icon { background:#DCFCE7; color:#10b981; }
.features-list .feature-row:nth-child(3) .feature-icon { background:#FEF3C7; color:#d97706; }
.features-list .feature-row:nth-child(4) .feature-icon { background:#DBEAFE; color:#3b82f6; }
.features-list .feature-row:nth-child(5) .feature-icon { background:#FEE2E2; color:#dc2626; }
.features-list .feature-row:nth-child(6) .feature-icon { background:#CFFAFE; color:#06b6d4; }
.features-list .feature-row:nth-child(7) .feature-icon { background:#FFEDD5; color:#F97316; }
/* Trust cards lift off the page background */
.trust-card { background:#fff !important; border:1px solid #E8ECF2 !important; box-shadow:0 6px 22px rgba(15,23,42,0.08) !important; }
.trust-card:hover { transform:translateY(-4px); box-shadow:0 14px 32px rgba(15,23,42,0.13) !important; border-color:#F97316 !important; }

/* Trust pills + hero badges */
.gf-pill, .badge { display:inline-flex; align-items:center; gap:6px; }
.gf-pill .gf-ico, .badge .gf-ico { width:14px; height:14px; color:#F97316 !important; flex:0 0 auto; }
.gf-pill-logo, .badge .gf-gas-safe-logo { height:15px !important; }

/* Buttons — icon inherits the button's own text colour */
.btn .gf-ico, .gf-btn .gf-ico, .gf-card-call .gf-ico,
.gf-card-review-btn .gf-ico, .mobile-btn .gf-ico {
    width:1em; height:1em; vertical-align:-0.15em; margin-right:3px;
}

/* Area pins */
.pin-icon { color:#F97316; display:inline-flex; vertical-align:middle; }
.pin-icon .gf-ico { width:16px; height:16px; color:#F97316 !important; }
.gf-brand-pill .gf-ico { width:13px; height:13px; color:#F97316 !important; vertical-align:-2px; margin-right:3px; }

/* Footer icons (dark bg → brand orange) */
.footer-phone .gf-ico, .footer-email .gf-ico,
.footer-location .gf-ico, .footer-gas-safe .gf-ico {
    width:15px; height:15px; color:#F97316 !important; vertical-align:-3px; margin-right:4px;
}
.footer-actions .gf-ico { width:14px; height:14px; color:#F97316 !important; vertical-align:-2px; margin-right:4px; }
.footer-gas-safe .gf-gas-safe-logo,
.footer-actions .gf-gas-safe-logo { vertical-align:-3px; margin-right:4px; }

/* Emergency banner flame (white on orange) */
.warning-icon { color:#fff; line-height:0; display:inline-flex; }
.warning-icon .gf-ico { width:38px; height:38px; }

/* Floating hero card now carries the Gas Safe logo */
.floating-card .shield-icon { line-height:0; display:inline-flex; }
.floating-card .shield-icon .gf-gas-safe-logo { height:38px; }

/* Contact-form trust line + success */
.gf-cf-trust .gf-ico { width:14px; height:14px; color:#F97316; vertical-align:-2px; }
.gf-cf-success .gf-ico { vertical-align:-3px; }

/* ---------- Common boiler problems & fault codes (pillar block) ---------- */
.gf-fault-guides { padding: 44px 0; background:#fff; }
.gf-fault-guides h2 { font-family:'Poppins',sans-serif; color:#0F172A; font-size:24px; margin:0 0 8px; }
.gf-fault-guides > .container > p { color:#475569; max-width:760px; margin:0 0 20px; line-height:1.7; }
.gf-fault-guides-list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:12px; }
.gf-fault-guides-list li a { display:flex; align-items:center; gap:8px; background:#FFF3E9; border:1px solid #FCE3CF; border-radius:10px; padding:12px 16px; color:#0F172A !important; text-decoration:none; font-weight:500; transition:transform .2s, border-color .2s; }
.gf-fault-guides-list li a:hover { border-color:#F97316; transform:translateY(-2px); }
.gf-fault-guides-list .gf-ico { color:#F97316 !important; flex:0 0 auto; width:18px; height:18px; }
.gf-fault-group { margin-top: 18px; }
.gf-fault-group h3 { font-family:'Poppins',sans-serif; color:#0F172A; font-size:16px; margin:0 0 10px; }

/* Section key-point tiles (replaces decorative section icon) */
.gf-zig-tile.gf-pq{flex-direction:column;align-items:flex-start;justify-content:center;text-align:left;padding:30px 32px;background:#FFF7ED;border:1px solid #FCEBD6;gap:12px}
.gf-zig-tile.gf-pq .gf-pq-label{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#F97316}
.gf-zig-tile.gf-pq .gf-pq-text{font-family:'Poppins',sans-serif;font-size:18px;font-weight:600;line-height:1.5;color:#0F172A;margin:0}
.gf-zig-tile.gf-pq.gf-pq-icon{align-items:center;justify-content:center}
.gf-zig-tile.gf-pq.gf-pq-icon svg{width:64px;height:64px}
.gf-pq-c1{background:#FFF7ED;border-color:#FCEBD6}
.gf-pq-c2{background:#EFF6FF;border-color:#DCEAFD}
.gf-pq-c2 .gf-pq-label{color:#2563EB}
.gf-pq-c2.gf-pq-icon svg{stroke:#2563EB}
.gf-pq-c3{background:#F0FDF4;border-color:#D8F3E0}
.gf-pq-c3 .gf-pq-label{color:#16A34A}
.gf-pq-c3.gf-pq-icon svg{stroke:#16A34A}
.gf-pq-c4{background:#FAF5FF;border-color:#EEE0FB}
.gf-pq-c4 .gf-pq-label{color:#9333EA}
.gf-pq-c4.gf-pq-icon svg{stroke:#9333EA}
@media(max-width:768px){.gf-zig-tile.gf-pq{padding:24px}}
