/* ============================================================
   North Country Insulation â€” Global Styles
   ============================================================ */

:root {
    --color-primary: #E96A0D;
    --color-primary-dark: #c4570a;
    --color-primary-light: #fff1e5;
    --color-dark: #111111;
    --color-heading: #101828;
    --color-body: #202002;
    --color-muted: #777777;
    --color-light: #f7f7f7;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: #e5e5e5;

    --gradient: linear-gradient(90deg, #E96A0D 0%, #FF8800 100%);
    --gradient-hover: linear-gradient(90deg, #c4570a 0%, #e67700 100%);

    --font-base: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-body);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-base);
    font-weight: 600;
    color: var(--color-heading);
    margin: 0 0 16px;
}

h1 {
    font-size: 50px;
    line-height: 1.15;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
}

h4 {
    font-size: 22px;
    line-height: 1.35;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
    line-height: 1.5;
}

p {
    margin: 0 0 16px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

.text-primary-custom {
    color: var(--color-primary) !important;
}

img.img-fluid {
    display: block;
}

.break-all {
    word-break: break-all;
}

/* ============================================================
   Section spacing utilities (use .py-8 / .pt-8 on each section)
   ============================================================ */
.py-8 {
    padding: 100px 0;
}

.pt-8 {
    padding-top: 100px;
}

.pb-8 {
    padding-bottom: 100px;
}

/* ============================================================
   Container (1584px site-wide, hero overrides separately)
   ============================================================ */

.container,
.container-lg,
.container-md,
.container-xl,
.container-xxl {
    max-width: 1584px;
}

.container-sm {
    max-width: 1320px;
}

/* ============================================================
   Buttons (reusable â€” add new variants BELOW, never per-section)
   ============================================================ */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    background: var(--gradient, linear-gradient(90deg, #E96A0D 0%, #F80 100%));
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background: var(--gradient-hover);
    color: var(--color-white);
    outline: none;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-primary);
    background-color: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Add new reusable .btn-* variants below this line */

.btn-outline-white {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: var(--color-white);
    color: var(--color-primary);
    outline: none;
}

/* ============================================================
   INNER HERO SECTION
   ============================================================ */

.inner-hero-section {
    background-image: url('../img/about/hero-inner-bg.webp');
    padding: 18px;
}


.inner-hero-section .navbar-nav .nav-item {
    color: var(--color-heading);
    padding: 10px 18px;
    font-weight: 600;
    -webkit-border-radius: 999px;
    border-radius: 999px;
    -webkit-transition: color .3s ease, background-color .3s ease;
    -moz-transition: color .3s ease, background-color .3s ease;
    -o-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
}

.inner-hero-section .navbar-nav .nav-link:hover,
.inner-hero-section .navbar-nav .nav-link:focus,
.inner-hero-section .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.inner-hero-section .navbar-nav .nav-link.active {
    background-color: var(--color-white);
}

.inner-hero-section .dropdown-menu {
    border: 0;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.inner-hero-section .dropdown-item:hover,
.inner-hero-section .dropdown-item:focus {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.nav-item .dropdown{
    position: relative;
}
.nav-item .dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.25rem;
    color: var(--color-heading);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 25px;
}

@media (min-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: absolute;
        top: 50px;
    }
}

/* Ensure hover state does not change color */
.nav-item .dropdown-toggle:hover,
.nav-item .dropdown-toggle:focus {
    color: var(--color-primary);
    text-decoration: none;
}




/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    padding: 18px;
}

.hero-section .text-primary-custom {
    color: var(--color-primary);
}

.hero-section .hero-section__inner {
    position: relative;
    background-color: #ededed;
    background-image: url('../img/home/hero-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    overflow: hidden;
}

.hero-section .hero-section__left {
    padding: 32px 0px 50px 50px;
}

.hero-section .hero-section__right {
    position: relative;
    padding: 24px;
}

.hero-section .hero-section__image {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 18px;
}

header .navbar-nav .nav-item {
    color: var(--color-heading);
    padding: 10px 18px !important;
    border-radius: 999px;
    font-weight: 600;
    -webkit-transition: color .3s ease, background-color .3s ease;
    transition: color .3s ease, background-color .3s ease;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link:focus,
header .navbar-nav .nav-link.active {
    /* color: var(--color-primary);
    border-radius: 999px; */
}

header .navbar-nav .nav-link.active {
    /* background-color: var(--color-white); */
    /* -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); */
}

header .dropdown-menu {
    border: 0;
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header .dropdown-item:hover,
header .dropdown-item:focus {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}


.hero-section .hero-section__content {
    margin-top: 100px;
}

.hero-section .hero-section__call {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
    background-color: var(--color-primary);
    background: var(--gradient, linear-gradient(90deg, #E96A0D 0%, #F80 100%));
    padding: 10px 20px 10px 10px;
    -webkit-box-shadow: 0 8px 18px rgba(233, 106, 13, 0.35);
    box-shadow: 0 8px 18px rgba(233, 106, 13, 0.35);
    -webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
}

.hero-section .hero-section__call:hover {
    color: var(--color-white);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.hero-section .hero-section__call-icon {
    width: 36px;
    height: 36px;
}

.hero-section .hero-section__badge {
    position: relative;
    background-color: unset;
}

.hero-section .hero-section__badge p {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.hero-section .hero-section__badge-icon {
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


/* ============================================================
   USPS SECTION
   ============================================================ */

.usps-section {
    background-color: #1a1a1a;
    background-image: url('../img/home/usp-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.usps-section .usps-section__header {
    max-width: 720px;
}

.usps-section .usps-section__card {
    background-color: var(--color-primary);
    background: linear-gradient(90deg, #E96A0D 0%, #F80 100%);
    border-radius: 50px;
    overflow: hidden;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.usps-section .usps-section__card-body {
    padding: 32px;
}


/* ============================================================
   PROPERTY TYPES SECTION
   ============================================================ */

.property-section .property-section__header {
    max-width: 720px;
}

.property-section .property-section__card {
    position: relative;
    padding: 32px;
    background-color: var(--color-white);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 24px;
    -webkit-box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    overflow: hidden;
    min-height: 360px;
}

.property-section .property-section__card--residential {
    background-image: url('../img/home/residential-bg.webp');
}

.property-section .property-section__card--commercial {
    background-image: url('../img/home/commercial-bg.webp');
}

.property-section .property-section__card--agricultural {
    background-image: url('../img/home/agriculture-bg.webp');
}

/* property page */
.property-section .property-section__card.page-property {
    background-position: center !important;
}

.property-section .property-section__card--residential.page-property {
    background-image: url('../img/property/residential.webp');
}

.property-section .property-section__card--commercial.page-property {
    background-image: url('../img/property/commercial.webp');
}

.property-section .property-section__card--agricultural.page-property {
    background-image: url('../img/property/agricultural.webp');
}

.property-section .property-section__card .btn-outline-custom {
    background-color: var(--color-white);
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.property-section .property-section__card .btn-outline-custom:hover,
.property-section .property-section__card .btn-outline-custom:focus {
    background: var(--gradient, linear-gradient(90deg, #E96A0D 0%, #F80 100%));
    border-color: transparent;
    color: var(--color-white);
}

.property-section .property-section__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-weight: 500;
    color: var(--color-heading);
}

.property-section .property-section__list-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


.property-content-bg{
    background-image: url('../img/property/property-intro-bg.webp');
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section .cta-section__inner {
    padding: 80px 24px;
    background-image: url('../img/home/cta-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section .services-section__header {
    max-width: 720px;
}

.services-section .services-section__eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
}

.services-section .services-section__card {
    position: relative;
    padding: 32px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    -webkit-border-radius: 50px;
    border-radius: 50px;
    overflow: hidden;
    -webkit-transition: -webkit-box-shadow .3s ease, -webkit-transform .3s ease;
    transition: box-shadow .3s ease, transform .3s ease;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.services-section .services-section__card p{
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.services-section .services-section__card:hover {
    background-image: url('../img/home/service-hover-bg.webp');
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}


.services-section .services-section__cta {
    -ms-flex-item-align: stretch;
    align-self: stretch;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.services-section .services-section__card--featured {
    -webkit-box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process-section .process-section__header {
    max-width: 720px;
}

.process-section .process-section__timeline {
    position: relative;
    text-align: center;
}

.process-section .process-section__timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 165px;
    height: 1px;
    border-top: 1px dashed #d0d5dd;
    z-index: 0;
}

.process-section .process-section__step {
    position: relative;
    z-index: 1;
}

.process-section .process-section__image-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}

.process-section .process-section__image,
.process-section .process-section__image-wrap img.img-fluid {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.process-section .process-section__dot {
    display: block;
    width: 22px;
    height: 22px;
    margin: 8px auto 0;
    background-color: var(--color-primary);
    border: 3px solid var(--color-white);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 2px #e5e5e5;
    box-shadow: 0 0 0 2px #e5e5e5;
}

.process-section .process-section__step-title {
    font-weight: 700;
}

.process-section .process-section__step-desc {
    color: var(--color-heading);
    font-weight: 500;
}


/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */

.why-choose-section {
    position: relative;
    background-color: #1a1a1a;
    background-image: url('../img/home/why-choose-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-choose-section .why-choose-section__header {
    max-width: 760px;
}

.why-choose-section .why-choose-section__card {
    padding: 15px 20px;
    background-color: var(--color-white);
    color: var(--color-heading);
    -webkit-border-radius: 999px;
    border-radius: 999px;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */

.locations-section .locations-section__header {
    max-width: 720px;
}

.locations-section .locations-section__item {
    padding: 15px 25px;
    background-color: var(--color-white);
    color: var(--color-heading);
    font-weight: 600;
    box-shadow: 0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset;
    border: 1px solid var(--color-border);
    -webkit-border-radius: 999px;
    border-radius: 999px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

.locations-section .locations-section__item:hover,
.locations-section .locations-section__item:focus {
    color: var(--color-primary);
    border-color: var(--color-primary);
    -webkit-box-shadow: 0 6px 18px rgba(233, 106, 13, 0.15);
    box-shadow: 0 6px 18px rgba(233, 106, 13, 0.15);
}


/* ============================================================
   PROJECTS / BEFORE-AFTER SECTION
   ============================================================ */

.projects-section .projects-section__header {
    max-width: 720px;
}

.projects-section .projects-section__eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
}

.projects-section .projects-section__viewer {
    max-width: 1080px;
    padding: 0 80px;
}

.projects-section .projects-section__media {
    -webkit-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.10);
}

.projects-section .projects-section__image {
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* After image: base layer */
.projects-section .projects-section__image--after {
    display: block;
    width: 100%;
}

/* Before image container: clips from the left */
.projects-section .projects-section__before-clip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 1;
}

.projects-section .projects-section__before-clip .projects-section__image--before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    /* width must equal the full slider container, not just the clip — set via JS or use vw trick */
    width: auto;
    max-width: none;
}

/* Vertical divider line */
.projects-section .projects-section__divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-white);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.35);
    box-shadow: 0 0 6px rgba(0,0,0,0.35);
}

.projects-section .projects-section__label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 3;
}

.projects-section .projects-section__label--before {
    left: 16px;
}

.projects-section .projects-section__label--after {
    right: 16px;
}

.projects-section .projects-section__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    color: var(--color-heading);
    border: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    cursor: ew-resize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 4;
    -webkit-transition: box-shadow .2s;
    transition: box-shadow .2s;
    outline: none;
}

.projects-section .projects-section__handle:hover,
.projects-section .projects-section__handle:focus {
    -webkit-box-shadow: 0 0 0 4px rgba(233, 106, 13, 0.25), 0 4px 14px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 4px rgba(233, 106, 13, 0.25), 0 4px 14px rgba(0, 0, 0, 0.35);
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    overflow: hidden;
}

.testimonials-section .testimonials-section__header {
    max-width: 760px;
}

.testimonials-section .testimonials-section__eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonials-section .testimonials-section__track-wrap {
    width: 100%;
    overflow: hidden;
}

.testimonials-section .testimonials-section__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    padding: 24px calc((100vw - 720px) / 2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-section .testimonials-section__track::-webkit-scrollbar {
    display: none;
}

.testimonials-section .testimonials-section__card {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 720px;
    max-width: calc(100vw - 64px);
    padding: 36px 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    -webkit-border-radius: 16px;
    border-radius: 16px;
    -webkit-box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    scroll-snap-align: center;
}

.testimonials-section .testimonials-section__quote {
    color: #d0d5dd;
    font-size: 50px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonials-section .testimonials-section__quote--open {
    display: block;
    margin-bottom: 8px;
}

.testimonials-section .testimonials-section__quote--close {
    display: block;
    text-align: right;
    margin-top: 8px;
}

.testimonials-section .testimonials-section__text {
    color: var(--color-heading);
    font-size: 16px;
    line-height: 1.6;
}

.testimonials-section .testimonials-section__author {
    margin-top: 24px;
}

.testimonials-section .testimonials-section__avatar {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    background: var(--gradient, linear-gradient(90deg, #E96A0D 0%, #F80 100%));
    color: var(--color-white);
    font-weight: 700;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.testimonials-section .testimonials-section__author small {
    color: var(--color-muted);
}

.testimonials-section .testimonials-section__btn {
    width: 48px;
    height: 48px;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.testimonials-section .testimonials-section__btn:hover,
.testimonials-section .testimonials-section__btn:focus {
    background-color: var(--color-primary);
    color: var(--color-white);
    outline: none;
}

/* ============================================================
   FAQS SECTION
   ============================================================ */

.faqs-section .faqs-section__header {
    max-width: 720px;
}

.faqs-section .faqs-section__list {
    max-width: 1000px;
    margin: 0 auto;
}

.faqs-section .faqs-section__item {
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    padding: 0 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.faqs-section .faqs-section__trigger {
    padding: 18px 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.faqs-section .faqs-section__trigger:hover {
    color: var(--color-primary);
}

.faqs-section .faqs-section__trigger h5 {
    color: var(--color-heading);
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    -moz-transition: color .3s ease;
    -ms-transition: color .3s ease;
    -o-transition: color .3s ease;
}

.faqs-section .faqs-section__trigger:hover h5 {
    color: var(--color-primary);
}

.faqs-section .faqs-section__icon {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

.faqs-section .faqs-section__icon-plus,
.faqs-section .faqs-section__icon-minus {
    position: absolute;
}

.faqs-section .faqs-section__icon-minus {
    display: none;
}

details[open] .faqs-section .faqs-section__icon-plus {
    display: none;
}

details[open] .faqs-section .faqs-section__icon-minus {
    display: block;
}


.faqs-section .faqs-section__content {
    border-radius: 12px;
    overflow: hidden;
}

.contact-quote-section .contact-quote-section__item {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.contact-quote-section .contact-quote-section__item:nth-child(2n) {
    border-right: none;
}

.contact-quote-section .contact-quote-section__item:nth-child(n+3) {
    border-bottom: none;
}

.contact-quote-section .contact-quote-section__item h6 {
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 600;
}

.contact-quote-section .contact-quote-section__item p {
    margin: 0;
}

.contact-quote-section .contact-quote-section__form-wrapper {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 16px;
}

.contact-quote-section .contact-quote-section__form-wrapper h3 {
    color: var(--color-heading);
    font-weight: 600;
}

.contact-quote-section .contact-quote-section__input {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--color-heading);
    background-color: var(--color-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border-color .3s ease, box-shadow .3s ease;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.contact-quote-section .contact-quote-section__input:focus {
    outline: none;
    border-color: var(--color-primary);
    -webkit-box-shadow: 0 0 0 3px rgba(233, 106, 13, 0.1);
    box-shadow: 0 0 0 3px rgba(233, 106, 13, 0.1);
}

.contact-quote-section .contact-quote-section__input::placeholder {
    color: var(--color-muted);
}


.footer-cta .cta-estimate-section__bg {
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/home/footer-cta-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cta-estimate-section .cta-estimate-section__content {
    max-width: 760px;
}

.cta-estimate-section .cta-estimate-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-estimate-section .cta-estimate-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}


/* ============================================================
   FOOTER SECTION
   ============================================================ */

.footer-section {
    background-color: #1a1a1a;
    color: var(--color-white);
}

.footer-section .footer-section__logo,
.footer-section .row>.col-lg-4:first-child>img.img-fluid {
    max-width: 180px;
    margin-bottom: 16px;
}

.footer-section .footer-section__desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}



.footer-section .footer-section__heading {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
}

.footer-section .footer-section__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section .footer-section__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.footer-section .footer-section__links a:hover {
    color: var(--color-primary);
}

.footer-section .footer-section__contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 0;
}

.footer-section .footer-section__contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.footer-section .footer-section__contact-value:hover {
    color: var(--color-primary);
}

.footer-section .footer-section__map,
.footer-section .footer-section__map-wrap img.img-fluid {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-section .footer-section__copyright {
    max-width: 80%;
    margin: 40px auto 0;
    background: var(--color-primary);
    -webkit-clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
    clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
}

.footer-section .footer-section__copyright-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px;
}

.footer-section .footer-section__copyright-text {
    color: var(--color-white);
    font-size: 14px;
    margin: 0;
}

.footer-section .footer-section__copyright-powered {
    color: var(--color-white);
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.footer-section .footer-section__copyright-powered strong {
    font-weight: 700;
    font-size: 18px;
}






/* ============================================================
   ABOUT PAGE start
   ============================================================ */

.about-page-intro-section .about-page-intro-section__media img.img-fluid {
    -webkit-border-radius: 24px;
    border-radius: 24px;
}

.about-page-intro-section .about-page-intro-section__eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
}

.about-page-intro-section .about-page-intro-section__features img.img-fluid {
    width: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ============================================================
   ABOUT STATS SECTION
   ============================================================ */

.about-stats-section .item-bg-light {
    border-radius: 16px;
    background-color: var(--color-primary-light);
    border-right: 1px solid var(--color-border);
}

.about-stats-section .item-bg-light:last-child {
    border-right: 0;
}




.services-section-cta {
    background: url(../img/services/cta-bg.webp) center center / cover no-repeat;
}


.service-hero-section .hero-content-bg {
    background: url(../img/blown-in/hero-bg.webp) no-repeat center center/cover;
    padding: 30px 30px;
    border-radius: 20px;
}

/* ============================================================
   RELATED BLOGS SECTION & CARDS
   ============================================================ */
.related-blogs-section {
    background-color: var(--color-white);
}

.related-blogs-section__title {
    font-weight: 700;
    color: var(--color-heading);
}

.blog-card {
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
}

.blog-card__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    aspect-ratio: 4 / 3;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
}

.blog-card__title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card__title a {
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--color-primary);
}

.blog-card__desc {
    font-size: 16px;
    line-height: 1.5;
    color: #475467;
    margin-bottom: 24px;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-card__link:hover {
    color: var(--color-primary-dark);
}

.blog-card__link-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.blog-card:hover .blog-card__link-arrow {
    transform: translateX(4px);
}

/* ============================================================
   BLOG DETAIL PAGE STYLES
   ============================================================ */
.blog-detail-hero {
    padding: 60px 0;
}

.blog-detail-hero__title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-heading);
}

.blog-detail-hero__meta {
    font-size: 15px;
    color: var(--color-muted);
}

.blog-detail-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.blog-detail-hero__meta-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

.blog-detail__image-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.blog-detail__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-detail__body {
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-body);
}

.blog-detail__body p {
    margin-bottom: 24px;
}

.blog-detail__body p.lead-text {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-heading);
}

.blog-detail__subheading {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-heading);
}

.blog-detail__blockquote {
    background-color: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    padding: 30px 40px;
    border-radius: 12px;
}


.blog-detail__blockquote-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-heading);
    font-style: italic;
    font-weight: 500;
}

.blog-detail__blockquote-cite {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 12px;
}

/* Tags and Share links */
.blog-detail__tag-link {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    background-color: var(--color-light);
    color: var(--color-muted);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-detail__tag-link:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.blog-detail__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--color-light);
    border-radius: 50%;
    color: var(--color-heading);
    transition: all 0.3s ease;
}

.blog-detail__share-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Prev/Next Pagination */
.blog-navigation__item {
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-navigation__item:hover {
    border-color: var(--color-primary);
    background-color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.blog-navigation__arrow {
    color: var(--color-primary);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

#prev-post-btn:hover .blog-navigation__arrow {
    transform: translateX(-4px);
}

#next-post-btn:hover .blog-navigation__arrow {
    transform: translateX(4px);
}

.blog-navigation__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.5px;
}

.blog-navigation__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-heading);
}

/* Sidebar styles */
.sidebar-help-box {
    background: url(../img/blog-cta-bg.webp);
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    box-shadow: 0 10px 24px rgba(233, 106, 13, 0.15);
}

.sidebar-help-box__title {
    font-size: 24px;
    font-weight: 700;
}

.sidebar-help-box__text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
}

.sidebar-help-box__btn {
    color: var(--color-primary) !important;
    background-color: var(--color-white);
    border: 0;
    transition: all 0.3s ease;
}

.sidebar-help-box__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    background-color: #fff8f3;
}

.sidebar-widget__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    border-bottom: 2px solid var(--color-border);
    position: relative;
}

.sidebar-widget__title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
}

.sidebar-post-item {
    transition: all 0.3s ease;
}

.sidebar-post-item__thumb-link {
    overflow: hidden;
    border-radius: 8px;
    width: 70px;
    height: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sidebar-post-item__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-post-item:hover .sidebar-post-item__thumb {
    transform: scale(1.06);
}

.sidebar-post-item__meta {
    font-size: 11px;
    color: var(--color-muted);
}

.sidebar-post-item__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.sidebar-post-item__meta-icon {
    width: 11px;
    height: 11px;
    fill: var(--color-primary);
}

.sidebar-post-item__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.sidebar-post-item__title a {
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.sidebar-post-item__title a:hover {
    color: var(--color-primary);
}

/* ============================================================
   Sidebar Help Box Sticky
   ============================================================ */
.sidebar-help-box {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    z-index: 9;
}