@font-face {
    font-family: "PP Neue Montreal";
    src: url("../assets/ppneuemontreal-book.otf") format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: "PP Neue Montreal";
    src: url("../assets/ppneuemontreal-medium.otf") format("opentype");
    font-weight: 500;
}
@font-face {
    font-family: "PP Neue Montreal";
    src: url("../assets/ppneuemontreal-bold.otf") format("opentype");
    font-weight: 700;
}
:root {
    --black: #050505;
    --charcoal: #181818;
    --white: #fff;
    --blue: #0072bc;
    --orange: #e96e2b;
    --green: #0c9b49;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "PP Neue Montreal", Arial, sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
}

/* Header */
.site_header {
    height: 86px;
    background: #000;
    position: relative;
    z-index: 40;
}
.site_header .container {
    height: 100%;
}
.header_nav > a,
.nav_services > button {
    color: #c9c9c9;
    font-size: 14px;
    transition: color 0.2s ease;
    background: none;
    border: 0;
    padding: 0;
    font-family: inherit;
}
.header_nav > a:hover,
.nav_services > button:hover {
    color: #fff;
}
.site_header .nav-item a{
  color: #fff;
}
.brand_logo img{
      max-width: 140px;
}
.brand_orbit {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-decoration-thickness: 5px;
}
.btn_outline {
border: 1px solid #9a4120;
    border-radius: 40px;
    padding: 9px 30px !important;
    color: #fff !important;
    font-size: 15px;
}
.nav_services {
    position: relative;
    padding: 28px 0;
}
.services_menu {
    position: absolute;
    left: 50%;
    top: 72px;
    min-width: 160px;
    transform: translate(-50%, 10px);
    padding: 8px;
    background: #181818;
    border: 1px solid #333;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.services_menu a {
    display: block;
    padding: 9px 12px;
    color: #ddd;
    border-radius: 7px;
}
.services_menu a:hover {
    background: #242424;
    color: #fff;
}
.nav_services:hover .services_menu,
.nav_services:focus-within .services_menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.mobile_toggle {
    border: 0;
    color: #fff;
    background: transparent;
    padding: 8px;
}
.mobile_menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-top: 1px solid #232323;
    padding: 14px 20px 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.2s ease;
}
.mobile_menu.is_open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile_menu a {
    display: block;
    color: #fff;
    padding: 10px 8px;
}
.mobile_menu .btn_brand {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 22px;
}

/* Shared */
.section_heading {
    max-width: 700px;
    margin: 0 auto 58px;
}
.section_heading h2,
.sec_testimonials > .container > h2,
.sec_faq h2,
.sec_steps h2 {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
}
.section_heading p {
    color: #737373;
    font-size: 17px;
}
.btn_brand {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    border: 0;
    border-radius: 50px;
    padding: 10px 40px;
    transition: transform 0.2s ease, filter 0.2s ease;
    letter-spacing: 1px;
    font-size: 15px;
}
.btn_brand:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.btn_blue {
    background: var(--blue);
}
.btn_orange {
    background: var(--orange);
}
.text_blue {
    color: var(--blue);
}
.text_orange {
    color: var(--orange);
}
.text_green {
    color: var(--green);
}

/* Home banner */
.sec_banner {
    min-height: 675px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.sec_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.47) 43%, rgba(0, 0, 0, 0.02) 77%);
}
.sec_banner_home {
    background-image: url("../assets/banner.webp");
}
.sec_banner .container {
    z-index: 1;
}
.banner_eyebrow {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sec_banner h1 {
    font-size: clamp(58px, 5.2vw, 84px);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}
.banner_copy {
        color: #fff;
    max-width: 240px;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 27px;
}

/* Home service strip */
.sec_service_strip {
    background: #050505;
}
.strip_item {
    min-height: 178px;
    padding: 30px 34px;
    border-right: 1px solid #262626;
}
.strip_item svg {
    margin-bottom: 13px;
}
.strip_item h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 10px 10px;
}
.strip_item p {
     color: #9da3af;
    font-size: 14px;
    max-width: 211px;
      margin:0 0 0 10px;
}
.sec_service_strip [class*="col-"]:last-child .strip_item {
    border-right: 0;
}

/* Home gallery */
.sec_gallery {
    background: #000;
    overflow: hidden;
}
.sec_gallery img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
    transition:
        filter 0.25s ease,
        transform 0.35s ease;
}
.sec_gallery a {
    display: block;
    overflow: hidden;
}
.sec_gallery a:hover img {
    transform: scale(1.025);
    filter: saturate(1.1);
}

/* Home process */
.sec_process {
    background: #222;
    padding: 115px 0 125px;
}
.sec_process .section_heading p {
    color: #757575;
}
.process_row::before {
    content: "";
    position: absolute;
    left: 17%;
    right: 17%;
    top: 90px;
    border-top: 1px solid #424242;
}
.process_item {
    position: relative;
}
.process_item > span {
    width: 82px;
    height: 82px;
    margin: 0 auto 30px;
    display: grid;
    place-items: center;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: #111;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 18px rgba(0, 114, 188, 0.35);
}
.process_item > span img{
        border-radius: 50px;
}
.process_2 > span {
    border-color: var(--green);
    box-shadow: 0 0 18px rgba(0, 166, 81, 0.3);
}
.process_3 > span {
    border-color: var(--orange);
    box-shadow: 0 0 18px rgba(243, 109, 33, 0.27);
}
.process_item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}
.process_item p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    max-width: 240px;
    margin: 0 auto;
}

/* Home stats */
.sec_stats {
    padding: 72px 0;
    background: var(--blue);
}
.sec_stats strong {
    display: block;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
}
.sec_stats span {
    color: #d3ecff;
    font-size: 15px;
}

/* Home testimonials */
.sec_testimonials {
    padding: 110px 0 120px;
    background: #030303;
}
.sec_testimonials > .container > h2 {
    margin-bottom: 55px;
}
.testimonial_card {
    margin: 0;
    padding: 30px;
    background: #1d1d1d;
    border: 1px solid #242424;
}
.testimonial_card .stars {
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial_card > p {
    min-height: 118px;
    color: #c5c5c5;
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
}
.testimonial_card footer {
    display: flex;
    gap: 13px;
    align-items: center;
}
.testimonial_card footer strong {
    font-size: 14px;
}
.testimonial_card footer small {
    display: block;
    color: #666;
    font-size: 11px;
    font-weight: 400;
    margin-top: 4px;
}
.avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    font-size: 11px;
    font-weight: 700;
}
.avatar_2 {
    background: var(--green);
}
.avatar_3 {
    background: var(--orange);
}

/* Home FAQ */
.sec_faq {
    padding: 110px 0 125px;
    background: #222;
}
.sec_faq h2 {
    margin-bottom: 45px;
}
.faq_list {
    max-width: 800px;
    margin: 0 auto;
}
.faq_list details {
    border: 1px solid #666;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #191919;
    overflow: hidden;
}
.faq_list summary {
    padding: 20px 25px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.faq_list summary::-webkit-details-marker {
    display: none;
}
.faq_list summary span {
    color: var(--orange);
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.2s ease;
}
.faq_list details[open] summary span {
    transform: rotate(45deg);
}
.faq_list details p {
    margin: 0;
    padding: 0 25px 22px;
    color: #8e8e8e;
    line-height: 1.65;
}
.faq_list .accordion-item {
    border: 1px solid #666;
    border-radius: 10px !important;
    margin-bottom: 15px;
    background: #191919;
    overflow: hidden;
}
.faq_list .accordion-button {
    background: #191919;
    color: #fff;
    font-weight: 700;
    padding: 20px 25px;
    box-shadow: none;
}
.faq_list .accordion-button:not(.collapsed) {
    background: #191919;
    color: #fff;
    box-shadow: none;
}
.faq_list .accordion-button::after {
    filter: invert(54%) sepia(86%) saturate(2348%) hue-rotate(345deg) brightness(100%);
}
.faq_list .accordion-body {
    color: #8e8e8e;
    line-height: 1.65;
    padding: 0 25px 22px;
}

/* Home CTA */
.sec_home_cta {
    min-height: 580px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.18)),
        url("../assets/home-cta.webp") center/cover no-repeat;
}
.sec_home_cta h2 {
    font-size: clamp(46px, 4.6vw, 68px);
    line-height: 0.95;
    letter-spacing: -2px;
    font-weight: 700;
    margin-bottom: 25px;
}
.sec_home_cta p {
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Service pages */
.theme_handyman {
    --theme: var(--orange);
    --theme-rgb: 243, 109, 33;
}
.theme_cleaning {
    --theme: var(--green);
    --theme-rgb: 0, 166, 81;
}
.theme_moving {
    --theme: var(--blue);
    --theme-rgb: 0, 114, 188;
}
.text_theme {
    color: var(--theme);
}
.btn_theme {
    background: var(--theme);
}
.sec_banner_service {
    min-height: 530px;
}
.sec_banner_handyman {
    background-image: url("../assets/handyman-hero.webp");
}
.sec_banner_cleaning {
    background-image: url("../assets/cleaning-hero.webp");
}
.sec_banner_moving {
    background-image: url("../assets/moving-banner.webp");
}
/* .sec_banner_service::after {
    content: "";
    position: absolute;
    width: 72%;
    height: 210px;
    right: -7%;
    bottom: -145px;
    border-radius: 50%;
    border-top: 14px solid var(--theme);
    transform: rotate(-3deg);
} */
.banner_label {
    display: inline-block;
    color: var(--theme);
    border: 1px solid var(--theme);
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.sec_services {
    background: #f5f5f5;
    color: #0b0b0b;
        padding: 70px 0 100px;
}
.service_card {
    background: #181818;
    color: #fff;
    border-radius: 10px;
    padding: 40px 38px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    border: 1px solid #242424;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}
.service_card:hover {
    transform: translateY(-5px);
    border-color: var(--theme);
}
.service_card svg {
    margin-bottom: 25px;
}
.service_card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.service_card p {
    color: #858585;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}
.sec_why {
    overflow: hidden;
    background: var(--theme);
}
.why_image {
    min-height: 675px;
    background-position: center;
    background-size: cover;
}
.theme_handyman .why_image {
    background-image: url("../assets/service3.webp");
}
.theme_cleaning .why_image {
    background-image: url("../assets/cleaning-feature.webp");
}
.theme_moving .why_image {
    background-image: url("../assets/moving-feature.webp");
}
.why_content {
    display: flex;
    align-items: center;
    background: var(--theme);
    color: #fff;
    border-top-left-radius: 90px;
        margin-left: -80px;
}
.why_inner {
    max-width: 590px;
    padding: 75px 50px 75px 95px;
}
.why_inner > h2 {
    font-size: clamp(40px, 4.2vw, 62px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.why_intro {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 35px;
}
.why_item {
    display: flex;
    gap: 17px;
    margin-top: 25px;
}
.why_item > span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--theme);
}
.why_item h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 2px 0 5px;
}
.why_item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 13px;
    line-height: 1.5;
}
.sec_steps {
    padding: 120px 0 135px;
    background: #050505;
}
.sec_steps h2 {
    margin-bottom: 65px;
}
.step_number {
    width: 88px;
    height: 88px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    border: 2px solid var(--theme);
    border-radius: 50%;
    color: var(--theme);
    font-size: 35px;
    font-weight: 700;
}
.step_item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 13px;
}
.step_item p {
    max-width: 290px;
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}
.sec_cta {
    min-height: 410px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
/* .sec_cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--theme-rgb), 0.72);
    mix-blend-mode: multiply;
} */
.sec_cta_handyman {
    background-image: url("../assets/handyman-cta.webp");
}
.sec_cta_cleaning {
    background-image: url("../assets/cleaning-cta.webp");
}
.sec_cta_moving {
    background-image: url("../assets/moving-cta.webp");
}
.sec_cta h2 {
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 700;
    margin-bottom: 15px;
}
.sec_cta p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    margin-bottom: 24px;
}

/* Contact */
.sec_contact_banner {
    position: relative;
}
/* .sec_contact_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
} */
.sec_contact_banner p {
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}
.sec_contact_banner h1 {
    font-size: clamp(54px, 6vw,72px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.sec_contact_banner span {
    font-size: 17px;
    color: #fff;
    letter-spacing: 1px;
}
.sec_contact_content {
    padding: 110px 0 140px;
    background: #242424;
}
.contact_details {
    padding-top: 38px;
}
.contact_details h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact_details h2:nth-of-type(2) {
    margin-top: 75px;
}
.contact_details > a {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
    color: #fff;
    font-size: 17px;
}
.contact_details > a svg {
    color: var(--orange);
}
.contact_social {
    display: flex;
    gap: 12px;
}
.contact_social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--green);
    border-radius: 50%;
    color: #0d0d0d;
}
.quote_form {
    background: #181818;
    border: 1px solid #8a8a8a;
    border-radius: 20px;
    padding: 45px 50px;
}
.quote_form h2 {
    font-size: 28px;
    font-weight: 700;
}
.quote_form > p {
    color: #aaa;
    margin-bottom: 34px;
}
.quote_form label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}
.quote_form input,
.quote_form select,
.quote_form textarea {
    width: 100%;
    border: 1px solid #242424;
    background: #050505;
    color: #fff;
    padding: 13px 15px;
    outline: none;
    border-radius: 0;
    color-scheme: dark;
}
.quote_form input:focus,
.quote_form select:focus,
.quote_form textarea:focus {
    border-color: var(--blue);
}
.quote_form .btn_brand {
    margin-top: 32px;
    min-width: 280px;
}
.form_success {
    margin-top: 22px;
    padding: 14px 18px;
    background: rgba(0, 166, 81, 0.14);
    border: 1px solid var(--green);
    color: #c7ffdf;
    border-radius: 8px;
}

/* Footer */
.sec_footer {
    padding: 60px 0 55px;
    position: relative;
    overflow: hidden;
    background: #000;
}
.brand_logo_footer {
    font-size: 43px;
    width: 200px;
}
.brand_logo_footer small {
    padding-left: 34px;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 12px;
}
.footer_nav a {
    color: #fff;
    font-size: 16px;
}
.footer_nav .btn_brand {
    color: #fff;
    padding: 13px 30px;
}
.footer_contact {
    margin-top: 100px;
}
.footer_contact a {
    color: #d2d2d2;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}
/* .footer_contact a:nth-last-child(-n + 2) {
    color: var(--blue);
} */
.footer_ribbons {
    position: absolute;
    left: -55px;
    bottom: 30px;
    width: 570px;
    height: 150px;
    transform: rotate(2deg);
}
.footer_ribbons i {
    position: absolute;
    left: 0;
    width: 530px;
    height: 130px;
    border-radius: 50%;
    border-bottom: 8px solid var(--blue);
}
.footer_ribbons i:nth-child(2) {
    top: 22px;
    left: 15px;
    border-bottom-color: var(--orange);
}
.footer_ribbons i:nth-child(3) {
    top: 43px;
    left: 32px;
    border-bottom-color: var(--green);
}

/* Static Bootstrap helpers */
.site_header .navbar-toggler {
    border: 0;
    box-shadow: none;
}
.site_header .navbar-collapse {
    flex-grow: 0;
}
.site_header .dropdown-menu {
    background: #181818;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 8px;
}
.site_header .dropdown-item {
    color: #ddd;
    border-radius: 7px;
    padding: 9px 12px;
}
.site_header .dropdown-item:hover {
    background: #242424;
    color: #fff;
}
.service_icon {
    display: block;
    color: var(--theme);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 25px;
}
.service_icon img{
        max-width: 40px;
}
.strip_icon {
    display: block;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 13px;
}
.strip_icon img{
      max-width: 60px;
}
.process_icon {
    font-size: 27px;
}
.form_success {
    display: none;
}
.form_success.is_visible {
    display: block;
}
.active_page {
    color: #fff !important;
}
.brand_logo_footer img{
      max-width: 200px;
}
.sec_footer .abs_img{
    position: absolute;
    bottom: 40px;
    left: -80px;
    width: 100%;
    pointer-events: none;
}
.sec_footer .abs_img img{
    max-width: 540px;
}
 .social{
    padding: 0;
    margin: 0;
}
.sec_footer .social li{
      list-style: none;
    display: inline-block;
    margin: 0 5px;
    background: #005aa3;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.sec_footer .social li a{
    color: #000;
}
.sec_contact_content .contact_details i{
        color: var(--orange);
}
.contact_social .social li{
        list-style: none;
         display: inline-block;
    margin: 0 5px;
}
.contact_social a i{
     color: #000 !important;
}
.site_header.scrolled{
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0px 0px 5px #292929;
}
@media (max-width: 991.98px) {
    .site_header .navbar-collapse {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #0b0b0b;
        border-top: 1px solid #232323;
        padding: 18px 24px 24px;
    }
    .site_header .navbar-nav {
        align-items: stretch !important;
        gap: 0 !important;
    }
    .site_header .nav-link {
        color: #fff;
        padding: 10px 8px;
    }
    .site_header .btn_outline {
        display: inline-block;
        margin-top: 8px;
        width: max-content;
    }
}
