/* ============================================================
   fonts.css — PowerArc Ltd
   Self-hosted Google Fonts (Montserrat + Inter)
   Filenames match exactly what is in assets/fonts/
   ============================================================ */

/* ── Montserrat ── */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

/* ── Inter ── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}
/* ════════════════════════════════════════
   1. DESIGN TOKENS
   ════════════════════════════════════════ */
:root {
    --bg:           hsl(0, 0%, 7%);         /* #121212 */
    --card:         hsl(0, 0%, 12%);        /* #1e1e1e */
    --secondary:    hsl(0, 0%, 10%);        /* #242424 */
    --muted:        hsl(0, 0%, 14%);        /* #242424 */
    --light-grey:   hsl(0, 0%, 10%);        /* #1a1a1a */
    --dark-grey:    hsl(0, 0%, 10%);        /* #1a1a1a */
    --fg:           #ffffff;
    --fg-70:        rgba(255, 255, 255, .70);
    --fg-50:        rgba(255, 255, 255, .50);
    --fg-40:        rgba(255, 255, 255, .40);
    --muted-fg:     hsl(0, 0%, 88%);        /* #e0e0e0 */
    --border:       hsl(0, 0%, 20%);        /* #333    */
    --primary:      hsl(211, 100%, 50%);    /* #007BFF */
    --primary-fg:   #ffffff;
    --emergency:    hsl(355, 78%, 56%);     /* #e63946 */
    --emergency-fg: #ffffff;
    --whatsapp:     hsl(142, 70%, 49%);     /* #25d366 */
    --whatsapp-fg:  #ffffff;
    --yellow:       hsl(45, 100%, 51%);     /* #ffaa00 */
    --yellow-fg:    hsl(0, 0%, 10%);
}


/* ════════════════════════════════════════
   2. BASE RESET
   ════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.25;
    font-size: inherit;
    /* letter-spacing: -.02em; */
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}


/* ════════════════════════════════════════
   3. COLOUR UTILITIES
   ════════════════════════════════════════ */
.bg-dark-grey       { background: var(--dark-grey)  !important; }
.bg-card            { background: var(--card)        !important; }
.bg-secondary-brand { background: var(--secondary)   !important; }
.bg-muted-brand     { background: var(--muted)       !important; }
.bg-light-grey      { background: var(--light-grey)  !important; }
.bg-primary-brand   { background: var(--primary)     !important; }
.bg-emergency       { background: var(--emergency)   !important; }
.bg-whatsapp        { background: var(--whatsapp)    !important; }
.bg-yellow          { background: var(--yellow)      !important; }

.text-primary-brand { color: var(--primary)   !important; }
.text-emergency     { color: var(--emergency) !important; }
.text-whatsapp      { color: var(--whatsapp)  !important; }
.text-yellow        { color: var(--yellow)    !important; }
.text-fg            { color: var(--fg)        !important; }
.text-muted-fg      { color: var(--muted-fg)  !important; }
.text-fg-70         { color: var(--fg-70)     !important; }
.text-fg-50         { color: var(--fg-50)     !important; }
.text-fg-40         { color: var(--fg-40)     !important; }

.border-brand       { border-color: var(--border) !important; }


/* ════════════════════════════════════════
   4. TOP BAR
   ════════════════════════════════════════ */
.top-bar {
    background: var(--dark-grey);
    font-size: 12px;
}

.top-bar a {
    color: var(--fg);
    transition: color .15s;
}

.top-bar a:hover {
    color: var(--primary);
}

.badge-emergency {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--emergency);
    color: var(--emergency-fg);
    padding: 3px 12px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.top-trust-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, .8));
}


/* ════════════════════════════════════════
   5. MAIN NAV
   ════════════════════════════════════════ */
.main-nav {
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    width: 42%;
    max-width: 180px;
}

@media (min-width: 992px) {
    .nav-logo {
        width: 15%;
    }
}

.nav-link-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--fg) !important;
    transition: color .15s;
}

.nav-link-item:hover {
    color: var(--primary) !important;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-grey);
    color: var(--fg);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: opacity .15s;
    border: none;
}

.btn-call:hover {
    opacity: .9;
    color: var(--fg);
}

.call-dropdown-wrap {
    position: relative;
}

.top-bar-email{
    background: var(--emergency);
    color: var(--emergency-fg);
    padding: 3px 12px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.top-bar-email:hover{
    opacity: .95;
    color: var(--emergency-fg) !important;
}

.top-bar-call {
    gap: 5px;
    background: var(--emergency);
    color: var(--emergency-fg);
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.4;
}

.top-bar-call:hover {
    opacity: .95;
    color: var(--emergency-fg);
}

.call-dropdown-icon {
    transition: transform .2s;
}

.call-dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 220;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 178px;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .35);
    transition: opacity .2s, visibility .2s;
}

.call-dropdown-wrap.open .call-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.call-dropdown-wrap.open .call-dropdown-icon {
    transform: rotate(180deg);
}

.call-dropdown a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--emergency);
    color: var(--emergency-fg) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
}

.call-dropdown a:hover {
    background: hsl(355, 78%, 50%);
    color: var(--emergency-fg) !important;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--primary-fg);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: opacity .15s;
    border: none;
    cursor: pointer;
}

.btn-quote:hover {
    opacity: .9;
}


/* ════════════════════════════════════════
   6. MEGA MENU
   ════════════════════════════════════════ */
.mega-wrap {
    position: relative;
}

.mega-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--fg);
    transition: color .15s;
}

.mega-trigger:hover,
.mega-wrap:hover .mega-trigger {
    color: var(--primary);
}

.mega-trigger svg {
    transition: transform .2s;
}

.mega-wrap:hover .mega-trigger svg {
    transform: rotate(180deg);
}

.mega-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    z-index: 200;
    transition: opacity .2s, visibility .2s;
}

.mega-wrap:hover .mega-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mega-inner {
    width: 720px;
    border-radius: 12px;
    padding: 24px;
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 20px 60px -15px rgba(0, 123, 255, .15),
                0 8px 24px -8px rgba(0, 0, 0, .4);
}

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

.mega-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    transition: all .2s;
}

.mega-item:hover {
    background: #2a2a2a;
    border-color: rgba(0, 212, 255, .5);
    box-shadow: 0 0 10px rgba(0, 212, 255, .4);
    transform: translateY(-2px);
    color: #fff;
}

.mega-item:hover .mega-item-text {
    background: linear-gradient(90deg, #007BFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mega-item svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.mega-item-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
}


/* ════════════════════════════════════════
   7. MOBILE NAV
   ════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    top: 120px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 120px);
    background: var(--card);
    padding: 0 16px 90px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--fg);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--fg);
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-dropdown-btn svg {
    transition: transform .2s;
}

.mobile-dropdown-btn.open svg {
    transform: rotate(180deg);
}

.mobile-sub {
    display: none;
    padding: 4px 8px 8px;
}

.mobile-sub.open {
    display: block;
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px; */
}

.mobile-sub-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted-fg);
    border: 1px solid transparent;
    transition: background .15s;
}

.mobile-sub-item svg {
    color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mobile-call-block {
    background: var(--emergency);
    color: #fff;
    border-radius: 6px;
    padding: 12px 16px;
}

.mobile-wa-block {
    background: var(--whatsapp);
    color: #fff;
    border-radius: 6px;
    padding: 12px 16px;
}

.mobile-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.mobile-trust-grid img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, .8));
    display: block;
    margin: auto;
}


/* ════════════════════════════════════════
   8. FOOTER
   ════════════════════════════════════════ */
.site-footer {
    background: var(--dark-grey);
    padding: 56px 0 80px;
}

@media (min-width: 768px) {
    .site-footer {
        padding-bottom: 56px;
    }
}

.footer-logo {
    width: 176px;
}

.footer-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.footer-trust-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, .8));
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-link {
    color: var(--fg-70);
    font-size: 14px;
    transition: color .15s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 24px;
    font-size: 12px;
    color: var(--fg-40);
}


/* ════════════════════════════════════════
   9. ACTION BAR / CTA
   (reusable "Don't let a fault…" strip –
    can appear on any page, not just home)
   ════════════════════════════════════════ */
.action-bar {
    background: var(--primary);
}

.emergency-pulse {
    animation: epulse 2s ease-in-out infinite;
}

@keyframes epulse {
    0%, 100% { opacity: 1;  }
    50%       { opacity: .7; }
}

.contact-block {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.contact-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    background: rgba(255, 255, 255, .20);
    color: #fff;
    transition: background .15s;
}

.contact-pill:hover {
    background: rgba(255, 255, 255, .30);
    color: #fff;
}


/* ════════════════════════════════════════
   10. WHATSAPP FLOAT  (desktop)
   ════════════════════════════════════════ */
.wa-float-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

@media (max-width: 767px) {
    .wa-float-wrap {
        display: none !important;
    }
}

.wa-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: hsl(160, 67%, 35%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    transition: transform .2s, box-shadow .2s;
    border: none;
    cursor: pointer;
    animation: wapulse 2s ease-in-out infinite;
}

.wa-float-btn:hover {
    transform: scale(1.05);
}

@keyframes wapulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, .3),
                    0 0 0 0 rgba(37, 211, 102, .5);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, .3),
                    0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.wa-float-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    flex-shrink: 0;
}

.wa-online-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: hsl(142, 70%, 49%);
    border: 2px solid hsl(160, 67%, 25%);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, .4);
}

.wa-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
    min-width: 150px;
    overflow: hidden;
}

.wa-popup.open {
    display: block;
}

.wa-popup a {
    display: block;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--fg);
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}

.wa-popup a:last-child {
    border-bottom: none;
}

.wa-popup a:hover {
    background: var(--secondary);
}


/* ════════════════════════════════════════
   11. MOBILE ACTION BAR
   ════════════════════════════════════════ */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #121212;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: 56px;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 768px) {
    .mobile-bar {
        display: none;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 56px;
    }
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--fg);
    cursor: pointer;
}

.mobile-bar-btn span {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.mobile-bar-btn.wa-col {
    color: var(--whatsapp);
}

.mobile-bar-mid {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.mobile-popup {
    position: absolute;
    bottom: 56px;
    background: var(--dark-grey);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px 8px 0 0;
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
    width: 50%;
    display: none;
}

.mobile-popup.left  { left: 0; }
.mobile-popup.right { right: 0; }

.mobile-popup.open {
    display: block;
}

.mobile-popup-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--fg);
    margin-bottom: 12px;
}

.mobile-popup-title button {
    background: none;
    border: none;
    color: var(--fg-50);
    cursor: pointer;
}

.mobile-popup a {
    display: block;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
}


/* ════════════════════════════════════════
   12. QUOTE MODAL
   (triggered from header "Get a Quote"
    button – present on every page)
   ════════════════════════════════════════ */
.quote-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(26, 26, 26, .6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.quote-modal-overlay.open {
    display: flex;
}

.quote-modal {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 32px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted-fg);
    cursor: pointer;
    padding: 4px;
}

.modal-close:hover {
    color: var(--fg);
}


/* ════════════════════════════════════════
   13. SHARED FORM COMPONENTS
   (used in both the modal above AND the
    inline quote form on the home page)
   ════════════════════════════════════════ */
.quote-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: box-shadow .2s;
}

.quote-input:focus {
    box-shadow: 0 0 0 2px var(--primary);
    border-color: var(--primary);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s, color .2s;
}

.step-circle.active {
    background: var(--primary);
    color: #fff;
}

.step-circle.inactive {
    background: var(--secondary);
    color: var(--muted-fg);
}

.btn-next {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    transition: transform .2s;
    background: linear-gradient(135deg, #0056b3, #007BFF);
    box-shadow: 0 4px 15px rgba(0, 123, 255, .4);
}

.btn-next:hover {
    transform: translateY(-2px);
}

.btn-back {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: none;
    color: var(--fg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}

.btn-back:hover {
    background: var(--secondary);
}


/* ════════════════════════════════════════
   14. GLOBAL UTILITIES
   ════════════════════════════════════════ */
.star {
    color: var(--yellow);
    fill: var(--yellow);
    width: 20px;
    height: 20px;
}

.sticky-top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
}

.overflow-x-auto {
    overflow-x: auto;
}


/* ════════════════════════════════════════
   15. UTILITY CLASSES
   (extracted from formerly-inline styles –
    shared across all pages)
   ════════════════════════════════════════ */

/* Font sizes */
.fs-12 { font-size: 12px; }
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }
.fs-17 { font-size: 17px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }

/* Fluid / responsive heading sizes */
.fs-hero-h1   { font-size: clamp(30px, 4.5vw, 36px); }
.fs-heading-lg{ font-size: clamp(26px, 3.5vw, 34px); }
.fs-heading-md{ font-size: clamp(20px, 3vw, 30px);   }
.fs-heading-sm{ font-size: clamp(20px, 2.8vw, 28px); }

/* Line heights */
.lh-160 { line-height: 1.6;  }
.lh-165 { line-height: 1.65; }
.lh-170 { line-height: 1.7;  }
.lh-175 { line-height: 1.75; }

/* Opacity */
.op-50 { opacity: .5;  }
.op-80 { opacity: .8;  }
.op-85 { opacity: .85; }
.op-90 { opacity: .9;  }

/* Max widths */
.mw-540  { max-width: 540px;  }
.mw-720  { max-width: 720px;  }
.mw-900  { max-width: 900px;  }
.mw-1100 { max-width: 1100px; }

/* Flex helpers */
.flex-1  { flex: 1;      }
.flex-70 { flex: 0 0 70%; }
.flex-30 { flex: 0 0 30%; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Footer policy links (Privacy / T&C / Cookie) */
.footer-policy-link {
    font-size: 12px;
    transition: color .15s;
}

/* Footer service link columns gap */
.footer-link-gap {
    column-gap: 24px !important;
    row-gap: 4px !important;
}

/* btn-next primary variant (final step "Get My Instant Quote") */
.btn-next-primary {
    flex: 1;
    background: var(--primary) !important;
    box-shadow: none !important;
}

/* WhatsApp float button text labels */
.wa-chat-label {
    font-size: 12px;
    opacity: .9;
    font-weight: 400;
}

.wa-chat-title {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* SVG icon glow helpers (used on service badge SVGs) */
.icon-glow-primary   { filter: drop-shadow(0 0 8px rgba(0, 123, 255, .6));  }
.icon-glow-emergency { filter: drop-shadow(0 0 8px rgba(230, 57, 70, .6));  }
.icon-glow-wa        { filter: drop-shadow(0 0 8px rgba(37, 211, 102, .6)); }
.icon-glow-yellow    { filter: drop-shadow(0 0 8px rgba(255, 193, 7, .6));  }

/* Mega menu narrow panel (Renewables – 480px wide) */
.mega-inner-narrow {
    width: 480px;
}
