@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary-color: #fef200;
    /* Yellow based on brand */
    --text-dark: #121212;
    --text-light: #4A4A4A;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;

    /* Typography */
    --font-family: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 20px;
    --transition: all 0.3s ease;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(20px);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark) !important;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(254, 242, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--bg-dark);
    color: var(--primary-color) !important;
    border-color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark) !important;
    border-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white) !important;
    border-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.3);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(17, 24, 39, 0.4);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(254, 242, 0, 0.2);
}

/* Header */
.site-header {
    background-color: rgba(254, 242, 0, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.header-top-info a {
    margin-right: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.header-main {
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-dark);
    border-bottom: 2px solid var(--bg-dark);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 20;
    display: grid !important;
    min-width: 190px;
    gap: 0 !important;
    padding: 10px 0;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.nav-submenu a {
    display: block;
    margin: 0 8px;
    padding: 10px 14px;
    border-bottom: 0 !important;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a.active {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.header-cta .btn-primary {
    background-color: var(--bg-dark);
    color: var(--bg-white) !important;
    border-color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-cta .btn-primary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark) !important;
    border-color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1050;
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.bottom-links a {
    color: #888;
    margin-left: 15px;
}

.bottom-links a:hover {
    color: var(--bg-white);
}

/* Page Components */

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

.product-section {
    padding-top: 44px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title.text-center h2 {
    display: inline-block;
}

.section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/wasser group van v3.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: heroZoom 12s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.45) 100%);
    z-index: 1;
}

.hero-flow-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

.hero-flow-lines svg {
    width: 100%;
    height: 100%;
}

.flow-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.7);
    /* Much more opaque white */
    stroke-width: 2.5px;
}

.flow-line.yellow-accent {
    stroke: rgba(254, 242, 0, 0.9);
    /* Almost fully opaque brand yellow */
    stroke-width: 3.5px;
}

.line-1 {
    stroke-dasharray: 800 1000;
    animation: flow-1 45s linear infinite;
}

@keyframes flow-1 {
    from {
        stroke-dashoffset: 3600;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.line-2 {
    stroke-dasharray: 400 1500;
    animation: flow-2 60s linear infinite;
}

@keyframes flow-2 {
    from {
        stroke-dashoffset: 3800;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.line-3 {
    stroke-dasharray: 500 1200;
    animation: flow-3 40s linear infinite;
    animation-delay: -15s;
}

@keyframes flow-3 {
    from {
        stroke-dashoffset: 3400;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.line-4 {
    stroke-dasharray: 700 1400;
    animation: flow-4 70s linear infinite;
    animation-delay: -25s;
}

@keyframes flow-4 {
    from {
        stroke-dashoffset: 4200;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Fade Up Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.25s;
}

.delay-2 {
    animation-delay: 0.5s;
}

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

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    color: var(--bg-white);
}

.hero-subtitle {
    color: #f1f1f1;
    font-size: 1.15rem;
    margin: 0 auto 30px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-quote-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.quick-quote-card h3 {
    margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-card-header h3 {
    margin-bottom: 0;
}

.service-card-header .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
}

.service-list {
    margin: 20px 0;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-link span {
    color: var(--primary-color);
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(5px);
}

/* Services overview page */
.services-overview-page .services-hero {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.78)),
        url('../images/car long-min.jpg') center/cover;
    padding: 118px 0 92px;
}

.services-overview-page .services-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
}

.services-overview-page .services-hero p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #e5e7eb;
    font-size: 1.12rem;
}

.services-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 14px;
    border: 1px solid rgba(254, 242, 0, 0.45);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-hero-actions,
.services-final-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.services-overview-intro {
    padding-bottom: 44px;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
    gap: 38px;
    align-items: stretch;
}

.services-intro-grid h2 {
    margin-bottom: 14px;
}

.services-intro-grid p {
    max-width: 760px;
    margin-bottom: 0;
}

.services-support-panel {
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
    padding: 26px;
}

.services-support-panel strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.services-support-panel p {
    margin-bottom: 14px;
}

.service-text-link {
    font-weight: 800;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
}

.services-directory-section {
    background: var(--bg-light);
    padding-top: 44px;
}

.services-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.services-directory-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--bg-white);
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
    transition: var(--transition);
}

.services-directory-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.18);
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.12);
}

.services-directory-card-featured {
    border-top: 6px solid var(--primary-color);
}

.services-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.services-card-top img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.services-card-top span {
    color: #5b6472;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-directory-card h3 {
    margin-bottom: 10px;
}

.services-directory-card p {
    margin-bottom: 22px;
}

.services-card-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
}

.services-card-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d8dde5;
    border-radius: 6px;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.services-card-links a:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: var(--bg-white);
}

.services-compliance-section {
    background: var(--bg-dark);
}

.services-compliance-section h2 {
    color: var(--bg-white);
}

.services-compliance-section .section-title p {
    color: #cbd5e1;
}

.services-compliance-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.services-compliance-card {
    display: flex;
    min-height: 148px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--bg-white);
    text-align: center;
    font-weight: 800;
}

.services-compliance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254, 242, 0, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.services-compliance-card img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: #fff;
    border-radius: 999px;
    padding: 8px;
}

.services-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 8px;
    background: var(--primary-color);
}

.services-final-cta h2 {
    margin-bottom: 6px;
}

.services-final-cta p {
    margin-bottom: 0;
    color: #27303b;
}

.services-final-actions {
    justify-content: flex-end;
    flex-shrink: 0;
}

/* PB Section (Picture & Block) */
.pb-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pb-image,
.pb-content {
    flex: 1;
}

.trust-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    background: var(--primary-color);
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.trust-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Certificates Grid */
.cert-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    width: calc(20% - 24px);
    min-width: 150px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cert-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--bg-white);
    border-radius: 50%;
    padding: 8px;
    margin-bottom: 10px;
}

.cert-item span {
    font-weight: 600;
    color: var(--bg-white);
    text-align: center;
}

/* Main inner page headers */
.page-header {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--bg-white);
    position: relative;
    z-index: 2;
}

/* BTU Calculator */
.btu-page-header {
    padding: 42px 0 34px;
}

.btu-page-header h1 {
    margin-bottom: 12px;
}

.btu-calculator-section {
    padding-top: 28px;
}

.btu-calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 22px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}

.btu-calculator-card,
.btu-results-card,
.btu-info-card,
.btu-faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.btu-calculator-card {
    padding: 28px 30px;
}

.btu-calculator-card .section-title {
    margin-bottom: 26px;
}

.btu-calculator-card .section-title h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.btu-calculator-card .section-title p {
    font-size: 0.94rem;
    margin-bottom: 0;
}

.btu-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.btu-form .form-group {
    margin-bottom: 0;
}

.btu-form .form-group label {
    font-size: 0.88rem;
    min-height: 1.25rem;
}

.btu-form .form-group input,
.btu-form .form-group select {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
}

.btu-full-width {
    grid-column: 1 / -1;
}

.btu-unit-field {
    grid-column: 1 / -1;
}

.btu-hidden {
    display: none;
}

.btu-slider-row {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 15px;
    align-items: center;
}

.btu-slider-row input[type="range"] {
    accent-color: var(--primary-color);
    cursor: pointer;
}

.btu-results-card {
    padding: 30px;
    background: var(--bg-dark);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btu-results-card p,
.btu-results-card .btu-result-sub {
    color: #d1d5db;
}

.btu-results-label {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.btu-result-main {
    color: var(--primary-color);
    font-size: clamp(2.1rem, 3.7vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}

.btu-result-main span {
    white-space: nowrap;
}

.btu-result-sub {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btu-size-band {
    background: rgba(254, 242, 0, 0.12);
    border: 1px solid rgba(254, 242, 0, 0.35);
    border-radius: 14px;
    color: var(--primary-color);
    font-weight: 700;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.btu-survey-note {
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.btu-survey-note {
    border-left: 4px solid var(--primary-color);
    padding-left: 14px;
}

.btu-live-note {
    background: rgba(254, 242, 0, 0.18);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 5px 0 0;
    padding: 14px 18px;
}

.btu-compare-note {
    font-weight: 600;
    margin-bottom: 0;
}

.btu-compare-note a {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.btu-field-note {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.btu-lead-extra {
    display: none;
}

.btu-lead-capture.is-expanded .btu-lead-extra {
    display: block;
}

.btu-lead-capture.is-expanded button.btu-lead-extra {
    display: flex;
}

.btu-info-card {
    padding: 35px;
}

.btu-info-card .service-list li {
    align-items: flex-start;
}

.btu-info-card .service-list span {
    color: var(--primary-color);
    font-weight: 800;
}

.btu-cta-section h2,
.btu-cta-section p {
    color: var(--bg-white);
}

.btu-cta-section p {
    max-width: 720px;
    margin: 0 auto 25px;
    color: #d1d5db;
}

.btu-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.btu-faq-item {
    padding: 30px;
}

/* Air Conditioning Installation - Comfort Showcase */
.comfort-showcase {
    background: #fbfbfc;
    padding: 80px 0 36px;
}

.comfort-showcase .container {
    max-width: 1090px;
}

.comfort-intro {
    max-width: 790px;
    margin: 0 auto 52px;
    text-align: center;
}

.comfort-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #e0c500;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.comfort-intro h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.comfort-rule {
    display: block;
    width: 52px;
    height: 3px;
    margin: 0 auto 17px;
    background: var(--primary-color);
}

.comfort-intro p {
    max-width: 770px;
    margin: 0 auto;
    color: #303744;
    font-size: 0.99rem;
}

.comfort-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.comfort-card {
    position: relative;
    overflow: visible;
    border: 1px solid #e4e7eb;
    border-bottom: 3px solid var(--primary-color);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(17, 24, 39, 0.06);
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}

.comfort-card-icon {
    position: absolute;
    top: -27px;
    left: 50%;
    z-index: 2;
    display: flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--primary-color);
    color: #111827;
    font-weight: 700;
}

.comfort-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.comfort-card-icon-text {
    font-size: 2rem;
}

.comfort-card-media {
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #eef1f4;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block;
}

.comfort-card-media img {
    display: block;
    width: 100% !important;
    height: 176px;
    object-fit: cover;
    object-position: center;
    margin: 0 !important;
    padding: 0 !important;
    transform: scale(1.12); /* Scales image up to crop out the baked-in white border */
}

.comfort-card-body {
    padding: 14px 18px 16px;
    text-align: center;
}

.comfort-card-body h3 {
    margin-bottom: 8px;
    font-size: 1.26rem;
}

.comfort-card-body p {
    margin-bottom: 0;
    color: #29313d;
    font-size: 0.94rem;
}

/* Animations for comfort cards */
.fade-up-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.comfort-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding: 24px 28px;
    border: 1px solid #dfe3e8;
    border-radius: 18px;
    background: #fff;
}

.comfort-cta-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.comfort-cta-copy h3 {
    margin-bottom: 4px;
    font-size: 1.12rem;
}

.comfort-cta-copy p {
    margin-bottom: 0;
    color: #27303b;
}

.comfort-cta-icon {
    display: flex;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 2px solid #111827;
    border-radius: 14px;
    color: #111827;
    font-weight: 800;
}

.comfort-cta-icon svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.comfort-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.comfort-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 800;
}

.comfort-btn svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.comfort-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 40px;
    border-radius: 16px;
    background: #f2f4f6;
}

.comfort-trust-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 22px 20px;
    border-right: 1px solid #d8dde3;
}

.comfort-trust-item:last-child {
    border-right: 0;
}

.comfort-trust-item > span {
    display: flex;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(254, 242, 0, 0.95);
    color: #111827;
    box-shadow: 0 6px 14px rgba(254, 242, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.comfort-trust-item:hover > span {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 242, 0, 0.3);
}

.comfort-trust-item > span svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.comfort-trust-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.comfort-trust-item p {
    margin-bottom: 0;
    color: #29313d;
    font-size: 0.8rem;
}

.comfort-brands {
    margin-top: 22px;
    text-align: center;
}

.product-brands {
    margin-top: -20px;
    margin-bottom: 34px;
}

.product-trust-row {
    margin-top: 44px;
}

.comfort-brands p {
    margin-bottom: 10px;
    color: #1f2937;
}

.comfort-brands div {
    display: inline-grid;
    width: 290px;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    justify-items: center;
    gap: 28px;
}

.comfort-brands div span {
    width: 1px;
    height: 28px;
    background: #cfd5dc;
}

.daikin-wordmark {
    color: #1689ca;
    font-size: 1.55rem;
    font-style: italic;
    letter-spacing: 0.03em;
}

.fujitsu-wordmark {
    color: #d2181c;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
}

.system-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 42px;
}

.system-card {
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-card.reveal-up {
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.page-header h1,
.page-header p,
.page-header .btn {
    opacity: 0;
    animation: heroFadeUp 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-header p {
    animation-delay: 0.12s;
}

.page-header .btn:first-child {
    animation-delay: 0.24s;
}

.page-header .btn:last-child {
    animation-delay: 0.32s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.system-card-media {
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f7f8fa;
    overflow: hidden;
}

.system-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.system-card-media img.system-card-image-focus-high {
    object-position: center 14%;
}

.system-card-body {
    padding: 18px 30px 30px;
    text-align: center;
}

.system-card-label {
    display: inline-flex;
    margin-top: 0;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.system-card-body h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.system-card-body p {
    max-width: 420px;
    margin: 0 auto 18px;
}

.system-card-body ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.system-card-body li {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f4f5f7;
    color: #374151;
    font-size: 0.84rem;
    font-weight: 700;
}

.system-card .btn {
    min-width: 190px;
}

.system-card-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.spec-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.spec-modal.is-open {
    display: flex;
}

.spec-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
}

.spec-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    text-align: center;
}

.spec-modal-dialog h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.spec-modal-dialog p {
    max-width: 360px;
    margin: 0 auto 22px;
}

.spec-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--text-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.spec-modal-close:hover {
    background: var(--primary-color);
}

.spec-modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.spec-modal-actions .btn {
    width: 100%;
    min-width: 0;
    border-color: rgba(17, 24, 39, 0.12);
}

.process-section {
    background: #fff;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.process-line {
    position: absolute;
    top: 34px;
    left: 14%;
    right: 14%;
    border-top: 2px dashed #d9dde3;
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 18px;
    text-align: center;
}

.process-icon {
    display: flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--primary-color);
    box-shadow: 0 0 0 12px var(--bg-white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.process-step-highlight .process-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.process-step:hover .process-icon {
    transform: translateY(-3px);
    box-shadow: 0 0 0 12px var(--bg-white), 0 14px 24px rgba(17, 24, 39, 0.16);
}

.process-step:hover .process-icon svg {
    transform: scale(1.08);
}

.process-step span {
    display: inline-block;
    margin-bottom: 10px;
    color: #8a9099;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.process-step p {
    max-width: 280px;
    margin: 0 auto;
    color: #5a6470;
}

@media (prefers-reduced-motion: reduce) {
    .page-header h1,
    .page-header p,
    .page-header .btn,
    .fade-up-hidden,
    .reveal-up {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

.quote-section {
    padding-top: 92px;
    padding-bottom: 92px;
    background-color: #182131;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
    gap: 72px;
    align-items: center;
}

.quote-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quote-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 18px;
}

.quote-copy > p {
    max-width: 560px;
    margin-bottom: 30px;
    color: #d1d5db;
    font-size: 1.05rem;
}

.quote-benefits {
    display: grid;
    gap: 14px;
    margin-bottom: 38px;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-benefits span {
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.quote-benefits strong {
    color: #fff;
    font-size: 1.05rem;
}

.quote-secondary {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-secondary h4 {
    color: #fff;
    margin-bottom: 8px;
}

.quote-secondary p {
    color: #aeb5bf;
    margin-bottom: 16px;
}

.quote-secondary .btn {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff !important;
}

.quote-secondary .btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--bg-dark) !important;
}

.quote-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    padding: 38px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
}

.quote-card h3 {
    color: #fff;
    margin-bottom: 24px;
}

.quote-card .form-group label {
    color: #d1d5db;
}

.quote-card .form-group input,
.quote-card .form-group textarea {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
}

.quote-card .form-group input::placeholder,
.quote-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.quote-card .btn-block {
    margin-top: 6px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.05rem;
}


/* Responsiveness */
@media (max-width: 1100px) {
    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-submenu {
        position: static;
        display: grid !important;
        min-width: 0;
        max-height: 0;
        margin-top: 0;
        padding: 0 0 0 16px;
        overflow: hidden;
        border: 0;
        border-left: 2px solid rgba(17, 24, 39, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 0.22s ease, margin-top 0.22s ease, opacity 0.18s ease, visibility 0.18s ease;
    }

    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu,
    .nav-dropdown.submenu-open .nav-submenu {
        max-height: 260px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu a {
        padding: 7px 0;
        font-size: 0.95rem;
    }

    .nav-submenu a:hover,
    .nav-submenu a.active {
        background: transparent;
    }

    .header-main .container {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .header-cta {
        display: flex !important;
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .header-cta .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 40px;
    }

    .pb-flex {
        flex-direction: column;
    }

    .btu-calculator-layout,
    .btu-faq-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .service-card:last-child {
        grid-column: span 1;
    }

    .comfort-card-grid,
    .comfort-trust-row,
    .system-card-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .comfort-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .comfort-cta-actions {
        flex-wrap: wrap;
    }

    .comfort-btn {
        flex: 1 1 240px;
    }

    .system-card-actions {
        flex-wrap: wrap;
    }

    .system-card-media {
        height: 220px;
    }

    .spec-modal-dialog {
        padding: 28px 20px 24px;
    }

    .spec-modal-actions {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .process-step {
        padding: 0;
    }

    .quote-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .comfort-trust-item {
        border-right: 0;
        border-bottom: 1px solid #d8dde3;
    }

    .comfort-trust-item:last-child {
        border-bottom: 0;
    }
}

@media (min-width: 1101px) and (max-width: 1250px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .product-section {
        padding-top: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cert-item {
        width: calc(50% - 15px);
    }

    .btu-calculator-card,
    .btu-results-card,
    .btu-info-card,
    .btu-faq-item {
        padding: 25px;
    }

    .btu-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btu-slider-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .animated-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .comfort-showcase {
        padding: 64px 0 28px;
    }

    .comfort-intro h2 br {
        display: none;
    }

    .comfort-card-grid {
        gap: 22px;
    }

    .comfort-card {
        margin-top: 12px;
    }

    .comfort-card-media img {
        height: 184px;
    }

    .comfort-cta {
        margin-top: 48px;
        padding: 24px 20px;
    }

    .comfort-cta-copy {
        align-items: flex-start;
    }

    .comfort-cta-actions {
        flex-direction: column;
    }

    .comfort-btn {
        width: 100%;
        justify-content: center;
    }

    .comfort-trust-item {
        align-items: flex-start;
        padding: 20px 18px;
    }

    .comfort-trust-item > span {
        margin-top: 1px;
    }

    .quote-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .quote-card {
        padding: 26px;
    }
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

/* Animated Stats Section (Elegant Re-design) */
.animated-stats {
    position: relative;
    background-color: var(--bg-dark);
    background-image: url('../images/solomon-by-wasser-air-con-service-car.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.animated-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 0;
}

.animated-stats>.container {
    position: relative;
    z-index: 1;
}

.stats-header {
    margin-bottom: 60px;
}

.stats-header h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.stats-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.stats-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.animated-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px) scale(1.02);
}

.stat-box:hover::before {
    left: 200%;
}

.stat-box>* {
    position: relative;
    z-index: 2;
}

.stat-icon {
    margin-bottom: 30px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
    opacity: 1;
}

.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

/* Specific glows */
.box-boiler {
    box-shadow: 0 8px 32px 0 rgba(255, 107, 107, 0.05);
}

.box-boiler:hover {
    box-shadow: 0 15px 40px 0 rgba(255, 107, 107, 0.25);
    border-color: rgba(255, 107, 107, 0.2);
}

.box-ac {
    box-shadow: 0 8px 32px 0 rgba(77, 171, 247, 0.05);
}

.box-ac:hover {
    box-shadow: 0 15px 40px 0 rgba(77, 171, 247, 0.25);
    border-color: rgba(77, 171, 247, 0.2);
}

.box-certs {
    box-shadow: 0 8px 32px 0 rgba(254, 242, 0, 0.05);
}

.box-certs:hover {
    box-shadow: 0 15px 40px 0 rgba(254, 242, 0, 0.25);
    border-color: rgba(254, 242, 0, 0.2);
}



/* Dark Outline Button */
.btn-outline-dark {
    background-color: transparent;
    color: var(--text-dark) !important;
    border: 2px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background-color: var(--text-dark);
    color: var(--primary-color) !important;
    border-color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-car {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.animate-car.start-animation {
    opacity: 1;
    transform: translateX(0);
}

/* Air Conditioning Maintenance Mock-up */
.maintenance-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.maintenance-hero h1 {
    max-width: 840px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.maintenance-hero p {
    max-width: 720px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.maintenance-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.maintenance-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.maintenance-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.maintenance-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.maintenance-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.maintenance-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.maintenance-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.maintenance-logo-track span {
    white-space: nowrap;
    font-size: 1.5rem;
    font-weight: 800;
    color: #555;
}

.maintenance-showcase {
    background: #fbfbfc;
    padding: 80px 0 56px;
}

.maintenance-intro {
    max-width: 800px;
    margin: 0 auto 46px;
    text-align: center;
}

.maintenance-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.maintenance-intro p {
    max-width: 730px;
    margin: 0 auto;
}

.maintenance-benefit-grid,
.maintenance-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.maintenance-benefit-card,
.maintenance-plan-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.maintenance-benefit-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.maintenance-benefit-icon svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.maintenance-benefit-icon-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.maintenance-benefit-card h3,
.maintenance-plan-card h3 {
    margin-bottom: 12px;
}

.maintenance-benefit-card p {
    margin-bottom: 0;
}

.maintenance-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 18px;
    border: 1px solid #dfe3e8;
    background: #fff;
}

.maintenance-cta h3 {
    margin-bottom: 4px;
}

.maintenance-cta p {
    margin-bottom: 0;
}

.maintenance-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.maintenance-plan-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: #8a9099;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.maintenance-plan-card ul {
    display: grid;
    gap: 12px;
}

.maintenance-plan-card li {
    position: relative;
    padding-left: 22px;
}

.maintenance-plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #111827;
    font-weight: 800;
}

.maintenance-plan-card-highlight {
    border-color: rgba(254, 242, 0, 0.55);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.maintenance-benefit-card:hover,
.maintenance-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.maintenance-quote-section {
    background-color: #182131;
}

@media (max-width: 900px) {
    .maintenance-benefit-grid,
    .maintenance-plan-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .maintenance-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .air-conditioning-page .page-header,
    .air-conditioning-installation-page .page-header,
    .air-conditioning-maintenance-page .page-header,
    .air-conditioning-repair-page .page-header {
        padding: 88px 0 72px !important;
    }

    .maintenance-hero {
        padding: 88px 0 72px;
    }

    .maintenance-showcase {
        padding: 64px 0 42px;
    }

    .maintenance-benefit-card,
    .maintenance-plan-card {
        padding: 24px;
    }
}

/* Air Conditioning Repair Mock-up */
.repair-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.repair-hero h1 {
    max-width: 860px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.repair-hero p {
    max-width: 720px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.repair-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.repair-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.repair-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.repair-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.repair-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.repair-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.repair-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.repair-logo-track span {
    white-space: nowrap;
}

.repair-showcase {
    background: #fbfbfc;
    padding: 80px 0 56px;
}

.repair-intro {
    max-width: 800px;
    margin: 0 auto 46px;
    text-align: center;
}

.repair-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.repair-intro p {
    max-width: 730px;
    margin: 0 auto;
}

.repair-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.repair-benefit-card,
.repair-fault-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.repair-benefit-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.repair-benefit-icon svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-benefit-card h3,
.repair-fault-card h3 {
    margin-bottom: 12px;
}

.repair-benefit-card p,
.repair-fault-card p {
    margin-bottom: 0;
}

.repair-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 24px 28px;
    border-radius: 18px;
    border: 1px solid #dfe3e8;
    background: #fff;
}

.repair-cta h3 {
    margin-bottom: 4px;
}

.repair-cta p {
    margin-bottom: 0;
}

.repair-fault-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.repair-benefit-card:hover,
.repair-fault-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.repair-quote-section {
    background-color: #182131;
}

@media (max-width: 1000px) {
    .repair-fault-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .repair-benefit-grid {
        grid-template-columns: 1fr;
    }

    .repair-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .repair-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .repair-hero {
        padding: 88px 0 72px;
    }

    .repair-showcase {
        padding: 64px 0 42px;
    }

    .repair-benefit-card,
    .repair-fault-card {
        padding: 24px;
    }

    .repair-fault-grid {
        grid-template-columns: 1fr;
    }
}

/* Heating Overview Mock-up */
.heating-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.heating-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.heating-hero p {
    max-width: 760px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.heating-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.heating-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.heating-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.heating-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.heating-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.heating-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.heating-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.heating-logo-track span {
    white-space: nowrap;
}

.heating-services-section {
    background: #fbfbfc;
    padding: 80px 0 56px;
}

.heating-intro {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.heating-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.heating-intro p {
    max-width: 740px;
    margin: 0 auto;
}

.heating-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.heating-service-card,
.heating-benefit-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.heating-service-card {
    display: flex;
    flex-direction: column;
}

.heating-service-card:hover,
.heating-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.heating-service-icon,
.heating-benefit-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.heating-service-icon svg,
.heating-benefit-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.heating-benefit-icon-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.heating-service-card h3,
.heating-benefit-card h3 {
    margin-bottom: 12px;
}

.heating-service-card p {
    margin-bottom: 22px;
}

.heating-benefit-card p {
    margin-bottom: 0;
}

.heating-service-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.heating-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.heating-image-story {
    background: #fff;
    padding: 76px 0;
}

.heating-image-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.heating-image-story-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.heating-image-story-copy p {
    margin-bottom: 22px;
    color: #29313d;
}

.heating-image-story-copy ul {
    display: grid;
    gap: 12px;
}

.heating-image-story-copy li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.heating-image-story-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.heating-image-story-media {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
}

.heating-image-story-media img {
    display: block;
    width: 100%;
    height: auto;
}

.heating-quote-section {
    background-color: #182131;
}

@media (max-width: 1100px) {
    .heating-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .heating-benefit-grid {
        grid-template-columns: 1fr;
    }

    .heating-image-story-grid {
        grid-template-columns: 1fr;
    }

    .heating-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .heating-overview-page .page-header {
        padding: 88px 0 72px !important;
    }

    .heating-services-section {
        padding: 64px 0 42px;
    }

    .heating-image-story {
        padding: 58px 0;
    }

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

    .heating-service-card,
    .heating-benefit-card {
        padding: 24px;
    }
}

/* Boiler Installation Page */
.boiler-install-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.boiler-install-hero h1 {
    max-width: 880px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.boiler-install-hero p {
    max-width: 730px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.boiler-install-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.boiler-install-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.boiler-install-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.boiler-install-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.boiler-install-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.boiler-install-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.boiler-install-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.boiler-install-logo-track span {
    white-space: nowrap;
}

.boiler-install-showcase {
    background: #fbfbfc;
    padding: 64px 0 48px;
}

.boiler-install-intro {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.boiler-install-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.boiler-install-intro p {
    max-width: 740px;
    margin: 0 auto;
}

.boiler-install-benefit-grid,
.boiler-install-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.boiler-install-benefit-card,
.boiler-install-option-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.boiler-install-benefit-card:hover,
.boiler-install-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.boiler-install-benefit-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.boiler-install-benefit-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.boiler-install-benefit-icon-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.boiler-install-benefit-card h3,
.boiler-install-option-card h3 {
    margin-bottom: 12px;
}

.boiler-install-benefit-card p,
.boiler-install-option-card p {
    margin-bottom: 0;
}

.boiler-install-image-story {
    background: linear-gradient(180deg, #fff 0%, #fff 68%, #fbfbfc 100%);
    padding: 64px 0 56px;
}

.boiler-install-image-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.boiler-install-image-story-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.boiler-install-image-story-copy p {
    margin-bottom: 22px;
    color: #29313d;
}

.boiler-install-image-story-copy ul {
    display: grid;
    gap: 12px;
}

.boiler-install-image-story-copy li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.boiler-install-image-story-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.boiler-install-image-story-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
}

.boiler-install-image-story-media img {
    display: block;
    width: 100%;
    height: auto;
}

.boiler-install-icon-media {
    position: relative;
    min-height: 100%;
    padding: 8px 10px;
    background: transparent;
    box-shadow: none;
}

.boiler-install-icon-media img {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: min(440px, 98%);
    max-height: 460px;
    filter:
        drop-shadow(0 0 26px rgba(254, 242, 0, 0.18))
        drop-shadow(0 24px 30px rgba(17, 24, 39, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.boiler-install-icon-media:hover img {
    transform: translateY(-5px) scale(1.025);
    filter:
        drop-shadow(0 0 32px rgba(254, 242, 0, 0.24))
        drop-shadow(0 28px 34px rgba(17, 24, 39, 0.2));
}

.boiler-install-quote-section {
    background-color: #182131;
}

@media (max-width: 900px) {
    .boiler-install-benefit-grid,
    .boiler-install-option-grid,
    .boiler-install-image-story-grid {
        grid-template-columns: 1fr;
    }

    .boiler-install-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .boiler-installation-page .page-header {
        padding: 88px 0 72px !important;
    }

    .boiler-install-showcase {
        padding: 54px 0 38px;
    }

    .boiler-install-image-story {
        padding: 52px 0 42px;
    }

    .boiler-install-benefit-card,
    .boiler-install-option-card {
        padding: 24px;
    }
}

/* Boiler Servicing Page */
.boiler-service-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.boiler-service-hero h1 {
    max-width: 880px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.boiler-service-hero p {
    max-width: 730px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.boiler-service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.boiler-service-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.boiler-service-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.boiler-service-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.boiler-service-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.boiler-service-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.boiler-service-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.boiler-service-logo-track span {
    white-space: nowrap;
}

.boiler-service-image-story {
    background: linear-gradient(180deg, #fff 0%, #fff 68%, #fbfbfc 100%);
    padding: 64px 0 56px;
}

.boiler-service-image-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.boiler-service-image-story-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.boiler-service-image-story-copy p {
    margin-bottom: 22px;
    color: #29313d;
}

.boiler-service-image-story-copy ul {
    display: grid;
    gap: 12px;
}

.boiler-service-image-story-copy li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.boiler-service-image-story-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.boiler-service-image-story-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boiler-service-icon-media {
    padding: 8px 10px;
    background: transparent;
}

.boiler-service-icon-media img {
    width: auto;
    max-width: min(440px, 98%);
    max-height: 460px;
    filter:
        drop-shadow(0 0 26px rgba(254, 242, 0, 0.18))
        drop-shadow(0 24px 30px rgba(17, 24, 39, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.boiler-service-icon-media:hover img {
    transform: translateY(-5px) scale(1.025);
    filter:
        drop-shadow(0 0 32px rgba(254, 242, 0, 0.24))
        drop-shadow(0 28px 34px rgba(17, 24, 39, 0.2));
}

.boiler-service-showcase {
    background: #fbfbfc;
    padding: 64px 0 48px;
}

.boiler-service-intro {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.boiler-service-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.boiler-service-intro p {
    max-width: 740px;
    margin: 0 auto;
}

.boiler-service-benefit-grid,
.boiler-service-included-grid {
    display: grid;
    gap: 24px;
}

.boiler-service-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boiler-service-included-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.boiler-service-benefit-card,
.boiler-service-included-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.boiler-service-benefit-card:hover,
.boiler-service-included-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.boiler-service-benefit-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.boiler-service-benefit-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.boiler-service-benefit-icon-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.boiler-service-benefit-card h3,
.boiler-service-included-card h3 {
    margin-bottom: 12px;
}

.boiler-service-benefit-card p,
.boiler-service-included-card p {
    margin-bottom: 0;
}

.boiler-service-quote-section {
    background-color: #182131;
}

@media (max-width: 1000px) {
    .boiler-service-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .boiler-service-benefit-grid,
    .boiler-service-image-story-grid {
        grid-template-columns: 1fr;
    }

    .boiler-service-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .boiler-servicing-page .page-header {
        padding: 88px 0 72px !important;
    }

    .boiler-service-image-story {
        padding: 52px 0 42px;
    }

    .boiler-service-showcase {
        padding: 54px 0 38px;
    }

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

    .boiler-service-benefit-card,
    .boiler-service-included-card {
        padding: 24px;
    }
}

/* Boiler Repairs Page */
.boiler-repair-hero {
    padding: 120px 0 100px;
    text-align: center;
}

.boiler-repair-hero h1 {
    max-width: 880px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.boiler-repair-hero p {
    max-width: 730px;
    margin: 0 auto 36px;
    color: #ddd;
    font-size: 1.15rem;
}

.boiler-repair-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.boiler-repair-trust-bar {
    border-bottom: 1px solid #e5e7eb;
    background: var(--bg-light);
}

.boiler-repair-trust-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    color: #5a6470;
    font-weight: 700;
}

.boiler-repair-trust-inner strong {
    color: var(--text-dark);
    flex-shrink: 0;
}

.boiler-repair-logo-marquee {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.boiler-repair-logo-track {
    display: inline-flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.boiler-repair-logo-track > div {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    opacity: 0.75;
}

.boiler-repair-logo-track span {
    white-space: nowrap;
}

.boiler-repair-image-story {
    background: linear-gradient(180deg, #fff 0%, #fff 68%, #fbfbfc 100%);
    padding: 64px 0 56px;
}

.boiler-repair-image-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.boiler-repair-image-story-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.boiler-repair-image-story-copy p {
    margin-bottom: 22px;
    color: #29313d;
}

.boiler-repair-image-story-copy ul {
    display: grid;
    gap: 12px;
}

.boiler-repair-image-story-copy li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.boiler-repair-image-story-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.boiler-repair-image-story-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boiler-repair-icon-media {
    padding: 8px 10px;
    background: transparent;
}

.boiler-repair-icon-media img {
    width: auto;
    max-width: min(440px, 98%);
    max-height: 460px;
    filter:
        drop-shadow(0 0 26px rgba(254, 242, 0, 0.18))
        drop-shadow(0 24px 30px rgba(17, 24, 39, 0.18));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.boiler-repair-icon-media:hover img {
    transform: translateY(-5px) scale(1.025);
    filter:
        drop-shadow(0 0 32px rgba(254, 242, 0, 0.24))
        drop-shadow(0 28px 34px rgba(17, 24, 39, 0.2));
}

.boiler-repair-showcase {
    background: #fbfbfc;
    padding: 64px 0 48px;
}

.boiler-repair-intro {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.boiler-repair-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.boiler-repair-intro p {
    max-width: 740px;
    margin: 0 auto;
}

.boiler-repair-benefit-grid,
.boiler-repair-fault-grid {
    display: grid;
    gap: 24px;
}

.boiler-repair-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.boiler-repair-fault-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.boiler-repair-benefit-card,
.boiler-repair-fault-card {
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.boiler-repair-benefit-card:hover,
.boiler-repair-fault-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.boiler-repair-benefit-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.boiler-repair-benefit-icon svg {
    width: 27px;
    height: 27px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.boiler-repair-benefit-icon-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.boiler-repair-benefit-card h3,
.boiler-repair-fault-card h3 {
    margin-bottom: 12px;
}

.boiler-repair-benefit-card p,
.boiler-repair-fault-card p {
    margin-bottom: 0;
}

.boiler-repair-quote-section {
    background-color: #182131;
}

@media (max-width: 1000px) {
    .boiler-repair-fault-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .boiler-repair-benefit-grid,
    .boiler-repair-image-story-grid {
        grid-template-columns: 1fr;
    }

    .boiler-repair-trust-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .boiler-repairs-page .page-header {
        padding: 88px 0 72px !important;
    }

    .boiler-repair-image-story {
        padding: 52px 0 42px;
    }

    .boiler-repair-showcase {
        padding: 54px 0 38px;
    }

    .boiler-repair-fault-grid {
        grid-template-columns: 1fr;
    }

    .boiler-repair-benefit-card,
    .boiler-repair-fault-card {
        padding: 24px;
    }
}

@media (max-width: 1000px) {
    .services-directory-grid,
    .services-intro-grid {
        grid-template-columns: 1fr;
    }

    .services-compliance-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-overview-page .services-hero {
        padding: 88px 0 72px;
    }

    .services-card-links,
    .services-compliance-grid {
        grid-template-columns: 1fr;
    }

    .services-directory-card,
    .services-final-cta {
        padding: 24px;
    }

    .services-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-final-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .services-final-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

