/* ===== Design tokens ===== */
:root {
    --green: #5cba2e;
    --green-dark: #4ea527;
    --green-text: #06330a;
    --blue: #1f3fd6;
    --blue-bar: #1a2fbe;
    --blue-deep: #142bb0;
    --dark: #0a0e16;
    --ink: #1a1a1a;
    --font-display: 'Anton', Impact, sans-serif;
    --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ===== Reset / base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--ink);
    background: var(--dark);
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.btn-green {
    background: var(--green);
    color: var(--green-text);
}
.btn-green:hover { background: var(--green-dark); }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-phone {
    background: var(--green);
    color: #fff;
    padding: 16px 32px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.btn-phone:hover { background: var(--green-dark); }

.btn-outline-blue {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    letter-spacing: 0.08em;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* ===== Header (shared, sticky, transparent over hero) ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
/* fades in a solid background once the page is scrolled */
.site-header.scrolled {
    background-color: rgba(9, 13, 22, 0.96);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-top: 24px;
    padding-bottom: 24px;
    transition: padding 0.35s ease;
}
.site-header.scrolled .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* wordmark-only logo (no tagline) — taller than the old lockup's wordmark */
.logo img {
    height: 40px;
    width: auto;
    transition: height 0.35s ease;
}
.site-header.scrolled .logo img { height: 34px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0 auto;
}

.main-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--green); }

/* ===== Industries dropdown ===== */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--green); }
.nav-caret { font-size: 9px; line-height: 1; transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    background: rgba(9, 13, 22, 0.98);
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 60;
}
/* invisible bridge so moving the cursor down to the menu keeps it open */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px; left: 0; right: 0;
    height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    padding: 11px 24px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 0;
}
.nav-dropdown-menu a:hover { color: var(--green); background: rgba(255, 255, 255, 0.06); }

/* hamburger + mobile call link (hidden on desktop) */
.nav-toggle { display: none; }
.nav-call { display: none; }

/* ===== FAQs page ===== */
.faq-page { background: #fff; padding: 96px 0; }
.faq-page-inner { max-width: 1000px; }
.faq-page-title {
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin: 6px 0 8px;
}
.faq-page-title .green { color: var(--green); }

.faq-block { padding: 34px 0; border-bottom: 1px solid #e6e9ee; }
.faq-block:last-child { border-bottom: 0; padding-bottom: 0; }

.faq-q {
    font-family: var(--font-body);
    font-size: 23px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 16px;
}

.faq-a { font-size: 16px; line-height: 1.75; color: #444; }
.faq-a p { margin: 0 0 16px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0 0 4px; padding-left: 22px; }
.faq-a li { margin-bottom: 10px; line-height: 1.7; }
.faq-a strong { color: var(--dark); font-weight: 700; }

.faq-lead { font-weight: 700; text-decoration: underline; color: var(--dark); }
.faq-sub {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin: 28px 0 12px;
}

@media (max-width: 768px) {
    .faq-page { padding: 64px 0; }
    .faq-page-title { font-size: 30px; }
    .faq-q { font-size: 20px; }
}

/* ===== Home hero (index only) ===== */
.home-hero {
    position: relative;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 200px 0 170px;
}

.home-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 22, 0.72) 0%, rgba(10, 14, 22, 0.5) 35%, rgba(10, 14, 22, 0.16) 70%, rgba(10, 14, 22, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 14, 22, 0.6) 0%, rgba(10, 14, 22, 0.12) 22%, rgba(10, 14, 22, 0.06) 60%, rgba(10, 14, 22, 0.24) 100%);
    z-index: 1;
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-eyebrow {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(64px, 11vw, 150px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    /* Anton's "F" carries ~0.033em of left side bearing; pull the first line
       back so "FLORIDA" sits optically flush with the eyebrow above it */
    text-indent: -0.0333em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Blue diagonal band at the bottom of the hero */
.home-hero .hero-diagonal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background: var(--blue);
    clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* ===== Feature bar ===== */
.feature-bar {
    background: var(--blue-bar);
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

/* smooth curved tab hanging off the bottom-center */
.feature-bar::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -31px;
    transform: translateX(-50%);
    width: 150px;
    height: 36px;
    background: var(--blue-bar);
    clip-path: path("M0,0 H150 V5 C105,6 84,17 75,36 C66,17 45,6 0,5 Z");
    z-index: 3;
}

.feature-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 4px 30px;
    position: relative;
}

.feature + .feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 42px;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.feature-icon {
    color: var(--green);
    flex-shrink: 0;
}
.feature-icon svg { display: none; }
.feature-icon-file { display: block; width: 48px; height: 48px; }

.feature-text h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
}

/* ===== Trusted HVAC Partner ===== */
.partner {
    background: #fff;
    padding: 84px 0 90px;
    overflow: hidden;
}

/* full-bleed: images run to the left viewport edge, text aligned to the right */
.partner-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
}

.partner-media {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.partner-media .img-main-wrap {
    position: relative;
    flex: 1;
}

.partner-media .img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* partner fade-carousel: full-frame slides rotating in place */
.partner-carousel .pc-slide {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.partner-carousel .pc-slide.is-active { opacity: 1; }
.partner-carousel .pc-slide:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.pc-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.pc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.2s ease;
}
.pc-dot.active { background: #fff; }

.partner-body {
    padding-left: 52px;
    padding-right: max(32px, calc((100vw - 1300px) / 2));
}

/* 35 Years anniversary badge: gold artwork on the blue tile */
.badge-35 {
    position: absolute;
    top: 36px;
    right: -36px;   /* straddle the photo's right edge */
    width: 132px;
    height: 132px;
    border-radius: 18px;
    background: #1f3fd6;
    box-shadow: 0 8px 22px rgba(20, 43, 176, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
}
.badge35-svg { width: 100%; height: auto; display: block; }

/* right body */
.eyebrow-dark {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0d1b54;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow-dark .dash {
    display: inline-block;
    width: 34px;
    height: 3px;
    background: var(--green);
}

.partner-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(40px, 4vw, 60px);
    line-height: 0.98;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.partner-title .blue { color: var(--blue); }

.partner-text {
    color: #5b6472;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 620px;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin: 26px 0 30px;
    max-width: 520px;
}
.check-list li {
    position: relative;
    padding-left: 22px;
    color: #0d1b54;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--blue);
}

/* ===== Trusted by Florida's Top Companies ===== */
.clients { background: #fff; }

.clients-head {
    background: #f3f5fa;
    text-align: center;
    padding: 46px 20px 40px;
}

.eyebrow-center {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0d1b54;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eyebrow-center .dash {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--green);
}

.clients-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(30px, 4.4vw, 56px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
}
.clients-title .blue { color: var(--blue); }

/* Row 1: marquee */
.logo-marquee {
    overflow: hidden;
    padding: 34px 0;
    border-bottom: 1px solid #eef0f4;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 76s linear infinite;
}
.logo-marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    height: 46px;
    width: auto;
    object-fit: contain;
    /* spacing lives on the logo (not the track gap) so each duplicated set is
       exactly half the track width and the -50% loop wraps without a jump */
    margin-right: 70px;
}

/* Row 2: static members */
.members-row {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 34px;
    padding-bottom: 44px;
}
.members-label {
    color: #0d1b54;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.members-divider {
    width: 1px;
    align-self: stretch;
    background: #d9dde6;
}
.members-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    flex: 1;
}
.member-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
}

/* ===== Our Services — Built for Every Project ===== */
.services {
    background: #f3f5fa;
    padding: 70px 0 84px;
}

.services-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.services-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 0.98;
    text-transform: uppercase;
    margin-top: 12px;
}
.services-title .blue { color: var(--blue); }

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* carousel controls are hidden until mobile */
.carousel-nav { display: none; }

.service-card {
    position: relative;
    height: 258px;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(13, 27, 84, 0.14);
    border: 1px solid #e6e9f2;
    background: #fff;
}

.service-card .card-bg,
.service-card .card-overlay {
    position: absolute;
    inset: 11px;
    border-radius: 9px;
}
.service-card .card-bg {
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    object-fit: cover;
}
.service-card .card-overlay {
    background: linear-gradient(180deg, rgba(13, 27, 84, 0.15) 0%, rgba(13, 27, 84, 0.45) 45%, rgba(17, 36, 140, 0.92) 100%);
}

/* white rounded tab in the top-left corner */
.service-card .card-tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 74px;
    height: 74px;
    background: #fff;
    border-radius: 16px 0 22px 0;
    box-shadow: 4px 4px 10px rgba(13, 27, 84, 0.14);
}

.service-card .card-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}
.service-card .card-icon svg { width: 30px; height: 30px; }

/* heading row across the top, aligned with the white icon tab */
.service-card .card-title {
    position: absolute;
    top: 0;
    left: 74px;
    right: 16px;
    height: 74px;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-left: 6px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 10px rgba(13, 27, 84, 0.6);
}

.service-card .card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
}
.service-card .card-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.55;
}

/* ===== Who We Serve — Industries Served ===== */
.serve {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 62px 0 84px;
}

.serve-watermark {
    position: absolute;
    left: -90px;
    bottom: -40px;
    width: 560px;
    height: auto;
    opacity: 0.05;
    filter: brightness(0);
    z-index: 0;
    pointer-events: none;
}

.serve .container { position: relative; z-index: 1; }

.serve-head { text-align: center; margin-bottom: 36px; }
.serve-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(30px, 4.2vw, 52px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
}
.serve-title .blue { color: var(--blue); }

.serve-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 18px;
}

.serve-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 28px rgba(13, 27, 84, 0.12);
}
.serve-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 84, 0.18) 0%, rgba(13, 27, 84, 0.35) 48%, rgba(20, 43, 176, 0.85) 100%);
}
.serve-card.big { grid-row: 1 / span 2; }

.serve-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
}

.eyebrow-light {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.eyebrow-light .dash {
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--green);
}

.serve-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
}
.serve-card.big .serve-content h3 { font-size: 30px; }

.serve-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}
.serve-cta .btn { position: relative; z-index: 1; }

/* ===== Our 24HR Service Process ===== */
.process {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 64px 0 80px;
}
.process-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 14, 34, 0.7) 0%, rgba(9, 14, 34, 0.2) 45%, rgba(9, 14, 34, 0.05) 70%),
        linear-gradient(180deg, rgba(9, 14, 34, 0.8) 0%, rgba(12, 22, 72, 0.84) 55%, rgba(20, 40, 150, 0.9) 100%);
}
.process .container { position: relative; z-index: 1; }

.process-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.eyebrow-green {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eyebrow-green .dash {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--green);
}
.process-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.process-title .green { color: var(--green); }

.process-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 6px;
}

.process-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin: 38px 0 44px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.step-card {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 26px 24px 28px;
}
.step-num {
    display: block;
    font-family: var(--font-display);
    color: var(--green);
    font-size: 58px;
    line-height: 1;
    margin-bottom: 14px;
}
.step-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.step-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.6;
}

/* ===== CTA banner ===== */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 78px 0 96px;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 22, 72, 0.62) 0%, rgba(20, 40, 150, 0.72) 50%, rgba(26, 45, 181, 0.97) 100%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
}
.cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}
.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    max-width: 660px;
    margin: 0 auto 30px;
}
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-green { color: #fff; }

/* widen these sections so content isn't compressed in the middle */
.site-header .container,
.home-hero .container,
.page-hero .container,
.cta-banner .container,
.site-footer .container {
    max-width: 1520px;
}
.cta-text { max-width: 860px; }

/* ===== Footer ===== */
.site-footer {
    background: #1a2db5;
    color: #fff;
    padding: 56px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.1fr;
    gap: 40px;
    padding-bottom: 44px;
}

.footer-logo { height: 56px; width: auto; margin-bottom: 22px; }
.footer-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-tagline svg { width: 18px; height: 18px; color: var(--green); }
.footer-tagline .tagline-icon { height: 13px; width: auto; }

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 26px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }

/* contact bar */
.footer-contact {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 22px 10px;
    margin-bottom: 34px;
}
.fc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 26px;
}
.fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fc-icon svg { width: 20px; height: 20px; }
.fc-icon img { width: 46px; height: 46px; display: block; }
.fc-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fc-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.fc-value {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    overflow-wrap: anywhere;
}
a.fc-value:hover { color: var(--green); }
.fc-divider { width: 1px; background: rgba(255, 255, 255, 0.2); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.footer-legal a:hover { color: #fff; }

/* ===== Full-Service HVAC band ===== */
.fullservice {
    position: relative;
    background: #1a2db5;
    padding: 54px 0 58px;
    /* Clip the decorative watermark's right bleed so it can't cause horizontal
       page scroll (esp. on mobile). overflow-x: clip leaves vertical overflow
       visible, so the ::after arrow at bottom:-31px still shows. */
    overflow-x: clip;
}
.fullservice-watermark {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: auto;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}
.fullservice-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.fullservice-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.fullservice-title .green { color: var(--green); }
.fullservice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.75;
}

/* smooth curved notch at the bottom-center */
.fullservice::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -31px;
    transform: translateX(-50%);
    width: 150px;
    height: 36px;
    background: #1a2db5;
    clip-path: path("M0,0 H150 V5 C105,6 84,17 75,36 C66,17 45,6 0,5 Z");
    z-index: 2;
}

/* ===== Built for Every Sector ===== */
.sectors {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 56px 0 80px;
}
.sectors-watermark {
    position: absolute;
    left: -90px;
    top: 46%;
    width: 520px;
    height: auto;
    opacity: 0.05;
    filter: brightness(0);
    z-index: 0;
    pointer-events: none;
}
.sectors .container { position: relative; z-index: 1; }

.sectors-head { text-align: center; }
.sectors-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(32px, 4.4vw, 56px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
}
.sectors-title .blue { color: var(--blue); }

.sectors-intro {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.75;
    margin: 22px 0 40px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.sector-card {
    position: relative;
    min-height: 240px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 28px rgba(13, 27, 84, 0.12);
}
.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 84, 0.25) 0%, rgba(13, 27, 84, 0.45) 45%, rgba(20, 43, 176, 0.9) 100%);
}
.sector-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
    opacity: 0.85;
}
.sector-arrow svg { width: 22px; height: 22px; }

.sector-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 24px;
}
.sector-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.sector-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.55;
    max-width: 460px;
    margin-bottom: 14px;
}
.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap 0.2s ease;
}
.sector-link svg { width: 16px; height: 16px; }
.sector-link:hover { gap: 12px; }

/* ===== Commercial HVAC Services (image left / text right) ===== */
.comm-services {
    background: #fff;
    padding: 72px 0;
}
.comm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.comm-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(13, 27, 84, 0.16);
}
.comm-media img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.comm-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #2540d8;
    opacity: 0.45;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.comm-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}
.comm-title .blue { color: var(--blue); }
.comm-text {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.8;
    max-width: 540px;
}

/* ===== Commercial HVAC Emergency band ===== */
.emergency {
    position: relative;
    background: #1a2db5;
    padding: 40px 0 44px;
}
.emergency-watermark {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 150%;
    width: auto;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}
.emergency-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.emergency-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(30px, 3.8vw, 50px);
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.emergency-title .green { color: var(--green); }
.emergency-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-top: 14px;
}

/* ===== Three blue info cards ===== */
.info-section {
    background: #eef0f5;
    padding: 56px 0 64px;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.info-card {
    position: relative;
    background: var(--blue);
    border-radius: 16px;
    padding: 90px 28px 30px;
    box-shadow: 0 16px 30px rgba(13, 27, 84, 0.18);
}
.info-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 16px 0 22px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    box-shadow: 4px 4px 10px rgba(13, 27, 84, 0.2);
}
.info-tab svg { width: 30px; height: 30px; }
.info-card h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.65;
}
.info-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

/* ===== Commercial HVAC spec list ===== */
.spec-list { background: #fff; }
.spec-row:nth-child(even) { background: #f3f5fa; }

.spec-row-inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    padding-top: 34px;
    padding-bottom: 34px;
    align-items: start;
}
.spec-num {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0d1b54;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.spec-num .dash {
    display: inline-block;
    width: 26px;
    height: 3px;
    background: var(--green);
}
.spec-left h3 {
    color: #0d1b54;
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.spec-right p {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.75;
}
.spec-right p + p { margin-top: 16px; }
.spec-right a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}

/* ===== Other Services We Offer ===== */
.other-services {
    background: #eef0f5;
    padding: 60px 0 80px;
}
.other-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-top: 12px;
    margin-bottom: 40px;
}
.other-title .blue { color: var(--blue); }
.other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.other-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Service Area page (tp5) ===== */
.area-about { background: #fff; padding: 56px 0 64px; }
.area-head { margin-bottom: 36px; }
.area-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.area-about-body p {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.area-about-body h3 {
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 10px 0 12px;
}
.area-about-body .btn { margin-top: 8px; }
.area-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(13, 27, 84, 0.14);
    min-height: 360px;
}
.area-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.service-areas { background: #eef0f5; padding: 58px 0 70px; }
.areas-head { margin-bottom: 30px; }
.areas-sub {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.7;
    max-width: 760px;
    margin-top: 14px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 13px 16px;
    border-radius: 4px;
    color: #0d1b54;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.area-item::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--blue);
    flex-shrink: 0;
}

/* ===== Residential HVAC Services (full-bleed image left) ===== */
.res-services { background: #fff; }
.res-services.res-pad { padding: 62px 0; }
.res-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
}
.res-media img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
    display: block;
}
/* Mid-section image carousel — reuses the .pc-slide fade behavior inside .res-media */
.res-carousel { position: relative; }
.res-body {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 54px;
    padding-right: max(32px, calc((100vw - 1480px) / 2));
}
.res-intro {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}
.res-intro a {
    color: var(--blue);
    font-weight: 600;
}
.res-intro a:hover { text-decoration: underline; }
.res-subhead {
    color: #0d1b54;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.res-list {
    padding-left: 20px;
}
.res-list li {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    list-style: disc;
}
.res-list a {
    color: var(--blue);
    font-weight: 600;
}
.res-list a:hover { text-decoration: underline; }

/* ===== About — Who We Are ===== */
.about-who {
    background: #fff;
    padding: 60px 0 64px;
}
.about-who-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}
.about-brand {
    display: flex;
    align-items: center;
    gap: 26px;
}
.about-brand-logo {
    height: 46px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(38%) saturate(2200%) hue-rotate(216deg) brightness(92%) contrast(96%);
}
.badge-35.is-static {
    position: static;
    inset: auto;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    /* full-bleed: break out of the container so images reach the left edge */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.about-who-body {
    padding-left: 52px;
    padding-right: max(32px, calc((100vw - 1300px) / 2));
}
.about-who-body p {
    color: #5b6472;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.about-who-body a {
    color: var(--blue);
    font-weight: 600;
}
.about-who-body a:hover { text-decoration: underline; }

.about-who-cta {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.about-members {
    background: #fff;
    padding: 6px 0 54px;
}

/* ===== Meet the Owner — His Story ===== */
.owner-story { background: #fff; padding: 58px 0 70px; }
.owner-story-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 56px;
    align-items: start;
}
.story-text p {
    color: #5b6472;
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.story-text a { color: var(--blue); font-weight: 600; }
.story-text a:hover { text-decoration: underline; }

.story-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 18px;
}
.story-divider::before,
.story-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e5ec;
}
.story-divider span {
    color: #9aa3b5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.story-thanks {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-weight: 700;
    font-style: italic;
    margin-top: 6px;
}
.story-thanks .dash {
    display: inline-block;
    width: 26px;
    height: 3px;
    background: var(--green);
    flex-shrink: 0;
}

/* sidebar */
.story-side { position: sticky; top: 100px; }
.side-label {
    color: #0d1b54;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 3px solid var(--green);
    margin-bottom: 16px;
}
.owner-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(13, 27, 84, 0.16);
}
.owner-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.owner-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 84, 0) 40%, rgba(13, 27, 84, 0.9) 100%);
}
.owner-card-name {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
}
.owner-card-name h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.owner-card-name span { color: rgba(255, 255, 255, 0.85); font-size: 13px; font-style: italic; }

.team-card {
    background: var(--blue);
    border-radius: 14px;
    padding: 28px 26px;
    margin-top: 18px;
}
.team-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-card h3 .green { color: var(--green); }
.team-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.team-card .btn-green { color: #fff; }

/* ===== Awards & Achievements ===== */
.awards { background: #f3f5fa; padding: 58px 0 64px; }
.awards-head { margin-bottom: 36px; }
.awards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 6px 32px 0;
}
.award-img {
    flex: 0 0 auto;
    width: auto;
    height: 240px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(13, 27, 84, 0.12);
}
/* slider dots no longer needed in the centered grid */
.awards-dots { display: none; }

/* Wide desktops (>=1240px): keep all five awards on a single row.
   Smaller screens keep the graceful wrap above / swipe carousel <=560px. */
@media (min-width: 1240px) {
    .awards-row { flex-wrap: nowrap; gap: 16px; padding: 6px 16px 0; }
    .award-img { height: 200px; }
}
/* Larger awards on wide monitors (still one row, fits within 1460px). */
@media (min-width: 1500px) {
    .awards-row { max-width: 1460px; gap: 18px; }
    .award-img { height: 240px; }
}

/* ----- Click-to-zoom lightbox for the award images ----- */
.award-img { cursor: zoom-in; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.award-img:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 16px 30px rgba(13, 27, 84, 0.25); }

.award-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(8, 14, 40, 0.9);
    cursor: zoom-out;
    animation: awardFade 0.18s ease;
}
.award-lightbox[hidden] { display: none; }
.award-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    cursor: default;
}
.award-lightbox-close {
    position: absolute;
    top: 16px;
    right: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}
.award-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
@keyframes awardFade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .award-img, .award-img:hover { transform: none; transition: none; }
    .award-lightbox { animation: none; }
}

/* ===== Contact page ===== */
.contact-main { background: #fff; padding: 56px 0 70px; }
.contact-head { text-align: center; margin-bottom: 40px; }
.contact-head .eyebrow-center { justify-content: center; }
.contact-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: clamp(32px, 4.2vw, 54px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
    margin-bottom: 18px;
}
.contact-title .blue { color: var(--blue); }
.contact-sub {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.75;
    max-width: 940px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* form */
.contact-form {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(13, 27, 84, 0.12);
    border: 1px solid #eef0f5;
    padding: 36px;
}
.contact-form h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.form-intro { color: #5b6472; font-size: 13px; line-height: 1.6; margin-bottom: 22px; }
.form-success {
    background: #eaf7e3;
    color: #2f7d1c;
    border: 1px solid #b8e0a6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-error {
    background: #fdecec;
    color: #c0392b;
    border: 1px solid #f3c0bb;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 20px; }
.field label {
    display: block;
    color: #0d1b54;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d5d9e2;
    padding: 8px 0;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    background: transparent;
}
.field input::placeholder,
.field textarea::placeholder { color: #aab1c0; }
.field input:focus { outline: none; border-bottom-color: var(--blue); }
.field select {
    width: 100%;
    border: 1px solid #d5d9e2;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #5b6472;
    background: #fff;
}
.field select:focus { outline: none; border-color: var(--blue); }
.field textarea {
    width: 100%;
    border: 1px solid #d5d9e2;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    min-height: 110px;
    resize: vertical;
}
.field textarea:focus { outline: none; border-color: var(--blue); }
.contact-form .btn-green {
    display: block;
    margin: 8px auto 0;
    color: #fff;
    padding: 15px 40px;
    border: none;
}

/* info column */
.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(13, 27, 84, 0.14);
    height: 300px;
    margin-bottom: 30px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.info-block { margin-bottom: 22px; }
.info-block h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #0d1b54;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}
.info-block p { color: #5b6472; font-size: 14px; line-height: 1.6; }

/* ===== Inner page hero (shared by non-index pages) ===== */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 170px;
    text-align: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 40, 0.84) 0%, rgba(13, 22, 60, 0.66) 38%, rgba(13, 22, 60, 0.8) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 64px;
}

.hero-eyebrow-center {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hero-eyebrow-center .dash {
    display: inline-block;
    width: 34px;
    height: 3px;
    background: var(--green);
}

.page-hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(46px, 7.5vw, 96px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}

.page-hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
}

/* bottom trust strip */
.hero-strip {
    position: relative;
    z-index: 1;
    background: #eef1f6;
}
.hero-strip-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 15px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.hero-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0d1b54;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
/* standalone separator dots: space-between keeps them centered between items */
.hero-strip-sep {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
/* duplicate marquee set is only used on mobile */
.hero-strip-dupe { display: none; }

/* blue stat bar (inner-service variant) */
.hero-statbar {
    position: relative;
    z-index: 1;
    background: #1a2db5;
}
.hero-statbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 4px 30px;
}
.stat-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/* designed stat icons (tile + glyph baked in), in order: 30+ / 24-7 / FL-Wide */
.stat-icon svg { display: none; }
.stat-item:nth-of-type(1) .stat-icon { background-image: url("../img/svg-icons/30-years.svg"); }
.stat-item:nth-of-type(2) .stat-icon { background-image: url("../img/svg-icons/24-hrs.svg"); }
.stat-item:nth-of-type(3) .stat-icon { background-image: url("../img/svg-icons/fl-wide.svg"); }
.stat-text { display: flex; flex-direction: column; line-height: 1.18; text-align: left; }
.stat-num { color: #fff; font-size: 20px; font-weight: 800; }
.stat-label { color: rgba(255, 255, 255, 0.8); font-size: 13px; }
.stat-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.2);
    margin: 6px 0;
}
.statbar-notch {
    position: absolute;
    left: 50%;
    bottom: -31px;
    transform: translateX(-50%);
    width: 150px;
    height: 36px;
    background: #1a2db5;
    clip-path: path("M0,0 H150 V5 C105,6 84,17 75,36 C66,17 45,6 0,5 Z");
    z-index: 2;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .main-nav { gap: 18px; }
    .main-nav a, .nav-dropdown-toggle { font-size: 12px; }
    .header-inner { gap: 28px; }
    .logo img { height: 34px; }
    .btn-phone { font-size: 15px; padding: 14px 24px; }
}

@media (max-width: 900px) {
    .header-inner { gap: 16px; }
    .btn-phone { display: none; }

    /* hamburger */
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 9px;
        margin-left: auto;
        background: transparent;
        border: 0;
        cursor: pointer;
        z-index: 2;
    }
    .nav-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* dropdown menu */
    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 13, 22, 0.98);
        padding: 6px 0 18px;
        box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }
    .site-header.nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav a {
        padding: 15px 32px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Industries dropdown -> inline accordion on mobile */
    .nav-dropdown { display: block; width: 100%; }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 32px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 0;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    /* neutralise the desktop hover/focus transforms when stacked on mobile */
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu { transform: none; }
    .nav-dropdown.is-open .nav-dropdown-menu { max-height: 320px; }
    .nav-dropdown-menu a {
        padding: 13px 48px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-call {
        display: block;
        margin: 16px 32px 0;
        padding: 14px 20px;
        text-align: center;
        background: var(--green);
        color: #fff;
        border-radius: 4px;
        border-bottom: 0;
        font-weight: 700;
    }

    .feature-bar-inner { flex-wrap: wrap; gap: 18px; }
    .feature { flex: 0 0 45%; }
    .feature + .feature::before { display: none; }

    .partner-grid { grid-template-columns: 1fr; gap: 30px; }
    .partner-media { order: 2; }              /* text first, image below */
    .partner-media .img-main { height: 320px; }
    /* no column gap to overhang into on mobile — inset the badge instead */
    .badge-35 { top: 16px; right: 16px; width: 104px; height: 104px; }
    .partner-body { order: 1; padding: 0 32px; }
    .partner-body .btn-outline-blue { display: block; width: 100%; text-align: center; }

    .members-row { flex-direction: column; align-items: center; gap: 26px; }
    .members-divider { display: none; }
    .members-label { text-align: center; }
    .members-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
        place-items: center;
        width: 100%;
        max-width: 360px;
    }
    .member-logo { height: 62px; }

    .services-head { flex-direction: column; align-items: stretch; }
    .services-head .btn { width: 100%; text-align: center; }
    .services-cards { grid-template-columns: 1fr 1fr; gap: 28px; }

    .serve-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .serve-card { min-height: 175px; }
    .serve-card.big { grid-column: 1 / -1; grid-row: auto; min-height: 240px; }

    .process-head { flex-direction: column; align-items: flex-start; gap: 22px; }
    .process-intro { max-width: 100%; }
    .process-steps { grid-template-columns: 1fr 1fr; }

    .hero-strip-inner { flex-wrap: wrap; justify-content: center; gap: 14px 26px; }
    .hero-statbar-inner { flex-direction: column; gap: 18px; }
    .stat-item { justify-content: flex-start; width: 100%; max-width: 320px; }
    .stat-divider { display: none; }

    .fullservice-grid { grid-template-columns: 1fr; gap: 22px; }
    .sectors-grid { grid-template-columns: 1fr; }
    .comm-grid { grid-template-columns: 1fr; gap: 32px; }
    .comm-media img { height: 320px; }

    .emergency-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
    .spec-row-inner { grid-template-columns: 1fr; gap: 12px; }
    .other-grid { grid-template-columns: 1fr; }

    .res-grid { grid-template-columns: 1fr; }
    .res-media img { height: 300px; border-radius: 0; }
    .res-body { padding: 36px 32px; max-width: 100%; }

    .info-cards { grid-template-columns: 1fr; }

    .about-who-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .about-who-grid { grid-template-columns: 1fr; gap: 30px; margin-left: 0; margin-right: 0; }
    .about-who-body { padding: 0 32px; }

    .owner-story-grid { grid-template-columns: 1fr; gap: 36px; }
    .story-side { position: static; }

    .other-grid.cols-4 { grid-template-columns: 1fr 1fr; }
    .area-about-grid { grid-template-columns: 1fr; gap: 30px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
    .other-grid.cols-4 { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand { text-align: center; }
    .footer-logo { margin-left: auto; margin-right: auto; }
    .footer-tagline { justify-content: center; }
    .footer-col h4 { text-align: center; }
    .footer-links a { white-space: normal; }
    .footer-contact { flex-direction: column; gap: 22px; align-items: stretch; }
    .fc-divider { display: none; }
    .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 560px) {
    .process-steps { grid-template-columns: 1fr; }

    /* services → swipeable carousel */
    .services-cards {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }
    .services-cards::-webkit-scrollbar { display: none; }
    .services-cards .service-card {
        flex: 0 0 84%;
        scroll-snap-align: center;
    }
    .carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 22px;
    }
    .carousel-arrow {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: none;
        border: 0;
        cursor: pointer;
        color: var(--blue);
    }
    .carousel-arrow svg { width: 22px; height: 22px; }
    .carousel-arrow:disabled { color: #c2c7d4; cursor: default; }
    .carousel-dots { display: flex; align-items: center; gap: 9px; }
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #c2c7d4;
        border: 0;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    .carousel-dot.active { background: var(--blue); }

    /* index hero */
    .home-hero { padding: 140px 0 70px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    /* CTA buttons stack full-width */
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; text-align: center; }

    /* who we serve → single column, all cards equal & square-ish */
    .serve-grid { grid-template-columns: 1fr; gap: 18px; }
    .serve-card,
    .serve-card.big {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .serve-card.big .serve-content h3 { font-size: 22px; }

    /* feature bar → 2×2 grid, icon tiles above centered text */
    .feature-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px;
    }
    .feature {
        flex: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 0;
    }
    /* use the designed SVG files (tile + icon baked in) instead of the inline outline icons */
    .feature-icon { display: block; }
    .feature-icon svg { display: none; }
    .feature-icon-file {
        display: block;
        width: 56px;
        height: 56px;
    }

    /* trust strip → scrolling marquee */
    .hero-strip { overflow: hidden; }
    .hero-strip-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        max-width: none;
        gap: 0;
        padding: 13px 0;
        animation: heroStripMarquee 26s linear infinite;
        will-change: transform;
    }
    .hero-strip-dupe { display: flex; }
    .hero-strip-item { padding: 0 22px; }
}

@keyframes heroStripMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 560px) and (prefers-reduced-motion: reduce) {
    .hero-strip-inner { animation: none; }
}

/* ===== tp1 mobile tweaks ===== */
@media (max-width: 560px) {
    /* remove the white gap between the blue stat bar and the image below */
    .res-services.res-pad { padding-top: 0; }

    /* hero stat bar → stacked rows, filled green icons, divider line between rows */
    .hero-statbar-inner {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        gap: 0;
        padding: 30px 26px 34px;
    }
    .stat-item {
        width: auto;
        max-width: 100%;
        justify-content: flex-start;
        gap: 18px;
        padding: 14px 0;
    }
    /* larger icon tiles on mobile (background-image set in the base rule) */
    .stat-icon {
        width: 64px;
        height: 64px;
    }
    .stat-text { text-align: left; }
    .stat-num { font-size: 26px; text-transform: uppercase; }
    .stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }
    .stat-divider {
        display: block;
        align-self: flex-start;
        width: 56px;
        height: 1px;
        margin: 0 0 0 82px;
        background: rgba(255, 255, 255, 0.25);
    }

    /* emergency band → drop logo watermark, add diagonal light sweeps, full-width button */
    .emergency .emergency-watermark { display: none; }
    .emergency::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: cover;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 330' preserveAspectRatio='xMaxYMax slice'%3E%3Cg fill='none' stroke='%23ffffff' stroke-linecap='round'%3E%3Cpath d='M-30 360 C120 250 235 175 420 80' stroke-width='58' opacity='0.05'/%3E%3Cpath d='M50 385 C190 280 300 205 470 105' stroke-width='44' opacity='0.045'/%3E%3Cpath d='M150 400 C260 320 350 250 500 150' stroke-width='30' opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
    }
    /* tp2 "Call Now for Service" (info section) → full width */
    .info-cta .btn-outline-blue {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* tp5–tp8 "View All Services" → full width */
    .area-about-body .btn-outline-blue {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* contact "Submit Form" → full width */
    .contact-form .btn-green {
        width: 100%;
        text-align: center;
    }

    /* meet-the-owner → move owner card + "Work With Our Team" above "His Story" */
    .owner-story-grid .story-side { order: -1; }
    .owner-story-grid .story-main { order: 0; }

    /* about (Who We Are) → 35 badge pushed to the right, body text uses more width */
    .about-brand {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }
    .about-who-body { padding: 0 16px; }
    .about-who-cta .btn-outline-blue {
        display: block;
        width: 100%;
        text-align: center;
    }

    .emergency .btn-ghost {
        width: 100%;
        text-align: center;
    }

    /* "Other Services We Offer" heading → centered */
    .other-services .other-head .eyebrow-dark { justify-content: center; }
    .other-services .other-title { text-align: center; }

    /* meet-the-owner "Awards & Achievements" → swipeable carousel */
    .awards-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 6px 24px 0;
    }
    .awards-row::-webkit-scrollbar { display: none; }
    .award-img {
        flex: 0 0 auto;
        width: auto;
        height: 300px;
        scroll-snap-align: center;
    }
    .awards-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
    }
    .awards-dots .dot {
        width: 22px;
        height: 4px;
        border-radius: 2px;
        background: #c2c7d4;
        border: 0;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: width 0.2s ease, background 0.2s ease;
    }
    .awards-dots .dot.is-active {
        width: 30px;
        background: var(--blue);
    }
}
