/* ============================================================
   SPF INDUSTRIAL – MAIN STYLESHEET
   Specialty Performance Flooring
   ============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --navy: #1a2c5e;
    --navy-dark: #142248;
    --navy-mid: #1e3470;
    --orange: #f47c20;
    --orange-dark: #d96a10;
    --white: #ffffff;
    --gray-light: #f4f5f7;
    --gray-border: #dde1e9;
    --text-dark: #1a1a2e;
    --text-body: #333344;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --nav-h: 70px;
    --topbar-h: 42px;
    --transition: 0.22s ease;
    --shadow-nav: 0 4px 24px rgba(26, 44, 94, 0.13);
    --shadow-drop: 0 8px 32px rgba(26, 44, 94, 0.18);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--navy-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}

.topbar__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.topbar__tagline {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-style: italic;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.topbar__stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 0.75rem;
}

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

.topbar__social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.78rem;
    transition: background var(--transition), transform var(--transition);
    background: rgba(255, 255, 255, 0.08);
}

.topbar__social:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.topbar__social--yt {
    background: #ff0000;
    font-size: 0.9rem;
}

.topbar__social--yt:hover {
    background: #cc0000;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.topbar__cta-text {
    color: var(--white);
    font-size: 0.82rem;
    font-style: italic;
    white-space: nowrap;
}

.topbar__phone-icon {
    width: 30px;
    height: 30px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.78rem;
    transition: background var(--transition);
}

.topbar__phone-icon:hover {
    background: var(--orange-dark);
}

.topbar__phone-number {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    white-space: nowrap;
}

.topbar__phone-number:hover {
    color: var(--orange);
}


/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--white);
    height: var(--nav-h);
    box-shadow: var(--shadow-nav);
    position: relative;
    top: auto;
    z-index: auto;
    border-bottom: 2px solid var(--gray-border);
}

.navbar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ── Logo ───────────────────────────────────────── */
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo__img {
    height: 62px;
    width: auto;
    display: block;
}

/* ── Menu ───────────────────────────────────────── */
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 100%;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-item:hover>.nav-link {
    color: var(--navy);
}

.nav-link:hover::after,
.nav-item:hover>.nav-link::after {
    transform: scaleX(1);
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform var(--transition);
    color: var(--navy);
}

.nav-item:hover>.nav-link .nav-arrow {
    transform: rotate(180deg);
}


/* ============================================================
   DROPDOWNS
   ============================================================ */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    min-width: 230px;
    box-shadow: var(--shadow-drop);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 999;
    border-top: 3px solid var(--orange);
}

.nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Two-column dropdown */
.dropdown--two-col {
    width: fit-content;
    display: flex;
    gap: 0;
}

.dropdown--two-col .dropdown__col {
    flex: 1;
}

.dropdown--two-col .dropdown__col+.dropdown__col {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dropdown links */
.dropdown__col {
    padding: 8px 0;
}

.dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: background var(--transition), padding-left var(--transition);
    white-space: nowrap;
}

.dropdown__link:hover {
    background: rgba(255, 255, 255, 0.12);
    padding-left: 26px;
    color: var(--white);
}

.dropdown__link--has-sub {
    color: var(--white);
}

.dropdown__link--has-sub .fa-chevron-right {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform var(--transition);
}

/* Sub-menu */
.dropdown__submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--navy-mid);
    min-width: 200px;
    border-top: 3px solid var(--orange);
    box-shadow: var(--shadow-drop);
    padding: 8px 0;
}

li:hover>.dropdown__submenu {
    display: block;
}

/* Align last dropdown (Resources) so it doesn't go off-screen */
.nav-item:last-child .dropdown {
    left: auto;
    right: 0;
}

.nav-item:last-child .dropdown__submenu {
    left: auto;
    right: 100%;
}


/* ============================================================
   HAMBURGER (mobile)
   ============================================================ */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.navbar__hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero/hero-background.webp') center / cover no-repeat;
    filter: brightness(0.85);
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.90) 40%,
            rgba(255, 255, 255, 0.30) 65%,
            transparent 100%);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* ── Hero Copy ──────────────────────────────────── */
.hero__content {
    padding-top: 20px;
}

.hero__heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: none;
}

.hero__body p {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 620px;
}

.hero__body a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero__body a:hover {
    color: var(--orange);
}


/* ============================================================
   QUOTE FORM PANEL
   ============================================================ */
.hero__form-panel {
    background: var(--orange);
    padding: 30px 28px 36px;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(26, 44, 94, 0.28);
}

.quote-form__title {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.quote-form__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 40px;
    margin-bottom: 22px;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.02em;
}

.quote-form__phone:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.quote-form__phone .fa-phone-flip {
    font-size: 1.1rem;
}

.quote-form__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-body);
}

.required {
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 2px;
    transition: background var(--transition), border-color var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    border-bottom-color: var(--white);
}

.form-group--half input {
    max-width: 160px;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.quote-form__submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 3px;
    transition: background var(--transition), transform var(--transition);
    width: 100%;
    cursor: pointer;
}

.quote-form__submit:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}


/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust {
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

/* Parallax background */
.trust__parallax {
    position: absolute;
    inset: -30%;
    /* oversized so parallax has room to move */
    background:
        url('../img/trust/trust-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

/* Fallback solid bg so section isn't blank if image missing */
.trust {
    background-color: #f8f8f6;
}

.trust__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust__heading {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.trust__subtext {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto 48px;
}

.trust__subtext a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.trust__subtext a:hover {
    color: var(--orange);
}

/* 3-col image grid */
.trust__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.trust__img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 44, 94, 0.12);
    aspect-ratio: 3 / 4;
    /* ← portrait ratio, taller than wide */
    min-height: 420px;
    /* ← floor height so it never shrinks too small */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust__img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 44, 94, 0.2);
}

.trust__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.trust__img-wrap:hover img {
    transform: scale(1.04);
}

/* Learn More button */
.trust__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 52px;
    border-radius: 40px;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.02em;
}

.trust__btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .trust {
        padding: 56px 16px;
    }

    .trust__parallax {
        background-attachment: scroll;
        /* fixed doesn't work well on iOS */
    }

    .trust__gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust__btn {
        width: 100%;
        max-width: 360px;
    }
}

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

    /* Keep 3rd image full-width */
    .trust__img-wrap:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
        /* ← wide landscape when it spans full row */
        min-height: 0;
    }
}

/* ============================================================
   WHY SEAMLESS SECTION
   ============================================================ */
.why {
    background: var(--navy);
    padding: 80px 24px;
}

.why__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why__heading {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.why__subtext {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 790px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* 4-col grid */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Outer faint ring */
.why__icon-wrap {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background var(--transition);
}

.why__card:hover .why__icon-wrap {
    background: rgba(255, 255, 255, 0.13);
}

/* Inner white circle */
.why__icon-ring {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

.why__card:hover .why__icon-ring {
    transform: scale(1.08);
}

.why__icon-ring img {
    width: 142px;
    height: 142px;
    object-fit: contain;
}

.why__card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.why__card-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 240px;
}

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

@media (max-width: 480px) {
    .why {
        padding: 56px 16px;
    }

    .why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================================
   SERVICES SHOWCASE
   ============================================================ */
.showcase {
    width: 100%;
    overflow: hidden;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    aspect-ratio: 12 / 4;
}

.showcase__item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

/* Image fills the card */
.showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase__item:hover img {
    transform: scale(1.06);
}

/* Label bar at bottom */
.showcase__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: background var(--transition);
}

.showcase__item:hover .showcase__label {
    background: #f0f2f8;
}

.showcase__label strong {
    font-weight: 700;
    color: var(--text-dark);
}

.showcase__label span {
    font-weight: 400;
}

/* Orange arrow box */
.showcase__arrow {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.showcase__item:hover .showcase__arrow {
    background: var(--orange-dark);
    transform: translateX(4px);
}

/* Dividers between columns */
.showcase__item+.showcase__item {
    border-left: 3px solid var(--white);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .showcase__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .showcase__item {
        min-height: 280px;
    }

    .showcase__item+.showcase__item {
        border-left: none;
        border-top: 3px solid var(--white);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .showcase__grid {
        min-height: 300px;
    }
}

/* ============================================================
   WHERE WE WORK
   ============================================================ */
.wherework {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 60px;
    background-color: #f5f4f2;
}

.wherework__parallax {
    position: absolute;
    inset: -30%;
    background: url('../img/trust/trust-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.wherework__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header: centered top ── */
.wherework__header {
    text-align: center;
    margin-bottom: 40px;
}

.wherework__heading {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.wherework__subtext {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Body: map is the main element, legend overlays left ── */
.wherework__body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 520px;
}

/* ── Map: centered, takes most of the space ── */
.wherework__map {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.wherework__map img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(26, 44, 94, 0.10));
}

/* ── Left panel: absolutely positioned over map left side ── */
.wherework__left {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 2;
    max-width: 280px;
}

.wherework__areas-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.wherework__legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.wherework__legend-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.wherework__swatch {
    width: 46px;
    height: 34px;
    border-radius: 4px;
    flex-shrink: 0;
}

.wherework__swatch--palmbeach {
    background: #2ab5a0;
}

.wherework__swatch--broward {
    background: #f47c20;
}

.wherework__swatch--miami {
    background: var(--navy);
}

/* ── Address card + arrow: bottom center ── */
.wherework__address-wrap {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
    white-space: nowrap;
}

.wherework__address-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 18px 28px;
    text-align: center;
    min-width: 210px;
}

.wherework__address-card .fa-location-dot {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

.wherework__address-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.wherework__address-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.wherework__arrow {
    width: 100px;
    flex-shrink: 0;
    opacity: 0.65;
}

.wherework__arrow svg {
    width: 100%;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .wherework {
        padding: 56px 16px 40px;
    }

    .wherework__parallax {
        background-attachment: scroll;
    }

    .wherework__body {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        gap: 24px;
    }

    .wherework__left {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .wherework__map {
        max-width: 100%;
    }

    .wherework__address-wrap {
        position: static;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }

    .wherework__arrow {
        display: none;
    }
}

/* ============================================================
   HELPING HAND SECTION
   ============================================================ */
.helping {
    background: var(--navy);
}

.helping__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* ── Left panel ── */
.helping__left {
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* ← top-aligned, not centered */
    gap: 24px;
}

.helping__heading {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.helping__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.97rem;
    line-height: 1.75;
}

.helping__cta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.helping__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.helping__btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.helping__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.helping__phone:hover {
    color: var(--orange);
}

/* Circular orange icon — matches topbar style */
.helping__phone .fa-phone-flip {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
    transition: background var(--transition);
}

.helping__phone:hover .fa-phone-flip {
    background: var(--orange-dark);
}

/* ── Right panel: parallax image + feature list ── */
.helping__right {
    position: relative;
    overflow: hidden;
}

.helping__parallax {
    position: absolute;
    inset: -30%;
    background: url('../img/helping/helping-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay so text stays readable */
.helping__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 34, 72, 0.52);
    z-index: 1;
}

.helping__features {
    position: relative;
    z-index: 2;
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.helping__feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 36px;
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background var(--transition);
    min-height: 96px;
}

.helping__feature:last-child {
    border-bottom: none;
}

.helping__feature:hover {
    background: rgba(255, 255, 255, 0.08);
}

.helping__feature img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    /* makes SVGs white */
    opacity: 0.9;
}

.helping__feature span {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .helping__inner {
        grid-template-columns: 1fr;
    }

    .helping__left {
        padding: 48px 24px;
    }

    .helping__parallax {
        background-attachment: scroll;
    }

    .helping__right {
        min-height: 420px;
    }

    .helping__feature {
        padding: 0 24px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .helping__left {
        padding: 48px 36px;
    }

    .helping__feature {
        padding: 0 24px;
    }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: #f0f1f5;
}

/* White title bar */
.testimonials__titlebar {
    background: var(--white);
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-border);
}

.testimonials__title {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
}

/* Two-col layout */
.testimonials__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Left photo */
.testimonials__img-wrap {
    overflow: hidden;
    max-height: 400px;
    /* ← locks image height to match slider content */
}

.testimonials__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right slider panel */
.testimonials__slider {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* ← top-aligned, no giant gap */
    padding: 40px 40px 32px;
    position: relative;
    overflow: hidden;
}

/* Track — hides all but active slide */
.testimonials__track {
    width: 100%;
    position: relative;
}

.testimonials__slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.testimonials__slide.is-active {
    display: flex;
}

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

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

/* Avatar */
.testimonials__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.testimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Initial fallback avatar */
.testimonials__avatar--initial {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__avatar--initial span {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

/* Name */
.testimonials__name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

/* Stars */
.testimonials__stars {
    color: #ffc107;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

/* Review text */
.testimonials__review {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.75;
    max-width: 400px;
}

/* Dots */
.testimonials__dots {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.testimonials__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    padding: 0;
}

.testimonials__dot.is-active {
    background: var(--white);
    border-color: var(--white);
}

/* ── Testimonials mobile ── */
@media (max-width: 768px) {
    .testimonials__body {
        grid-template-columns: 1fr;
    }

    .testimonials__img-wrap {
        max-height: 260px;
    }

    .testimonials__slider {
        padding: 32px 24px 28px;
    }
}

/* ============================================================
   PAST CLIENTS
   ============================================================ */
.pastclients {
    background: #f0f1f5;
    padding: 64px 24px 56px;
}

.pastclients__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pastclients__heading {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.pastclients__text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto 48px;
}

/* ── Carousel ── */
.pastclients__carousel {
    margin-bottom: 32px;
}

.pastclients__page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeIn 0.4s ease;
}

.pastclients__page.is-active {
    display: grid;
}

.pastclients__logo-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.pastclients__logo-card:hover {
    box-shadow: 0 6px 24px rgba(26, 44, 94, 0.1);
    transform: translateY(-3px);
}

.pastclients__logo-card img {
    max-width: 190px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.pastclients__logo-card:hover img {
    filter: grayscale(0%);
}

/* Dots */
.pastclients__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.pastclients__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(26, 44, 94, 0.2);
    border: 2px solid rgba(26, 44, 94, 0.3);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    padding: 0;
}

.pastclients__dot.is-active {
    background: var(--navy);
    border-color: var(--navy);
}

/* CTA link */
.pastclients__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.pastclients__cta:hover {
    color: var(--orange);
}

.pastclients__cta strong {
    font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pastclients {
        padding: 48px 16px;
    }

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

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

/* ============================================================
   SPECIALISTS SHOWCASE
   ============================================================ */
.specialists__titlebar {
    background: var(--navy);
    padding: 22px 24px;
    text-align: center;
}

.specialists__title {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.specialists__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    aspect-ratio: 12 / 4;
}

.specialists__item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.specialists__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.specialists__item:hover img {
    transform: scale(1.06);
}

/* Label bar */
.specialists__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    transition: background var(--transition);
}

.specialists__item:hover .specialists__label {
    background: #f0f2f8;
}

/* Orange arrow */
.specialists__arrow {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.specialists__item:hover .specialists__arrow {
    background: var(--orange-dark);
    transform: translateX(4px);
}

/* Dividers */
.specialists__item+.specialists__item {
    border-left: 2px solid var(--white);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .specialists__grid {
        grid-template-columns: repeat(2, 1fr);
        aspect-ratio: auto;
    }

    .specialists__item {
        min-height: 220px;
    }

    .specialists__item:nth-child(odd) {
        border-left: none;
    }

    .specialists__item:nth-child(3),
    .specialists__item:nth-child(4) {
        border-top: 2px solid var(--white);
    }
}

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

    .specialists__item+.specialists__item {
        border-left: none;
        border-top: 2px solid var(--white);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    overflow: hidden;
    background-color: #f5f4f2;
}

.footer__parallax {
    position: absolute;
    inset: -30%;
    background: url('../img/trust/trust-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: grid;
    grid-template-columns: 260px 160px 1fr 280px;
    gap: 48px;
    align-items: start;
}

/* ── Brand col ── */
.footer__logo-link {
    display: block;
    margin-bottom: 28px;
}

.footer__logo-link img {
    width: 150px;
    height: auto;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.footer__contact li a:hover {
    color: var(--orange);
}

.footer__contact li a i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

/* ── Column titles ── */
.footer__col-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

/* ── Nav links ── */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links li a {
    color: var(--text-body);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links li a:hover {
    color: var(--orange);
}

/* ── Industries two-col ── */
.footer__industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

/* ── Newsletter ── */
.footer__col--newsletter .footer__col-title {
    text-align: center;
}

.footer__col--newsletter .footer__socials {
    justify-content: center;
}

.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.footer__newsletter input {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid var(--gray-border);
    border-radius: 28px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.85);
    outline: none;
    margin-bottom: 14px;
    transition: border-color var(--transition);
}

.footer__newsletter input:focus {
    border-color: var(--navy);
}

.footer__newsletter input::placeholder {
    color: #aaa;
}

.footer__newsletter button {
    align-self: center;
    width: 100%;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.footer__newsletter button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* ── Socials ── */
.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer__social:hover {
    background: var(--navy);
    color: var(--white);
}

.footer__social--yt {
    border-color: #ff0000;
    color: #ff0000;
}

.footer__social--yt:hover {
    background: #ff0000;
    color: var(--white);
    border-color: #ff0000;
}

/* ── Bottom bar ── */
.footer__bottom {
    position: relative;
    z-index: 1;
    background: rgba(240, 241, 245, 0.9);
    border-top: 1px solid var(--gray-border);
    padding: 16px 24px;
    text-align: center;
    color: rgba(26, 44, 94, 0.6);
    font-size: 0.82rem;
}

/* ── Credits bar ── */
.footer__credits {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    padding: 18px 24px;
    text-align: center;
}

.footer__credits-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.footer__credits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 6px;
    font-size: 0.72rem;
    color: var(--text-body);
    line-height: 1.8;
}

.footer__credits-list a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
    white-space: nowrap;
}

.footer__credits-list a:hover {
    color: var(--orange);
}

.footer__credits-list a+a::before {
    content: '\00a0\2022\00a0';
    color: var(--gray-border);
    text-decoration: none;
    display: inline;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__col--industries {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer__parallax {
        background-attachment: scroll;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        padding: 48px 16px 32px;
        gap: 36px;
    }

    .footer__col--industries {
        grid-column: auto;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {

    .topbar__cta-text,
    .topbar__tagline {
        display: none;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 0.82rem;
    }
}

/* ── Mobile (≤768px) ────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --topbar-h: 38px;
    }

    .topbar__center {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: calc(var(--topbar-h) + var(--nav-h));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        overflow-y: auto;
        gap: 0;
        padding-bottom: 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 998;
    }

    .navbar__menu.is-open {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--gray-border);
        overflow: hidden;
    }

    .nav-link {
        width: 100%;
        padding: 16px 20px;
        height: auto;
        font-size: 1rem;
        justify-content: space-between;
    }

    .nav-link::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, visibility 0s linear 0.3s;
        box-shadow: none;
        border-top: none;
        width: 100%;
        min-width: 0;
    }

    .dropdown--two-col {
        flex-direction: column;
        min-width: 0;
        width: 100%;
    }

    .nav-item.is-open>.dropdown {
        visibility: visible;
        max-height: 800px;
        transition: max-height 0.4s ease;
    }

    /* ── Hero: content first, form second on mobile ── */
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 32px;
    }

    .hero__content {
        order: 1;
    }

    .hero__form-panel {
        order: 2;
    }

    /* Near-solid overlay so text is always readable on mobile */
    .hero__overlay {
        background: rgba(255, 255, 255, 0.94);
    }

    .hero__heading {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }

    .quote-form__phone {
        font-size: 1.25rem;
    }
}

/* ── Small mobile ───────────────────────────────── */
@media (max-width: 420px) {
    .logo__img {
        height: 44px;
    }
}

/* ============================================================
   PAGE HERO (interior pages — Company, Services, etc.)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Parallax background */
.page-hero__parallax {
    position: absolute;
    inset: -30%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}

/* Subtle dark scrim so cards pop */
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 50, 0.35);
    z-index: 1;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    align-items: stretch;
}

/* ── White left card ── */
.page-hero__card {
    background: var(--white);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-radius: 4px 0 0 4px;
}

.page-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.page-hero__text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
}

.page-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 28px;
    align-self: flex-start;
    transition: background var(--transition), transform var(--transition);
}

.page-hero__btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* ── Orange right panel ── */
.page-hero__quote {
    background: var(--orange);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 0 4px 4px 0;
}

.page-hero__quote-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

.page-hero__quote-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 40px;
    letter-spacing: 0.02em;
    width: 100%;
    transition: background var(--transition), transform var(--transition);
}

.page-hero__quote-phone:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.page-hero__quote-phone .fa-phone-flip {
    font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
    }

    .page-hero__parallax {
        background-attachment: scroll;
    }

    .page-hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        gap: 0;
    }

    .page-hero__card {
        border-radius: 4px 4px 0 0;
        padding: 36px 24px;
    }

    .page-hero__quote {
        border-radius: 0 0 4px 4px;
        padding: 32px 24px;
    }
}

/* ============================================================
   HOW CAN WE HELP (Company page)
   ============================================================ */
.howhelp {
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    background-color: #f5f4f2;
}

.howhelp__parallax {
    position: absolute;
    inset: -30%;
    background: url('../img/trust/trust-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.howhelp__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.howhelp__heading {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
}

.howhelp__text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 980px;
}

.howhelp__text a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.howhelp__text a:hover {
    color: var(--orange);
}

.howhelp__cta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.howhelp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 16px 36px;
    border-radius: 28px;
    transition: background var(--transition), transform var(--transition);
}

.howhelp__btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.howhelp__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.howhelp__phone:hover {
    color: var(--orange);
}

.howhelp__phone .fa-phone-flip {
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color var(--transition);
}

.howhelp__phone:hover .fa-phone-flip {
    color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .howhelp {
        padding: 56px 16px;
    }

    .howhelp__parallax {
        background-attachment: scroll;
    }

    .howhelp__btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   ABOUT US (Company page)
   ============================================================ */
.about {
    background: var(--navy);
}

.about__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

/* ── Left text panel ── */
.about__left {
    padding: 64px 56px 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__heading {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about__body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.8;
}

/* ── Right parallax + features ── */
.about__right {
    position: relative;
    overflow: hidden;
}

.about__parallax {
    position: absolute;
    inset: -30%;
    background: url('../img/helping/helping-bg.webp') center / cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}

.about__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 50, 0.55);
    z-index: 1;
}

.about__features {
    position: relative;
    z-index: 2;
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 36px;
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background var(--transition);
}

.about__feature:last-child {
    border-bottom: none;
}

.about__feature:hover {
    background: rgba(255, 255, 255, 0.06);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.about__feature-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.about__feature-body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .about__inner {
        grid-template-columns: 1fr;
    }

    .about__left {
        padding: 48px 24px;
    }

    .about__parallax {
        background-attachment: scroll;
    }

    .about__right {
        min-height: 380px;
    }

    .about__feature {
        padding: 28px 24px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .about__left {
        padding: 48px 36px 48px 24px;
    }

    .about__feature {
        padding: 28px 24px;
    }
}

/* ============================================================
   PASSIONATE (Company page)
   ============================================================ */
.passionate {
    background: #f0f1f5;
    padding: 72px 24px;
}

.passionate__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Left slider ── */
.passionate__slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.passionate__track {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.passionate__slide {
    display: none;
    animation: fadeIn 0.4s ease;
}

.passionate__slide.is-active {
    display: block;
}

.passionate__slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Dots */
.passionate__dots {
    display: flex;
    gap: 10px;
}

.passionate__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(26, 44, 94, 0.2);
    border: 2px solid rgba(26, 44, 94, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.passionate__dot.is-active {
    background: var(--navy);
    border-color: var(--navy);
}

/* ── Right content ── */
.passionate__heading {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.passionate__text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .passionate {
        padding: 48px 16px;
    }

    .passionate__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .passionate__slide img {
        height: 280px;
    }
}

/* ============================================================
   CLIENT REVIEWS (Company page)
   ============================================================ */
.creviews {
    background: var(--white);
    padding: 64px 24px;
}

.creviews__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.creviews__heading {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

/* Page visibility */
.creviews__page {
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.4s ease;
}

.creviews__page.is-active {
    display: flex;
}

/* Card */
.creviews__card {
    background: #f0f1f5;
    border-radius: 6px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    gap: 0 28px;
    align-items: center;
    position: relative;
}

/* Big quote mark */
.creviews__quote-mark {
    position: absolute;
    top: 20px;
    left: 16px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(26, 44, 94, 0.12);
    font-family: Georgia, serif;
    pointer-events: none;
}

/* Left: avatar + name + stars stacked */
.creviews__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    grid-row: 1 / 3;
}

.creviews__avatar {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.creviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Initial fallback */
.creviews__avatar--initial {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.creviews__avatar--initial span {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.creviews__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

.creviews__stars {
    display: flex;
    gap: 3px;
    color: var(--orange);
    font-size: 0.9rem;
}

/* Review text */
.creviews__text {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.75;
    grid-column: 2;
    text-align: center;
}

/* Dots */
.creviews__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.creviews__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(26, 44, 94, 0.15);
    border: 2px solid rgba(26, 44, 94, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.creviews__dot.is-active {
    background: var(--navy);
    border-color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .creviews__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .creviews__left {
        grid-row: auto;
    }

    .creviews__text {
        grid-column: 1;
    }

    .creviews {
        padding: 48px 16px;
    }
}

/* ============================================================
   PAST CLIENTS (Company page)
   ============================================================ */
.cpastclients {
    background: #f0f1f5;
    padding: 56px 24px;
}

.cpastclients__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cpastclients__heading {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 36px;
}

.cpastclients__page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeIn 0.4s ease;
}

.cpastclients__page.is-active {
    display: grid;
}

.cpastclients__logo-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.cpastclients__logo-card:hover {
    box-shadow: 0 6px 24px rgba(26, 44, 94, 0.1);
    transform: translateY(-3px);
}

.cpastclients__logo-card img {
    max-width: 190px;
    max-height: 190px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cpastclients__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.cpastclients__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(26, 44, 94, 0.15);
    border: 2px solid rgba(26, 44, 94, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.cpastclients__dot.is-active {
    background: var(--navy);
    border-color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cpastclients {
        padding: 40px 16px;
    }

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

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

/* ============================================================
   SURFACES (Resinous Flooring page)
   ============================================================ */
.surfaces {
    background: var(--white);
    padding-bottom: 4rem;
}

.surfaces__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.surfaces__heading {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
}

.surfaces__subheading {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-top: 8px;
}

.surfaces__subtext {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.surfaces__subtext a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.surfaces__subtext a:hover {
    color: var(--orange);
}

/* ── 2-col image grid ── */
.surfaces__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: var(--white);
    max-width: 1200px;
    /* ← match the text container width */
    margin: 0 auto;
    /* ← center it */
    padding: 0 24px;
    /* ← same side padding as .surfaces__inner */
}

.surfaces__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

/* Image zoom on hover */
.surfaces__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.surfaces__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.surfaces__item:hover .surfaces__img-wrap img {
    transform: scale(1.08);
}

/* Dark overlay */
.surfaces__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(10, 20, 50, 0.35);
    transition: background var(--transition);
}

.surfaces__item:hover .surfaces__overlay {
    background: rgba(10, 20, 50, 0.50);
}

/* Label text */
.surfaces__label {
    font-family: var(--font-head);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 0 20px;
}

/* Learn More pill button */
.surfaces__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 28px;
    transition: background var(--transition), transform var(--transition);
}

.surfaces__item:hover .surfaces__btn {
    background: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .surfaces__grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .surfaces__item {
        aspect-ratio: 4 / 3;
    }

    .surfaces__inner {
        padding: 48px 16px 32px;
    }
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram {
    background: var(--white);
    padding: 56px 24px;
}

.instagram__header {
    text-align: center;
    margin-bottom: 28px;
}

.instagram__title {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.instagram__title .fa-instagram {
    font-size: 1.4rem;
    color: var(--navy);
}

/* 6-col photo strip */
.instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram__item {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity var(--transition);
}

.instagram__item:hover img {
    transform: scale(1.06);
    opacity: 0.88;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .instagram {
        padding: 40px 16px;
    }

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

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

/* ============================================================
   INDUSTRIES CAROUSEL
   ============================================================ */
.indcarousel {
    background: var(--white);
}

.indcarousel__titlebar {
    background: var(--navy);
    padding: 20px 24px;
    text-align: center;
}

.indcarousel__title {
    font-family: var(--font-head);
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
}

/* Pages */
.indcarousel__page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    animation: fadeIn 0.4s ease;
}

.indcarousel__page.is-active {
    display: grid;
}

/* Each item */
.indcarousel__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
}

.indcarousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.indcarousel__item:hover img {
    transform: scale(1.06);
}

/* White label bar at bottom */
.indcarousel__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 12px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.04em;
    transition: background var(--transition);
}

.indcarousel__item:hover .indcarousel__label {
    background: #f0f2f8;
}

/* Dividers */
.indcarousel__item+.indcarousel__item {
    border-left: 2px solid #f0f1f5;
}

/* Dots */
.indcarousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 28px;
    background: var(--navy);
}

.indcarousel__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.indcarousel__dot.is-active {
    background: var(--white);
    border-color: var(--white);
}

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

    .indcarousel__item+.indcarousel__item:nth-child(odd) {
        border-left: none;
    }

    .indcarousel__item:nth-child(3),
    .indcarousel__item:nth-child(4) {
        border-top: 2px solid #f0f1f5;
    }
}

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

    .indcarousel__item+.indcarousel__item {
        border-left: none;
        border-top: 2px solid #f0f1f5;
    }
}

/* ============================================================
   TERRAZZO PAGE — additional styles
   Append to static/css/style.css (after concrete styles)
   ============================================================ */

/* ── Benefits Strip ─────────────────────────────────────── */
.benefits-strip {
    background: #1B2A4A;
    padding: 5rem 1.5rem;
}

.benefits-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-strip__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.benefit-item:hover {
    border-color: #E07B39;
    background: rgba(224, 123, 57, 0.06);
}

.benefit-item__icon {
    font-size: 2rem;
    color: #E07B39;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 0.65rem;
}

.benefit-item__text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Process Steps ───────────────────────────────────────── */
.process-section {
    background: #f5f6f8;
    padding: 5rem 1.5rem;
}

.process-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.process-section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-section__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1B2A4A;
    margin-bottom: 0.75rem;
}

.process-section__sub {
    font-size: 1rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #dde1e9;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #E07B39;
    line-height: 1;
    min-width: 3rem;
    text-align: center;
}

.process-step__content {
    flex: 1;
}

.process-step__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1B2A4A;
    margin-bottom: 0.4rem;
}

.process-step__text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Applications ────────────────────────────────────────── */
.applications-section {
    background: #fff;
    padding: 5rem 1.5rem;
}

.applications-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.applications-section__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1B2A4A;
    margin-bottom: 0.75rem;
}

.applications-section__sub {
    font-size: 1rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.applications-list__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #f0f2f6;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1B2A4A;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.applications-list__item i {
    color: #E07B39;
    font-size: 0.85rem;
}

.applications-list__item:hover {
    background: #1B2A4A;
    border-color: #1B2A4A;
    color: #fff;
}

.applications-list__item:hover i {
    color: #E07B39;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #E07B39 0%, #c5652a 100%);
    padding: 4rem 1.5rem;
}

.cta-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner__text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 520px;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-banner__btn--primary {
    background: #1B2A4A;
    color: #fff;
}

.cta-banner__btn--secondary {
    background: #fff;
    color: #1B2A4A;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 0.75rem;
    }

    .process-step__number {
        font-size: 2rem;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

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

/* ── Industries Section ──────────────────────────────────── */
.industries-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.industries-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.industries-section__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1B2A4A;
    margin-bottom: 1.5rem;
}

.industries-section__subheading {
    font-size: 1rem;
    color: #1B2A4A;
    margin: 1.5rem 0 0.75rem;
}

.industries-section__intro {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.75;
    max-width: 860px;
    margin: 0 auto;
}

/* ── Industry Cards Grid ─────────────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.industry-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.industry-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.industry-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.industry-card:hover .industry-card__img-wrap img {
    transform: scale(1.05);
}

.industry-card__label {
    background: #fff;
    color: #1B2A4A;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    border-top: 3px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.industry-card:hover .industry-card__label {
    border-color: #E07B39;
    color: #E07B39;
}

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

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

/* Industries page — 3-col grid override */
.surfaces__grid--3col {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
    .surfaces__grid--3col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 540px) {
    .surfaces__grid--3col {
        grid-template-columns: 1fr !important;
    }
}

/* ── Cities Section ──────────────────────────────────────── */
.cities-section {
    padding: 4rem 1.5rem;
    background: #fff;
}

.cities-section__inner {
    max-width: 860px;
    margin: 0 auto;
}

.cities-section__heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cities-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text-body);
    cursor: pointer;
    transition: border-color var(--transition);
}

.cities-accordion__trigger:hover {
    border-color: var(--navy);
}

.cities-accordion__icon {
    font-size: 0.85rem;
    color: var(--text-body);
    transition: transform var(--transition);
}

.cities-accordion__trigger[aria-expanded="true"] .cities-accordion__icon {
    transform: rotate(45deg);
}

.cities-accordion__body {
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--gray-border);
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.cities-accordion__body[hidden] {
    display: none;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-list a {
    font-size: 0.9rem;
    color: var(--navy);
    text-decoration: underline;
    transition: color var(--transition);
}

.cities-list a:hover {
    color: var(--orange);
}

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

/* ── Content + Slider 2-col layout ──────────────────────── */
.content-slider-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 1.5rem;
    align-items: center;
}

.content-slider__text .surfaces__subheading {
    margin-top: 0;
}

.content-slider__media {
    position: relative;
}

.content-slider__track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

.content-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-slider__slide.is-active {
    opacity: 1;
}

.content-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.content-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}

.content-slider__dot.is-active {
    background: var(--navy);
}

@media (max-width: 768px) {
    .content-slider-wrap {
        grid-template-columns: 1fr;
    }
}

/* ── Epoxy Chip Hero ─────────────────────────────────────── */
.chip-hero {
    background: #1a315d;
    padding: 5rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.chip-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.chip-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.chip-hero__tagline {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.chip-hero__text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 1.75rem;
}

.chip-hero__btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    margin-bottom: 2rem;
}

.chip-hero__btn:hover {
    background: var(--white);
    color: var(--navy);
}

a.chip-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    flex-wrap: wrap;
    transition: box-shadow var(--transition);
}

a.chip-hero__badge:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.chip-hero__badge-stars {
    color: #f5a623;
    font-size: 0.8rem;
    display: flex;
    gap: 1px;
}

.chip-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-hero__image img {
    width: 100%;
    max-width: 520px;
    display: block;
}

@media (max-width: 768px) {
    .chip-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chip-hero__image {
        order: -1;
        /* image above text on mobile */
    }

    .chip-hero__image img {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ── Chip Features Cards ─────────────────────────────────── */
.chip-features {
    padding: 4rem 1.5rem;
    background: #fff;
}

.chip-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.chip-features__card {
    border: 1px solid var(--gray-border);
    border-top: 3px solid var(--orange);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.chip-features__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.chip-features__text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.chip-features__text a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
}

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

@media (max-width: 540px) {
    .chip-features__inner {
        grid-template-columns: 1fr;
    }
}

/* ── Chip Split Section ───────────────────────────────────── */
.chip-split {
    padding: 5rem 1.5rem;
    background: #fff;
}

.chip-split__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chip-split__image {
    border-radius: 8px;
    overflow: hidden;
}

.chip-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chip-split__heading {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.chip-split__subheading {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.chip-split__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.chip-split__btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.chip-split__btn:hover {
    background: var(--navy-dark);
}

@media (max-width: 768px) {
    .chip-split__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Chip Benefits ───────────────────────────────────────── */
.chip-benefits {
    padding: 5rem 1.5rem;
    background: #eef0f4;
    position: relative;
    overflow: hidden;
}

.chip-benefits__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.chip-benefits__overtitle {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.chip-benefits__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.chip-benefits__desc {
    font-size: 0.95rem;
    color: var(--orange);
    margin-bottom: 2.5rem;
}

.chip-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.chip-benefits__card {
    background: var(--navy);
    border-radius: 10px;
    border: 2px solid var(--orange);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.chip-benefits__icon {
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chip-benefits__text {
    font-size: 0.92rem;
    color: var(--white);
    line-height: 1.7;
    font-weight: 600;
}

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

@media (max-width: 540px) {
    .chip-benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Chip Numbered Section ───────────────────────────────── */
.chip-numbered {
    padding: 4rem 1.5rem;
    background: #eef0f4;
}

.chip-numbered__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.chip-numbered__image {
    position: relative;
}

.chip-numbered__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) saturate(0.5) hue-rotate(180deg);
}

.chip-numbered__image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.chip-numbered__cta-text {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.chip-numbered__cta-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.chip-numbered__cta-btn:hover {
    background: var(--navy-dark);
}

.chip-numbered__grid {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.chip-numbered__item {
    padding: 2rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.chip-numbered__item:nth-child(2),
.chip-numbered__item:nth-child(4) {
    border-right: none;
}

.chip-numbered__item:nth-child(3),
.chip-numbered__item:nth-child(4) {
    border-bottom: none;
}

.chip-numbered__num {
    width: 36px;
    height: 36px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.chip-numbered__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.chip-numbered__text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.chip-numbered__text a {
    color: var(--orange);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .chip-numbered__inner {
        grid-template-columns: 1fr;
    }

    .chip-numbered__image {
        height: 280px;
    }

    .chip-numbered__grid {
        grid-template-columns: 1fr;
    }

    .chip-numbered__item {
        border-right: none !important;
    }
}

.chip-split--reverse .chip-split__inner {
    grid-template-columns: 1fr 1fr;
}

.chip-split--navy {
    background: var(--navy);
}

.chip-split__heading--white {
    color: var(--white);
}

.chip-split__subheading--white {
    color: rgba(255, 255, 255, 0.8);
}

.chip-split__text--white {
    color: rgba(255, 255, 255, 0.75);
}

.chip-split__btn--outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.chip-split__btn--outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* ── Chip Steps ──────────────────────────────────────────── */
.chip-steps {
    padding: 5rem 1.5rem;
    background: #fff;
    padding-bottom: 1rem;
}

.chip-steps__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.chip-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.chip-steps__card {
    border: 1px solid var(--gray-border);
    border-top: 3px solid var(--orange);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.chip-steps__num {
    width: 44px;
    height: 44px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.chip-steps__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.chip-steps__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Badge */
.chip-steps__badge-wrap {
    display: flex;
    justify-content: center;
}

.chip-steps__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: box-shadow var(--transition);
}

.chip-steps__badge:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.chip-steps__badge-stars {
    color: #f5a623;
    font-size: 0.8rem;
    display: flex;
    gap: 1px;
}

@media (max-width: 768px) {
    .chip-steps__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Concrete Polishing Hero ─────────────────────────────── */
.polish-hero {
    background: var(--navy);
    padding: 5rem 1.5rem;
}

.polish-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.polish-hero__overtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.polish-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.polish-hero__text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.polish-hero__link {
    color: var(--orange);
    text-decoration: underline;
}

.polish-hero__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.polish-hero__btn:hover {
    background: var(--white);
    color: var(--navy);
}

.polish-hero__image {
    border-radius: 8px;
    overflow: hidden;
}

.polish-hero__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── Polish Split Sections ───────────────────────────────── */
.polish-split {
    padding: 5rem 1.5rem;
    background: #fff;
}

.polish-split__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.polish-split--reverse .polish-split__image {
    order: -1;
}

.polish-split__heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.polish-split__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.polish-split__link {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 600;
}

.polish-split__image {
    border-radius: 6px;
    overflow: hidden;
}

.polish-split__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── Polish Instagram ────────────────────────────────────── */
.polish-instagram {
    padding: 4rem 1.5rem;
    background: #fff;
}

.polish-instagram__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.polish-instagram__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.polish-instagram__btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.polish-instagram__btn:hover {
    background: var(--navy-dark);
}

.polish-instagram__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.polish-instagram__item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.polish-instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.polish-instagram__item:hover img {
    transform: scale(1.05);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {

    .polish-hero__inner,
    .polish-split__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .polish-split--reverse .polish-split__inner {
        direction: ltr;
    }

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

/* ── Resurfacing Expertise ───────────────────────────────── */
.resurface-expertise {
    padding: 5rem 1.5rem;
    background: #fff;
}

.resurface-expertise__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.resurface-expertise__heading {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.03em;
}

.resurface-expertise__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.resurface-expertise__images img {
    width: 100%;
    border-radius: 4px;
    display: block;
    margin-bottom: 1.25rem;
}

.resurface-expertise__caption {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
}

.resurface-expertise__link {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 600;
}

.resurface-expertise__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.resurface-expertise__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .resurface-expertise__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Sealing Content ─────────────────────────────────────── */
.sealing-content {
    padding: 5rem 1.5rem;
    background: #fff;
}

.sealing-content__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sealing-content__heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

.sealing-content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sealing-content__subheading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.25rem 0 0.6rem;
}

.sealing-content__body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sealing-content__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Solid Epoxy Content ─────────────────────────────────── */
.solid-content {
    padding: 5rem 1.5rem;
    background: #fff;
}

.solid-content__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solid-content__heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.solid-content__text {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.solid-content__link {
    color: var(--navy);
    text-decoration: underline;
}

.solid-content__schematic-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.solid-content__schematic img {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* ── Solid Colors Section ────────────────────────────────── */
.solid-colors {
    position: relative;
    padding: 5rem 1.5rem;
    overflow: hidden;
}

.solid-colors__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.solid-colors__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.solid-colors__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.solid-colors__env-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.solid-colors__env-list {
    list-style: disc;
    padding-left: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1.5rem;
}

.solid-colors__env-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.solid-colors__chart-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.solid-colors__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.solid-colors__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.solid-colors__chip {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
}

.solid-colors__swatch span {
    font-size: 0.72rem;
    color: var(--white);
    text-align: center;
    font-weight: 600;
}

/* ── Solid Results ───────────────────────────────────────── */
.solid-results {
    padding: 5rem 1.5rem;
    background: #fff;
}

.solid-results__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.solid-results__overtitle {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.solid-results__subtitle {
    font-size: 0.95rem;
    color: #555;
    max-width: 780px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.solid-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
}

.solid-results__card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.solid-results__card:last-child {
    border-right: none;
}

.solid-results__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.9rem;
}

.solid-results__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.solid-results__text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

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

    .solid-colors__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .solid-results__grid {
        grid-template-columns: 1fr;
    }

    .solid-results__card {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
    }

    .solid-results__card:last-child {
        border-bottom: none;
    }
}

/* ── Solid Related Services ──────────────────────────────── */
.solid-services {
    background: #fff;
}

.solid-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.solid-services__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
}

.solid-services__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.solid-services__item:hover img {
    transform: scale(1.05);
}

.solid-services__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-dark);
}

.solid-services__arrow {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background var(--transition);
}

.solid-services__item:hover .solid-services__arrow {
    background: var(--orange-dark);
}

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

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

/* ── Metallic Color Grid ─────────────────────────────────── */
.metallic-colors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.metallic-colors__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.metallic-colors__swatch img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.metallic-colors__swatch span {
    font-size: 0.72rem;
    color: var(--white);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 540px) {
    .metallic-colors__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Epoxy Based ─────────────────────────────────────────── */
.epoxy-based {
    padding: 4rem 0 0;
    background: #fff;
}

.epoxy-based__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.epoxy-based__heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
}

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

.epoxy-based__img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.epoxy-based__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.epoxy-based__img:hover img {
    transform: scale(1.04);
}

/* ── Epoxy Based Instagram ───────────────────────────────── */
.epoxy-based-instagram {
    padding: 4rem 1.5rem;
    background: #fff;
}

.epoxy-based-instagram__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.epoxy-based-instagram__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.epoxy-based-instagram__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.epoxy-based-instagram__strip a {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

.epoxy-based-instagram__strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.epoxy-based-instagram__strip a:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .epoxy-based__gallery {
        grid-template-columns: 1fr;
    }

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

/* ── Page Hero CTA Button ─────────────────────────────────── */
.page-hero__cta-btn {
    display: inline-block;
    align-self: flex-start;
    /* prevent stretching in flex containers */
    margin-top: 1.25rem;
    padding: 0.75rem 1.75rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
    width: fit-content;
    /* ensure it never stretches */
}

.page-hero__cta-btn:hover {
    background: var(--orange-dark);
}

/* ── Cement Experts ──────────────────────────────────────── */
.cement-experts {
    padding: 5rem 1.5rem;
    background: #fff;
}

.cement-experts__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cement-experts__heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

.cement-experts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cement-experts__collage {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.cement-experts__collage img {
    width: 100%;
    display: block;
}

.cement-experts__caption {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
}

.cement-experts__subheading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cement-experts__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .cement-experts__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Industry CTA Banner ─────────────────────────────────── */
.industry-cta {
    padding: 4rem 1.5rem;
    background: url('/static/img/industries/industry-cta-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.industry-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.industry-cta__image {
    border-radius: 8px;
    overflow: hidden;
}

.industry-cta__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.industry-cta__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.industry-cta__subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.industry-cta__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.industry-cta__btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.industry-cta__btn:hover {
    background: var(--orange-dark);
}

.industry-cta__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.industry-cta__phone:hover {
    color: var(--navy);
}

.industry-cta__phone i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .industry-cta {
        background-attachment: scroll;
    }

    .industry-cta__inner {
        grid-template-columns: 1fr;
    }
}

/* ── Education Image Slideshow ───────────────────────────── */
.edu-slideshow {
    position: relative;
}

.edu-slideshow__track {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 420px;
    /* fixed height — adjust to taste */
}

.edu-slideshow__slide {
    display: none;
    height: 100%;
}

.edu-slideshow__slide.is-active {
    display: block;
    height: 100%;
}

.edu-slideshow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}


.edu-slideshow__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.edu-slideshow__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.edu-slideshow__dot.is-active {
    background: var(--navy);
}

@media (max-width: 768px) {
    .edu-slideshow__track {
        height: 280px;
    }
}

/* ── Blog Listing ────────────────────────────────────────── */
.blog-listing {
    padding: 3rem 1.5rem 5rem;
    background: #fff;
}

.blog-listing__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition);
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(26, 44, 94, 0.12);
}

.blog-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--navy);
}

.blog-card__badge--trends {
    background: var(--navy);
}

.blog-card__badge--tips {
    background: var(--navy);
}

.blog-card__badge--epoxy-garage {
    background: var(--navy);
}

.blog-card__badge--concrete {
    background: var(--navy);
}

.blog-card__badge--restoration {
    background: var(--navy);
}

.blog-card__badge--terrazzo {
    background: var(--navy);
}

.blog-card__badge--uncategorized {
    background: var(--navy);
}

.blog-card__body {
    padding: 1.25rem;
    flex: 1;
}

.blog-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

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

@media (max-width: 540px) {
    .blog-listing__grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.faq-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.75rem;
}

.faq-section__subtext {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.97rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.faq-item__trigger[aria-expanded="true"] {
    background: #f4f5f7;
    color: var(--navy);
    border-radius: 6px 6px 0 0;
}

.faq-item__icon {
    font-size: 0.85rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
    transform: rotate(90deg);
}

.faq-item__body {
    padding: 1.25rem 1.5rem 1.5rem;
    background: #f4f5f7;
    border-radius: 0 0 6px 6px;
}

.faq-item__body p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.faq-item__body p:last-child {
    margin-bottom: 0;
}

.faq-item__body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0 0.75rem;
}

.faq-item__body ul li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}

/* ── Products Section ────────────────────────────────────── */
.products-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.products-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.products-section__heading {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.products-section__subtext {
    max-width: 820px;
    margin: 0 auto 3.5rem;
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
}

.products-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.products-card {
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background var(--transition), color var(--transition);
    cursor: default;
}

.products-card:hover {
    background: var(--navy);
}

.products-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--orange);
    font-size: 1rem;
    transition: border-color var(--transition), color var(--transition);
}

.products-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    transition: color var(--transition);
}

.products-card__text {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
    transition: color var(--transition);
}

.products-card:hover .products-card__title,
.products-card:hover .products-card__text {
    color: var(--white);
}

@media (max-width: 768px) {
    .products-section__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Maintenance Section ─────────────────────────────────── */
.maintenance-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.maintenance-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.maintenance-section__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.maintenance-section__intro {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.maintenance-section__subheading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin: 2rem 0 0.75rem;
}

.maintenance-section__text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.maintenance-section__list {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.maintenance-section__list li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

/* ── Project Checklist ───────────────────────────────────── */
.checklist-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.checklist-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.checklist-section__intro {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2.5rem;
}

.checklist-section__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--orange);
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-table-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

.checklist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.checklist-table th {
    background: var(--navy);
    color: var(--white);
    padding: 0.9rem 1rem;
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.checklist-table th:first-child {
    text-align: left;
}

.checklist-table td {
    padding: 1rem;
    border: 1px solid var(--gray-border);
    color: #444;
    line-height: 1.7;
    text-align: center;
    vertical-align: middle;
}

.checklist-table td:first-child {
    text-align: center;
}

.checklist-table td:last-child {
    text-align: center;
}

.checklist-table tbody tr:nth-child(odd) {
    background: #f9f9fb;
}

.checklist-table tbody tr:nth-child(even) {
    background: #fff;
}

.checklist-section__note {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.checklist-section__cta-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.checklist-section__btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition);
}

.checklist-section__btn:hover {
    background: var(--orange-dark);
}

.checklist-section__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}

.checklist-section__phone:hover {
    color: var(--orange);
}

/* ── Warranty Section ────────────────────────────────────── */
.warranty-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.warranty-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.warranty-section__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.warranty-section__text {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.8;
}

/* ── Terms Section ───────────────────────────────────────── */
.terms-section {
    padding: 5rem 1.5rem;
    background: #fff;
}

.terms-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section__heading {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
}

.terms-section__text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ── Contact Hero ────────────────────────────────────────── */
.contact-hero {
    background: #f0f1f5;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: rgba(200, 202, 210, 0.35);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.contact-hero::before {
    left: -80px;
    top: -40px;
}

.contact-hero::after {
    right: -80px;
    bottom: -40px;
    transform: rotate(180deg);
}

.contact-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero__dashes {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.contact-hero__dashes span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--navy);
    border-radius: 2px;
}

.contact-hero__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
}

/* ── Contact Cards ───────────────────────────────────────── */
.contact-cards {
    padding: 4rem 1.5rem;
    background: #fff;
}

.contact-cards__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-card__text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card__btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    transition: background var(--transition);
}

.contact-card__btn:hover {
    background: var(--navy-mid);
}

/* ── Contact Form Section ────────────────────────────────── */
.contact-form-section {
    padding: 4rem 1.5rem 6rem;
    background: #fff;
}

.contact-form-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrap {
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 2.5rem 2rem;
}

.contact-form__heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-body);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--navy);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    padding: 0.9rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}

.contact-form__submit:hover {
    background: var(--navy-mid);
}

.contact-form-section__image {
    border-radius: 10px;
    overflow: hidden;
}

.contact-form-section__image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-cards__inner {
        grid-template-columns: 1fr;
    }

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

.contact-form-section__image {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.contact-form-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ── Thank You Page ──────────────────────────────────────── */
.thankyou-section {
    padding: 8rem 1.5rem;
    background: #fff;
    text-align: center;
}

.thankyou-section__inner {
    max-width: 560px;
    margin: 0 auto;
}

.thankyou-section__icon {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.thankyou-section__heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.thankyou-section__text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.thankyou-section__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.thankyou-section__btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition);
}
.thankyou-section__btn:hover { background: var(--orange-dark); }

.thankyou-section__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
}
.thankyou-section__phone:hover { color: var(--orange); }