/* Organic/Fluid Design System - SP Heating */
:root {
    color-scheme: light;
    /* Brand Colors */
    --primary-blue: #1a4b8c;
    --primary-blue-light: #2d6bc4;
    --primary-blue-dark: #0f2d54;
    --accent-red: #c41e3a;
    --accent-red-light: #e63950;
    --neutral-grey: #f8fafc;
    --neutral-grey-dark: #e2e8f0;
    --text-dark: #1e293b;
    --text-medium: #374151;
    --text-light: #64748b;
    --white: #ffffff;
    --footer-dark: #0a1628;

    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-emergency: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-light) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 10px 40px rgba(26, 75, 140, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 6rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fafbfc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

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

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(26, 75, 140, 0.08);
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* --- Fluid Background --- */
.fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: drift 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -20%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: var(--primary-blue-light);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: var(--primary-blue);
    animation-delay: -8s;
}

.blob-3 {
    top: 50%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: rgba(196, 30, 58, 0.1);
    animation-delay: -15s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(40px, 25px) scale(1.08) rotate(3deg);
    }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 130px;
    width: auto;
}

/* Nav Icons (WhatsApp, Gas Safe) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: #25D366;
    animation: whatsapp-shake 4s ease-in-out infinite;
}

@keyframes whatsapp-shake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(-8deg);
    }

    94% {
        transform: rotate(8deg);
    }

    96% {
        transform: rotate(-6deg);
    }

    98% {
        transform: rotate(6deg);
    }
}

.gas-safe-icon img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-ocean);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-ocean);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(26, 75, 140, 0.3);
    color: white;
}

.btn-primary::after {
    display: none !important;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid var(--neutral-grey-dark);
}

.btn-secondary:hover {
    background: var(--neutral-grey);
    transform: translateY(-2px);
}

.btn-icon,
.btn-icon-right {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger to X animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Ensure no fixed background on parent for mobile safest fallback */
    background-attachment: scroll;
    /* Create stacking context for iOS z-index:-1 fix */
    z-index: 0;
}

/* Hero Background Image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('images/hero.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

/* iOS/Mobile Hero Background Fix */
@media (hover: none) and (pointer: coarse) {
    .hero::before {
        /* Disable mask-image which can cause issues on some iOS versions combined with fixed backgrounds */
        -webkit-mask-image: none !important;
        mask-image: none !important;

        /* Use layered background for fade effect */
        background-image: linear-gradient(to right, rgba(230, 240, 255, 0.95) 0%, rgba(230, 240, 255, 0.6) 50%, rgba(26, 75, 140, 0.2) 100%),
            url('images/hero.jpeg') !important;

        /* Force scroll behavior */
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;

        /* Reset opacity since we handle fade via gradient */
        opacity: 1 !important;
        width: 100%;
        /* Full width on mobile to ensure coverage */
    }
}

.hero-content {
    display: block;
    max-width: 600px;
    position: relative;
    z-index: 2;
    /* Ensure text sits above background */
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 75, 140, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.text-highlight {
    color: var(--primary-blue);
    position: relative;
}

.text-highlight::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(26, 75, 140, 0.12);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.organic-frame {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    overflow: hidden;
    animation: morph 10s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
    background: var(--gradient-ocean);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    }

    50% {
        border-radius: 55% 45% 45% 55% / 45% 55% 45% 55%;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-medium);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--text-medium);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 16px;
        opacity: 0;
    }
}

/* --- Services Section --- */
.services {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fluid-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.fluid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.emergency-card {
    border: 1px solid rgba(196, 30, 58, 0.15);
}

.icon-blob {
    width: 80px;
    height: 80px;
    border-radius: 35% 65% 60% 40% / 40% 55% 45% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
}

.service-svg {
    width: 32px;
    height: 32px;
}

.red-pulse {
    background: rgba(196, 30, 58, 0.1);
    color: var(--accent-red);
    animation: pulse-red 2.5s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(196, 30, 58, 0);
    }
}

.blue-calm {
    background: rgba(26, 75, 140, 0.08);
    color: var(--primary-blue);
}

.grey-trust {
    background: rgba(30, 41, 59, 0.06);
    color: var(--text-dark);
}

.fluid-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.fluid-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-link {
    color: var(--accent-red);
}

.link-icon {
    width: 16px;
    height: 16px;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding) 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: ken-burns 12s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes ken-burns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-3%, -2%);
    }
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.text-brand {
    color: var(--primary-blue);
}

.about-text>p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 75, 140, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.badge-icon svg {
    width: 22px;
    height: 22px;
}

.badge-icon.certified {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gas Safe Badge in About */
.trust-badge.gas-safe-badge {
    padding: 8px;
}

.gas-safe-about {
    width: 55px;
    height: auto;
    object-fit: contain;
}

/* Instagram Card */
.insta-context-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.instagram-card {
    background: var(--neutral-grey);
    border-radius: 16px;
    padding: 4px;
    display: inline-block;
}

.insta-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 14px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insta-link:hover {
    box-shadow: var(--shadow-md);
}

.insta-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.insta-icon svg {
    width: 22px;
    height: 22px;
}

.insta-text {
    display: flex;
    flex-direction: column;
}

.insta-handle {
    font-weight: 600;
    color: var(--text-dark);
}

.insta-cta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    color: var(--text-light);
    margin-left: auto;
}

/* --- Contact Section --- */
.contact {
    position: relative;
    background: transparent;
}

.wave-separator {
    height: 60px;
    overflow: hidden;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
}

.contact-section-inner {
    background: var(--neutral-grey);
    padding: var(--section-padding) 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.contact-info>p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-ocean);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-icon svg {
    width: 22px;
    height: 22px;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.method-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.method-value.major {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.method-value:hover {
    color: var(--primary-blue-light);
}

/* Form */
.organic-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.organic-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-ocean);
    border-radius: 24px 24px 0 0;
}

.organic-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--neutral-grey-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--neutral-grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.1);
    background: white;
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* --- Accreditations Carousel --- */
.accreditations {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
    overflow: hidden;
}

.accreditations .section-header {
    margin-bottom: 3rem;
}

.accreditation-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
}

/* Fade edges for infinite scroll effect */
.accreditation-carousel::before,
.accreditation-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.accreditation-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f0f4f8 0%, transparent 100%);
}

.accreditation-carousel::after {
    right: 0;
    background: linear-gradient(to left, #f0f4f8 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll-carousel 35s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slide img {
    max-height: 55px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.carousel-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accreditations {
        padding: 3rem 0 4rem;
    }

    .accreditation-carousel::before,
    .accreditation-carousel::after {
        width: 60px;
    }

    .carousel-track {
        gap: 2rem;
        animation-duration: 25s;
    }

    .carousel-slide {
        height: 65px;
        padding: 0.5rem 1rem;
    }

    .carousel-slide img {
        max-height: 45px;
        max-width: 110px;
    }
}

/* --- Footer --- */
.site-footer {
    position: relative;
    color: white;
}

.footer-wave {
    height: 80px;
    overflow: hidden;
    background: var(--neutral-grey);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-main {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: auto;
    width: 110px;
    /* Match mobile visual weight */
    display: block;
    margin: 0 auto 1.5rem auto;
    /* Fade edges */
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin: 0;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cert-badge svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.cert-badge.gas-safe-image {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
}

.gas-safe-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.footer-links h4,
.footer-areas h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-areas h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue-light);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.areas-list svg {
    width: 14px;
    height: 14px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
}

.footer-links li,
.footer-services li:not(.areas-list li) {
    margin-bottom: 0.85rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before,
.footer-services a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-blue-light);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    width: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.1rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.whatsapp-contact svg {
    color: #25D366;
}

.footer-bottom {
    background: #0a1628;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-bottom: 70px;
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    /* Reduce blue blobs on mobile */
    .blob {
        opacity: 0.52;
    }

    /* Mobile hero improvements */
    .hero::before {
        width: 100%;
        opacity: 0.55;
        background-position: 50% 15%;
        background-attachment: fixed;
        filter: blur(7px);
        mask-image: none;
        -webkit-mask-image: none;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: #111827;
    }

    .hero-tag {
        background: rgba(26, 75, 140, 0.15);
        backdrop-filter: blur(4px);
    }

    .cta-group {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .organic-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .image-frame {
        max-width: 350px;
        margin: 0 auto;
    }

    .trust-badges {
        justify-content: center;
    }

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

    .about-text .section-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .instagram-card {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .insta-link {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .contact-info .section-tag {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-methods {
        align-items: stretch;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .contact-method {
        width: 100%;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Mobile nav-menu styles are defined later in the file at the 768px breakpoint */

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand-header {
        margin-bottom: 2rem;
    }

    .footer-brand-header .footer-logo {
        background: none;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        height: auto;
        width: 90px;
        /* Reduced another 10% */
        max-width: 80%;
        display: block;
        /* Ensure block level for margin auto to work */
        margin: 0 auto 1rem auto;
        /* Explicit centering */
        /* Fade edges */
        mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .footer-links ul,
    .footer-areas ul,
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .areas-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1.5rem;
        justify-items: start;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    /* Center decorations on mobile */
    .footer-links h4::after,
    .footer-areas h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-header {
        padding: 0 1rem;
    }

    /* Hide emergency banner text on mobile, show icon only */
    .emergency-banner .banner-text {
        display: none;
    }

}

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

    .hero h1 {
        font-size: 2rem;
    }

    /* Fix Emergency Banner Mobile */
    .emergency-banner {
        padding: 0.5rem 0.5rem;
        gap: 0.5rem;
    }

    .banner-text.mobile-text {
        font-size: 0.9rem;
        /* Smaller text */
        white-space: nowrap;
        /* Prevent wrapping */
    }

    .banner-phone {
        font-size: 0.95rem;
        padding: 0.3rem 0.8rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        padding: 0 0.5rem;
    }

    .organic-frame {
        max-width: 220px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--gradient-emergency);
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
}

.emergency-banner svg {
    width: 18px;
    height: 18px;
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-text.mobile-text {
    display: none;
}

.banner-phone {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.banner-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.banner-close:hover {
    opacity: 1;
}

.banner-close svg {
    width: 16px;
    height: 16px;
    animation: none;
}

/* Adjust navbar when banner is visible */
body.banner-visible .navbar {
    top: 42px;
}

body.banner-visible .hero {
    padding-top: 160px;
}

/* Mobile nav positioning handled by top: 100% in the nav-menu styles */

/* ============================================
   STICKY CALL BUTTON (Mobile)
   ============================================ */
.sticky-call {
    display: none;
}

@media (max-width: 768px) {
    .sticky-call {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--gradient-ocean);
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    }

    .sticky-call.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .banner-text.desktop-text {
        display: none;
    }

    .banner-text.mobile-text {
        display: inline-block;
    }
}

.sticky-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.sticky-call svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .sticky-call {
        display: block;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-link {
        margin-right: auto;
    }

    .nav-logo {
        height: 55px;
    }

    .nav-icons {
        gap: 8px;
        margin-right: 12px;
        margin-left: 0;
    }

    .whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }

    .gas-safe-icon img {
        height: 32px;
    }

    /* Show hamburger on mobile */
    .nav-toggle {
        display: block;
    }

    /* Compact dropdown menu */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 16px 16px;
        margin-top: 0;
    }

    .nav-menu.active {
        max-height: 350px;
        opacity: 1;
        padding: 16px 0 20px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 16px 24px;
        color: var(--text-dark);
        font-family: var(--font-heading);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(26, 75, 140, 0.05);
        color: var(--primary-blue);
    }

    .nav-link:not(.btn-primary)::after {
        display: none;
    }

    .nav-link.btn-primary {
        margin: 12px 16px 0;
        padding: 14px 30px;
        font-size: 1rem;
        border-radius: 50px;
        width: auto;
        box-sizing: border-box;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: var(--section-padding) 0;
    background: #f1f5f9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--neutral-grey-dark);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 75, 140, 0.2);
}

summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: var(--neutral-grey);
    padding-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.cookie-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-content .btn {
    align-self: flex-end;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* Footer Credit */
.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* --- Areas We Cover Section --- */
.areas-section {
    padding: var(--section-padding) 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.25rem;
    background: var(--neutral-grey);
    border: 1px solid transparent;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.area-card::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.7;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

a.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 75, 140, 0.2);
    background: white;
}

a.area-card:hover::before {
    opacity: 1;
    transform: scale(1.3);
}

.area-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.area-postcode {
    font-size: 0.8rem;
    color: var(--primary-blue);
    margin-left: auto;
    font-weight: 600;
    opacity: 0.6;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: rgba(26, 75, 140, 0.06);
    border: 1px solid rgba(26, 75, 140, 0.12);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.trust-pill svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.areas-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.areas-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

.areas-note a:hover {
    text-decoration: underline;
}

/* --- Area Landing Pages --- */
.area-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;
    z-index: 0;
}

/* Area Hero Background Image — same as homepage */
.area-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('images/hero.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(6px);
    -webkit-filter: blur(6px);
}

/* Area Hero iOS/Mobile Background Fix */
@media (hover: none) and (pointer: coarse) {
    .area-hero::before {
        -webkit-mask-image: none !important;
        mask-image: none !important;
        background-image: linear-gradient(to right, rgba(230, 240, 255, 0.95) 0%, rgba(230, 240, 255, 0.6) 50%, rgba(26, 75, 140, 0.2) 100%),
            url('images/hero.jpeg') !important;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        opacity: 1 !important;
        width: 100%;
    }
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.breadcrumb:hover {
    opacity: 0.7;
}

.area-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.area-hero>.container>p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.area-services-section {
    padding: 4rem 0;
    background: white;
}

.area-services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.area-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.area-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 1.5rem;
    background: var(--neutral-grey);
    border-radius: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.area-service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.area-service-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.area-trust-section {
    padding: 4rem 0;
}

.area-trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.area-cta-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.area-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.area-cta-section p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.area-cta-section .cta-group {
    justify-content: center;
}

/* Area page responsive */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-services-list {
        grid-template-columns: 1fr;
    }

    .area-card {
        padding: 0.85rem 1rem;
    }

    .area-name {
        font-size: 0.85rem;
    }
}

/* =============================================
   SERVICE PAGE STYLES (Boiler, etc.)
   ============================================= */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: var(--text-medium);
}

.breadcrumb-nav svg {
    color: var(--text-light);
    flex-shrink: 0;
}

/* Service Hero Lead Paragraph */
.service-hero-lead {
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
    color: var(--text-dark) !important;
}

/* --- Trust Stats Bar --- */
.service-stats-bar {
    padding: 2.5rem 0;
    background: rgba(26, 75, 140, 0.03);
    border-top: 1px solid rgba(26, 75, 140, 0.08);
    border-bottom: 1px solid rgba(26, 75, 140, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(26, 75, 140, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.stat-icon.certified {
    background: rgba(16, 185, 129, 0.1);
}

.stat-icon.certified svg {
    color: #10b981;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* --- Detailed Services Grid --- */
.service-detail-section {
    padding: var(--section-padding) 0;
    background: white;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--neutral-grey);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: white;
    border-color: rgba(26, 75, 140, 0.1);
}

.detail-card-icon {
    flex-shrink: 0;
}

.detail-card-icon .icon-blob {
    width: 60px;
    height: 60px;
}

.detail-card-icon .icon-blob svg {
    width: 28px;
    height: 28px;
}

.detail-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.detail-card-content p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-features li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 4px 12px;
    background: rgba(26, 75, 140, 0.06);
    border-radius: 100px;
}

.detail-features li::before {
    content: '✓';
    font-weight: 700;
    font-size: 0.75rem;
}

/* icon-blob variant for emergency/red cards */
.icon-blob.red-alert {
    background: rgba(196, 30, 58, 0.08);
}

.icon-blob.red-alert svg {
    color: var(--accent-red);
}

/* --- Process / How It Works --- */
.process-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(26, 75, 140, 0.02) 0%, rgba(26, 75, 140, 0.06) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(26, 75, 140, 0.3);
}

.process-connector {
    position: absolute;
    top: 50px;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), rgba(26, 75, 140, 0.2));
}

.process-step:last-child .process-connector {
    display: none;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* --- Service Areas CTA Section --- */
.service-areas-cta {
    padding: var(--section-padding) 0;
    background: white;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* =============================================
   SERVICE PAGE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-connector {
        display: none;
    }

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

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1rem 1.25rem;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }

    .service-hero-lead {
        font-size: 1rem !important;
    }
}

/* --- EmailJS Form Spinner & Status --- */
.btn-spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-status {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 1.5em;
    transition: all 0.3s ease;
}

/* Honeypot - visually hidden but accessible to bots */
.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}