/* ============================================================
   ABSOLUTE BUILDING & REMODELING – style.css
   Primary Colors: #4F95D1 | #10283D | #1B1B1B
   ============================================================ */

/* ======================================== */
/* GLOBAL RESET & BASE STYLES              */
/* ======================================== */

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

:root {
    --blue:      #4F95D1;
    --navy:      #10283D;
    --dark:      #1B1B1B;
    --blue-dark: #3a7ab8;
    --blue-light:#e8f3fb;
    --gray-light:#f6f8fa;
    --gray:      #e5e9ed;
    --gray-text: #5a6473;
    --white:     #ffffff;
    --shadow-sm: 0 2px 8px rgba(16,40,61,0.10);
    --shadow-md: 0 6px 24px rgba(16,40,61,0.14);
    --shadow-lg: 0 16px 48px rgba(16,40,61,0.18);
    --radius:    6px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #1B1B1B;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul { list-style: none; }

a {
    font-size: inherit;
    font-weight: 400;
    letter-spacing: normal;
    line-height: inherit;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--blue-dark); }

/* ── Container ──────────────────────────────────────── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--white);
    background-color: var(--blue);
    border: 2px solid var(--blue);
    padding: 14px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.btn:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--blue);
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
}
.btn-outline:hover {
    background-color: var(--blue);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
}
.btn-white:hover {
    background-color: var(--gray-light);
    border-color: var(--gray-light);
    color: var(--navy);
}

.btn-sm {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--white);
    padding: 10px 20px;
}

.btn-hero {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    padding: 18px 38px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.btn-block {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--white);
    padding: 18px 28px;
}

/* ── Section Labels ─────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 12px;
    background-color: var(--blue-light);
    padding: 5px 12px;
    border-radius: 20px;
}
.section-label.light {
    color: rgba(255,255,255,0.85);
    background-color: rgba(255,255,255,0.15);
}

/* ── Scroll Animations ──────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.45s; }
.delay-3 { transition-delay: 0.6s; }

/* ======================================== */
/* HEADER SECTION                          */
/* ======================================== */

/* ── Top Contact Bar ────────────────────────────────── */
#top-bar {
    width: 100%;
    background-color: var(--navy);
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.88);
    transition: color 0.2s ease;
}
.top-bar-link:hover { color: var(--white); }
.top-bar-link svg { flex-shrink: 0; opacity: 0.75; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.65);
}

.top-bar-divider {
    opacity: 0.4;
}

/* ── Main Header / Nav ──────────────────────────────── */
#main-header {
    width: 100%;
    height: 120px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--gray);
    transition: box-shadow 0.3s ease;
}
#main-header.scrolled {
    box-shadow: 0 4px 24px rgba(16,40,61,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo {
    height: 92px;
    width: auto;
    display: block;
}

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--dark);
    padding: 10px 14px;
    border-radius: var(--radius);
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--blue-light);
    color: var(--blue);
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
}
.social-icon:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* ── Hamburger ──────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.ham-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.hamburger.ham-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.ham-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.ham-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================== */
/* HERO SECTION                            */
/* ======================================== */

#hero {
    width: 100%;
    height: 760px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(16,40,61,0.78) 0%,
        rgba(16,40,61,0.55) 55%,
        rgba(16,40,61,0.25) 100%
    );
}

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

.hero-eyebrow {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(79,149,209,0.28);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-sub {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-phone-link {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: rgba(255,255,255,0.90);
    transition: color 0.2s ease;
}
.hero-phone-link:hover { color: var(--white); }
.hero-phone-link strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.hero-dot.active,
.hero-dot:hover {
    background-color: var(--white);
    border-color: var(--white);
    transform: scale(1.25);
}

/* ======================================== */
/* FINANCING STRIP                         */
/* ======================================== */

#financing-strip {
    width: 100%;
    background-color: var(--gray-light);
    border-bottom: 1px solid var(--gray);
    padding: 22px 0;
}

.financing-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.financing-strip-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--navy);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.financing-strip-label svg { color: var(--blue); }

.financing-strip-link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.financing-strip-link:hover { opacity: 0.88; transform: translateY(-1px); }
.financing-img {
    height: 100px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* ======================================== */
/* CONTENT SECTIONS – SHARED               */
/* ======================================== */

.content-section { padding: 96px 0; }
.content-section.bg-light { background-color: var(--gray-light); }
.content-section.bg-dark {
    background-color: var(--navy);
}

/* ── Two-Column Content Layout ──────────────────────── */
.two-col-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.two-col-content.reverse { direction: rtl; }
.two-col-content.reverse > * { direction: ltr; }

.content-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--navy);
    margin: 12px 0 20px;
}

.content-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #3a4452;
    margin-bottom: 20px;
}

.content-highlight {
    background-color: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
}
.content-highlight h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.content-highlight p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #3a4452;
    margin-bottom: 0;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.content-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ======================================== */
/* SECTION 1: BREATHE NEW LIFE            */
/* ======================================== */
/* (Inherits .content-section styles – white bg) */

/* ======================================== */
/* SECTION 2: SHIELD YOUR HOME            */
/* ======================================== */
/* (Inherits .content-section.bg-light styles) */

/* ======================================== */
/* SECTION 3: ABR DOES MORE               */
/* ======================================== */

.section-header-centered {
    text-align: center;
    margin-bottom: 56px;
}
.section-header-centered h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--white);
    margin: 12px 0 16px;
}
.section-header-centered .section-intro {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto;
}

.abr-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.abr-more-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
}

/* Check lists */
.check-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.check-list li {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #3a4452;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--blue);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.check-list-light li {
    color: rgba(255,255,255,0.85);
}
.check-list-light li::before {
    background-color: var(--blue);
}

/* Service cards in Section 3 */
.abr-more-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}
.service-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(79,149,209,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 16px;
}
.service-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}

/* ======================================== */
/* SECTION 4: WHY CHOOSE / FINANCING      */
/* ======================================== */

#section-4 .section-header-centered h2 {
    color: var(--navy);
}

.two-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.info-card-accent {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    border-color: var(--navy);
    color: var(--white);
}
.info-card-accent .check-list li {
    color: rgba(255,255,255,0.88);
}
.info-card-accent .check-list li::before {
    background-color: var(--blue);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}
.info-card-accent .info-card-header {
    border-bottom-color: rgba(255,255,255,0.15);
}
.info-card-header svg { color: var(--blue); flex-shrink: 0; }

.info-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--navy);
}
.info-card-accent h3 { color: var(--white); }

/* ======================================== */
/* SECTION 5: CTA BAR                     */
/* ======================================== */

.cta-bar {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, var(--blue) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-bar-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-bar-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255,255,255,0.80);
    max-width: 560px;
}

.cta-bar-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cta-phone-big {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.15s ease;
}
.cta-phone-big:hover {
    color: rgba(255,255,255,0.85);
    transform: translateY(-2px);
}
.cta-phone-big svg { color: var(--blue); flex-shrink: 0; }

/* ======================================== */
/* FORM SECTION                            */
/* ======================================== */

.form-section {
    padding: 96px 0;
    background-color: var(--gray-light);
}

.two-col-form {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 72px;
    align-items: start;
}

.form-intro h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--navy);
    margin: 12px 0 20px;
}
.form-intro p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #3a4452;
    margin-bottom: 16px;
}
.form-intro .inline-phone {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--blue);
}
.form-intro .inline-phone:hover { color: var(--blue-dark); }

.form-trust-badges {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--navy);
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ── Form Styles ────────────────────────────────────── */
.form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray);
}

/* Honeypot – visually hidden */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--dark);
}
.required {
    color: #e03e3e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--dark);
    background-color: var(--white);
    border: 1.5px solid var(--gray);
    border-radius: var(--radius);
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(79,149,209,0.18);
}
input::placeholder,
textarea::placeholder {
    color: #a0aab4;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
}
textarea { resize: vertical; min-height: 120px; }

.form-message {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--dark);
    display: none;
}
.form-message:not(:empty) { display: block; }
.form-message--success {
    background-color: #e8f7ef;
    border: 1.5px solid #34a853;
    color: #1a6b38;
}
.form-message--error {
    background-color: #fdecea;
    border: 1.5px solid #e03e3e;
    color: #8b1c1c;
}

/* ======================================== */
/* FAT FOOTER SECTION                      */
/* ======================================== */

#fat-footer {
    width: 100%;
    background-color: var(--navy);
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-list li svg { color: var(--blue); flex-shrink: 0; }
.footer-contact-list a,
.footer-contact-list span {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255,255,255,0.80);
    transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: var(--white); }

.footer-license {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255,255,255,0.50);
    margin-top: 4px;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(79,149,209,0.20);
    color: var(--blue);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    font-size: 0;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
}
.footer-social-icon:hover {
    background-color: #1877f2;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-badge-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.footer-badge-link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: 200px;
}
.footer-badge-link:hover { opacity: 1; transform: translateY(-2px); }
.footer-badge-link img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255,255,255,0.70);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                    */
/* ======================================== */

#copyright-bar {
    width: 100%;
    background-color: #060f17;
    padding: 14px 0;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

#copyright-bar p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255,255,255,0.42);
    text-align: center;
}
#copyright-bar a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease;
}
#copyright-bar a:hover { color: var(--white); }

/* ======================================== */
/* MOBILE STICKY PHONE BAR                 */
/* ======================================== */

#mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--navy) 0%, #1a3a5c 100%);
    border-top: 2px solid var(--blue);
    padding: 0;
    height: 52px;
}

.mobile-phone-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}
.mobile-phone-bar-link:hover {
    background-color: rgba(79,149,209,0.2);
    color: var(--white);
}
.mobile-phone-bar-link svg { flex-shrink: 0; }

/* ======================================== */
/* SUB-PAGE – SERVICE FEATURE LIST         */
/* ======================================== */

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 28px 0 32px;
}

.service-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.sfi-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-top: 2px;
    transition: background-color 0.2s ease;
}
.service-feature-item:hover .sfi-icon {
    background-color: var(--blue);
    color: var(--white);
}

.sfi-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 5px;
}

.sfi-body p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #3a4452;
    margin-bottom: 0;
}

/* Benefits list – slightly larger line spacing */
.benefits-list li {
    line-height: 1.7;
    margin-bottom: 4px;
}

/* Page title content block */
.page-title-content {
    max-width: 700px;
}

/* ======================================== */
/* SUB-PAGE TITLE BAR                      */
/* ======================================== */

.page-title-bar {
    width: 100%;
    min-height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-title-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(16,40,61,0.82) 0%, rgba(16,40,61,0.58) 100%);
    z-index: 1;
}
.page-title-bar .container { position: relative; z-index: 2; }
.page-title-bar h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.page-title-bar p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
}

/* ======================================== */
/* OUR WORK PAGE                           */
/* ======================================== */

/* Gallery Coming Soon */
.gallery-coming-soon {
    text-align: center;
    padding: 12px 0 48px;
}

.gallery-cs-icon {
    width: 88px;
    height: 88px;
    background-color: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin: 0 auto 24px;
}

.gallery-coming-soon h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 16px;
}

.gallery-coming-soon p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 620px;
    margin: 0 auto;
}

/* Divider between gallery notice and makeover content */
.ow-section-divider {
    width: 100%;
    height: 1px;
    background: var(--gray);
    margin: 56px 0;
    position: relative;
}
.ow-section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
}

/* Our Work – Makeover section */
.ow-makeover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ow-makeover-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--navy);
    margin: 12px 0 18px;
}

.ow-makeover-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #3a4452;
    margin-bottom: 18px;
}

/* Our Work service cards */
.ow-service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ow-service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}
.ow-service-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-3px);
}

/* Light variant – for use on white backgrounds */
.ow-service-card--light {
    background: var(--white);
    border: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
}
.ow-service-card--light:hover {
    background: var(--blue-light);
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.ow-service-card .service-icon {
    margin-bottom: 14px;
}

.ow-service-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 8px;
}
.ow-service-card--light h4 {
    color: var(--navy);
}

.ow-service-card p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}
.ow-service-card--light p {
    color: var(--gray-text);
}

.ow-card-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--blue);
    text-transform: uppercase;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
    display: inline-block;
}
.ow-card-link:hover {
    color: #7db8e4;
    letter-spacing: 0.07em;
}
.ow-card-link--light:hover {
    color: var(--blue-dark);
    letter-spacing: 0.07em;
}

/* ======================================== */
/* FINANCING PAGE                          */
/* ======================================== */

/* Hearth image column – let it be natural height */
.fin-hearth-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.fin-hearth-image img {
    width: 100%;
    height: auto;
    max-width: 310px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.fin-hearth-image a {
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.fin-hearth-image a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Trust badge row under intro text */
.fin-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 24px;
}

.fin-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: var(--navy);
    background-color: var(--blue-light);
    border-radius: var(--radius);
    padding: 10px 14px;
}
.fin-trust-badge svg { color: var(--blue); flex-shrink: 0; }

/* Section 2 heading override (light bg context) */
.fin-section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--navy);
    margin: 12px 0 16px;
}
#section-2 .section-header-centered h2 { color: var(--navy); }
#section-2 .section-header-centered .section-intro {
    color: var(--gray-text);
}

/* Feature cards grid – 2 columns, last item spans full width */
.fin-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.fin-feature-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
}
.fin-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--blue);
}

/* 5th card spans both columns */
.fin-feature-card--wide {
    grid-column: 1 / -1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.fin-feature-card--wide .fin-feature-icon { flex-shrink: 0; }
.fin-feature-card--wide h3 { margin-bottom: 8px; }

.fin-feature-icon {
    width: 52px;
    height: 52px;
    background-color: var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 16px;
    transition: background-color 0.2s ease;
}
.fin-feature-card:hover .fin-feature-icon {
    background-color: var(--blue);
    color: var(--white);
}

.fin-feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 10px;
}

.fin-feature-card p {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #3a4452;
}

/* Inline CTA below features */
.fin-cta-inline {
    text-align: center;
    margin-top: 52px;
    padding-top: 48px;
    border-top: 1px solid var(--gray);
}
.fin-cta-inline p {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--gray-text);
    margin-top: 14px;
}

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

/* ── Large tablets (≤1100px) ────────────────────────── */
@media (max-width: 1100px) {
    .hero-heading {
        font-size: 60px;
    }
    .two-col-content { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Tablets (≤900px) ────────────────────────────────── */
@media (max-width: 900px) {
    body { font-size: 17px; }

    .hero-heading { font-size: 52px; }
    .hero-sub { font-size: 18px; }

    .two-col-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-col-content.reverse { direction: ltr; }
    .content-image img { height: 380px; }

    .abr-more-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-header-centered h2 { font-size: 42px; }

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

    .cta-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .cta-bar-action { align-items: flex-start; }
    .cta-bar-text h2 { font-size: 38px; }
    .cta-phone-big { font-size: 28px; }

    .two-col-form {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-wrapper { padding: 32px; }

    .page-title-bar h1 { font-size: 44px; }
}

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

    /* Top bar – hidden on mobile; phone is in the sticky bottom bar */
    #top-bar { display: none; }

    /* Header */
    #main-header { height: 74px; }
    .site-logo { height: 50px; }
    .header-cta { display: none; }

    /* Nav – mobile overlay */
    .hamburger { display: flex; }
    #main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        z-index: 199;
        padding: 24px 20px;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    #main-nav.nav-open { transform: translateX(0); }
    #main-nav ul { flex-direction: column; gap: 0; }
    .nav-link {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.2;
        color: var(--dark);
        padding: 18px 16px;
        border-bottom: 1px solid var(--gray);
        border-radius: 0;
        display: block;
    }
    .nav-link::after { display: none; }
    .nav-link:hover,
    .nav-link.active {
        color: var(--blue);
        background-color: var(--blue-light);
        border-radius: var(--radius);
    }
    .social-icon { display: none; }

    /* Hero */
    #hero { height: 520px; }
    .hero-heading { font-size: 38px; }
    .hero-eyebrow { font-size: 16px; padding: 8px 14px; }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-cta-group { gap: 16px; flex-direction: column; align-items: flex-start; }
    .btn-hero { font-size: 15px; padding: 15px 28px; }
    .hero-phone-link { font-size: 15px; }
    .hero-phone-link strong { font-size: 15px; }

    /* Financing strip */
    .financing-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .financing-img { height: auto; max-width: 100%; }

    /* Content sections */
    .content-section { padding: 64px 0; }
    .content-text h2 { font-size: 34px; }
    .content-image img { height: 280px; }

    /* ABR More */
    .section-header-centered h2 { font-size: 34px; }
    .section-header-centered .section-intro { font-size: 16px; }

    /* CTA */
    .cta-bar { padding: 56px 0; }
    .cta-bar-text h2 { font-size: 32px; }
    .cta-phone-big { font-size: 24px; }

    /* Form */
    .form-section { padding: 64px 0; }
    .form-intro h2 { font-size: 34px; }
    .form-row-two { grid-template-columns: 1fr; }
    .form-wrapper { padding: 24px 20px; }

    /* Our Work */
    .ow-makeover-grid { grid-template-columns: 1fr; gap: 40px; }
    .ow-service-cards { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Financing */
    .fin-trust-row { grid-template-columns: 1fr; }
    .fin-features-grid { grid-template-columns: 1fr; }
    .fin-feature-card--wide { flex-direction: column; gap: 0; }
    .fin-hearth-image { justify-content: flex-start; }
    .fin-hearth-image img { max-width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    #fat-footer { padding: 56px 0 40px; }

    /* Page title bar */
    .page-title-bar { min-height: 190px; }
    .page-title-bar h1 { font-size: 32px; }
    .page-title-bar p { font-size: 16px; }

    /* Mobile phone bar */
    #mobile-phone-bar { display: flex; }

    /* Add bottom padding to avoid content hiding behind sticky bar */
    body { padding-bottom: 52px; }
}

/* ── Small Mobile (≤480px) ───────────────────────────── */
@media (max-width: 480px) {
    .hero-heading { font-size: 32px; }
    .content-text h2 { font-size: 28px; }
    .cta-bar-text h2 { font-size: 28px; }
    .form-intro h2 { font-size: 28px; }
    .info-card { padding: 28px 20px; }
    .btn-group { flex-direction: column; align-items: flex-start; }
}
