@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-VariableFont_wght.ttf)
}

@font-face {
    font-family: 'Gilroy';
    src: url(fonts/Gilroy-Black.ttf);
}

@font-face {
    font-family: "Conthrax";
    src: url(fonts/Conthrax-SemiBold.otf);
}

  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Conthrax';
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.support-bar {
    background: #A2ddef;
    color: #000000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    padding: 10px 24px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
}

.support-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: auto;
}

.support-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.support-contact i {
    font-size: 16px;
}

.support-bar a {
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.support-bar a:hover {
    color: #000000;
}

.support-bar a.social-white {
    color: #ffffff;
}

.support-bar a.social-white:hover {
    color: #ffffff;
}

.support-bar svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.support-bar i {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.support-bar img {
    width: 20px;
    height: 20px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 40px;
    background: transparent;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-header-dark .support-bar {
    background: #000000;
    color: #ffffff;
}

.page-header-dark .support-bar a {
    color: #ffffff;
}

.page-header-dark .support-bar a:hover {
    color: #ffffff;
}

.page-header-dark .main-nav {
    background: #000000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    text-decoration: none;
    color: inherit;
}

.brand:visited,
.brand:hover,
.brand:active {
    text-decoration: none;
    color: inherit;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Conthrax';
    font-size: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.brand-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A2ddef;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: currentColor;
    display: block;
}

.nav-links a {
    font-family: 'Conthrax';
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 6px;
    position: relative;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.dropdown-toggle {
    font-family: 'Conthrax';
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: none;
    border: none;
    padding: 0 0 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    line-height: 1.2;
}

.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #A2ddef;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle[aria-expanded="true"] {
    color: #A2ddef;
}

.dropdown-toggle:hover::after,
.dropdown-toggle[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.dropdown-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -2px;
}

.nav-dropdown.is-open .dropdown-caret {
    transform: rotate(-135deg);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(162, 221, 239, 0.3);
    border-radius: 12px;
    padding: 10px 12px;
    list-style: none;
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 30;
}

.nav-dropdown.is-open .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 1px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(162, 221, 239, 0.15);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #A2ddef;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #A2ddef;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    font-family: 'Conthrax';
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    color: #A2ddef;
    border-color: #A2ddef;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


@media (max-width: 980px) {
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 20px 20px;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 22px;
    }

    .nav-cta {
        margin-top: 6px;
    }

    .nav-phone {
        margin-top: 6px;
    }

    #main {
        padding-top: 190px;
    }

    #cursor,
    #cursor-blur {
        display: none;
    }
}

#cursor {
    height: 20px;
    width: 20px;
    background-color: #A2ddef;
    border-radius: 50%;
    position: fixed;
    z-index: 99;
    transition: all linear 0.1s;
    pointer-events: none;
  }
  #cursor-blur {
    height: 500px;
    width: 500px;
    background-color: rgba(5, 89, 108, 0.3);
    border-radius: 50%;
    position: fixed;
    filter: blur(80px);
    z-index: 9;
    transition: all linear 0.4s;
    pointer-events: none;
  }


video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}

#main{
    position: relative;
    background-color: rgb(0, 0, 0,0.37);
    padding-top: 150px;
}

#page1 {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index:10;
}


#page1 h1 {
    font-size: 80px;
    font-weight: 900;
    position: relative;
    color: white;
}

#page1 h1::before {
    content: 'WE CLEAN. YOU PERFORM.';
    position: absolute;
    color: #000;
    top: -3px;
    left: -3px;
    -webkit-text-stroke: 2px #A2ddef;
    z-index: -1;
}

#page1 h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
    color:#A2ddef;
}

#page1 .hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 22px;
}

#page1 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(162, 221, 239, 0.7);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

#page1 .hero-badge i {
    font-size: 16px;
    color: #A2ddef;
}

#page1 .hero-badge-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

#page1 p {
    font-size: 15px;
    font-weight: 500;
    width: 60%;
    color: white;
}


#page2 {
    min-height: 100vh;
    min-height: 100svh;
    width: 100%; 
    z-index:10;
}

.why-section {
    padding: 80px 0 120px;
}

.why-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    padding: 48px 6vw 54px;
    border: none;
    box-shadow: none;
}

.why-title {
    font-family: 'Conthrax';
    text-transform: uppercase;
    text-align: center;
    font-size: 44px;
    letter-spacing: 3px;
    color: #A2ddef;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.why-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-item h3 {
    font-family: 'Conthrax';
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 2px;
    color: #A2ddef;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    color: #A2ddef;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.why-divider {
    width: 2px;
    height: 140px;
    background: #A2ddef;
    border-radius: 999px;
}

.services-section {
    padding: 0 0 120px;
}

.services-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    padding: 56px 6vw 60px;
    border: none;
    box-shadow: none;
}

.services-title {
    font-family: 'Conthrax';
    text-transform: uppercase;
    text-align: center;
    font-size: 44px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 10px;
}

.services-subtitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    color: #A2ddef;
    font-weight: 700;
    margin-bottom: 36px;
}

.services-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.services-copy {
    max-width: 520px;
}

.services-description {
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.services-media {
    display: flex;
    justify-content: center;
}

.services-media img {
    width: min(420px, 100%);
    height: auto;
    border-radius: 18px;
    padding: 14px;
}

.reviews-section {
    padding: 0 0 120px;
}

.reviews-panel {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    padding: 56px 6vw 50px;
    border: none;
    box-shadow: none;
}

.reviews-title {
    font-family: 'Conthrax';
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 12px;
}

.reviews-note {
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A2ddef;
    margin-bottom: 36px;
}

.reviews-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    height: 0;
}

.review-card {
    min-width: 420px;
    max-width: 520px;
    flex: 0 0 auto;
    border: 1px solid rgba(169, 214, 229, 0.6);
    border-radius: 18px;
    padding: 34px 30px 30px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    scroll-snap-align: start;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.review-stars svg {
    width: 22px;
    height: 22px;
    fill: #f7c948;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}

.review-name {
    font-family: 'Conthrax';
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #A2ddef;
    margin-bottom: 10px;
}

.review-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.reviews-arrow {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.reviews-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.reviews-arrow:hover,
.reviews-arrow:focus-visible {
    color: #A2ddef;
    border-color: #A2ddef;
}

.contact-section {
    padding: 0 0 140px;
}

.contact-card {
    width: 100%;
    background: #A2ddef;
    border-radius: 0;
    padding: 64px 6vw 68px;
    border: none;
    box-shadow: none;
    color: #0b1117;
}

.contact-title {
    font-family: 'Conthrax';
    text-transform: uppercase;
    text-align: center;
    font-size: 62px;
    letter-spacing: 3px;
    color: #0b1117;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto 36px;
    color: rgba(11, 17, 23, 0.75);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;

}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b1117;
    font-weight: 700;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .required {
    color: #d72638;
}

.contact-form input,
.contact-form textarea {
    border: 2px solid black;
    background: #A2ddef;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0b1117;
    font-family: 'Montserrat';
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(11, 17, 23, 0.55);

}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0b1117;
    box-shadow: 0 0 0 2px rgba(11, 17, 23, 0.15);
}

.contact-message textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 12px;
    border: 3px solid #0b1117;
    background: transparent;
    color: #0b1117;
    font-family: 'Conthrax';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 14px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 20px;
    padding-top: 28px;
    width: 100%;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #0b1117;
    text-decoration: none;
}

.contact-detail i {
    font-size: 18px;
}

.site-footer {
    background: #000000;
    padding: 70px 0 80px;
    color: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding: 0 6vw;
}

.footer-title {
    font-family: 'Conthrax';
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A2ddef;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #A2ddef;
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact i {
    font-size: 16px;
    color: #A2ddef;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding: 18px 6vw 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.service-areas {
    background: #000000;
    padding: 80px 0 100px;
}

.service-areas-inner {
    padding: 0 6vw;
}

.service-areas h2 {
    font-family: 'Conthrax';
    font-size: clamp(26px, 3.2vw, 40px);
    color: #A2ddef;
    margin-bottom: 24px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 36px;
}

.service-area-group h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 14px;
}

.service-area-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.service-area-list li {
    padding-left: 14px;
    position: relative;
}

.service-area-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #A2ddef;
    position: absolute;
    left: 0;
    top: 8px;
}

.office-main {
    padding-top: 140px;
    background: #000000;
    min-height: 100vh;
    min-height: 100svh;
}

.policy-section {
    padding: 60px 0 120px;
}

.policy-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 48px 6vw 56px;
    border-radius: 0;
    border: 1px solid rgba(162, 221, 239, 0.25);
    background: rgba(11, 17, 23, 0.55);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.policy-title {
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #A2ddef;
}

.policy-updated {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.policy-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

.policy-block {
    margin-top: 26px;
}

.policy-block h2 {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.policy-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #A2ddef;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 14px;
}

.policy-contact span {
    color: rgba(255, 255, 255, 0.45);
}

.policy-contact a {
    color: #A2ddef;
    text-decoration: none;
}

.policy-contact a:hover,
.policy-contact a:focus-visible {
    color: #ffffff;
}

.office-hero {
    padding: 40px 0 80px;
    background: #A2ddef;
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent;
    border-radius: 0;
    padding: 42px 6vw;
    box-shadow: none;
}

.hero-title {
    font-family: 'Conthrax';
    font-size: clamp(28px, 3.6vw, 44px);
    color: #303040;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #2b2b34;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4b4b57;
    margin-bottom: 28px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1117;
    font-family: 'Conthrax';
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media img {
    width: min(360px, 100%);
    height: auto;
    border-radius: 0;
}

.office-details {
    background: #000000;
    padding: 70px 0 90px;
}

.details-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 0 6vw;
}

.details-text {
    color: #ffffff;
}

.details-kicker {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #A2ddef;
    margin-bottom: 12px;
}

.details-text h2 {
    font-family: 'Conthrax';
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 16px;
    color: #ffffff;
}

.details-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.details-media {
    display: flex;
    justify-content: center;
}

.details-media img {
    width: min(460px, 100%);
    height: auto;
}

.office-benefits {
    background: #A2ddef;
    padding: 80px 0 100px;
}

.benefits-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
    padding: 0 6vw;
}

.benefits-media {
    display: flex;
    justify-content: center;
}

.benefits-media img {
    width: min(520px, 100%);
    height: auto;
}

.benefits-content h2 {
    font-family: 'Conthrax';
    font-size: clamp(24px, 3.2vw, 36px);
    color: white;
    margin-bottom: 24px;
}

.benefits-list {
    display: grid;
    gap: 18px;
}

.benefit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    border: 1px solid #000000;
    padding: 18px 20px;
    background: transparent;
    color: #ffffff;
}

.benefit-card.alt {
    border-color: #000000;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #2f5bff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card.alt .benefit-icon {
    background: #2f5bff;
}

.benefit-icon svg {
    width: 44px;
    height: 44px;
    fill: #ffffff;
}

.benefit-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.benefit-card h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.office-importance {
    background: #000000;
    padding: 90px 0 100px;
}

.importance-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    padding: 0 6vw;
    margin-bottom: 70px;
}

.importance-content h2 {
    font-family: 'Conthrax';
    font-size: clamp(24px, 3.1vw, 36px);
    color: #ffffff;
    margin-bottom: 16px;
}

.importance-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.importance-media {
    display: flex;
    justify-content: center;
}

.importance-media img {
    width: min(560px, 100%);
    height: auto;
    border-radius: 16px;
}

.importance-footer {
    text-align: center;
    padding: 0 6vw;
    max-width: 920px;
    margin: 0 auto;
    color: #ffffff;
}

.importance-footer h3 {
    font-family: 'Conthrax';
    font-size: clamp(22px, 2.6vw, 30px);
    margin-bottom: 12px;
}

.importance-footer p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
}

.importance-steps {
    display: inline-block;
    font-family: 'Conthrax';
    font-size: 16px;
    color: #ff7a2d;
    letter-spacing: 0.5px;
}

.office-services-carousel {
    background: #000000;
    padding: 80px 0 100px;
}

.services-carousel-inner {
    padding: 0 6vw;
}

.services-carousel {
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.services-carousel-track {
    display: flex;
    gap: 24px;
    padding: 8px 2px;
    width: max-content;
}

.services-carousel-loop .services-carousel-track {
    animation: services-carousel-scroll 60s linear infinite;
    will-change: transform;
}

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

.office-service-card {
    flex: 0 0 clamp(380px, 44vw, 520px);
    min-height: 460px;
    background: #A2ddef;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 30px 26px 30px;
    color: #ffffff;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f4ea8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-service-icon svg {
    width: 38px;
    height: 38px;
}

.office-service-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.office-service-card h3 {
    font-size: 20px;
    margin: 6px 0 4px;
    color: black;
}

.office-service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
}

.office-janitors {
    background: #A2ddef;
    padding: 90px 0 100px;
}

.janitors-inner {
    padding: 0 6vw;
}

.janitors-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 44px;
}

.janitors-title h2 {
    font-family: 'Conthrax';
    font-size: clamp(26px, 3.4vw, 42px);
    color: #0a2f6d;
    margin-top: 14px;
}

.janitors-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(10, 47, 109, 0.35);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a2f6d;
    background: rgba(255, 255, 255, 0.35);
}

.janitors-summary p {
    font-size: 15px;
    line-height: 1.7;
    color: #1a2f4a;
    margin-bottom: 18px;
}

.janitors-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.janitors-phone a {
    color: #0a2f6d;
    text-decoration: none;
}

.janitors-phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(10, 47, 109, 0.2);
}

.janitors-phone-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("images/Phone_icon.png") no-repeat center / contain;
    display: block;
}

.janitors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
}

.janitors-card {
    position: relative;
    padding-left: 30px;
}

.janitors-card:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(10, 47, 109, 0.25);
    padding-left: 32px;
}

.janitors-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0a2f6d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.janitors-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #1a2f4a;
}

.office-frequency {
    background: #000000;
    padding: 90px 0 100px;
}

.frequency-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 42px;
    align-items: center;
    padding: 0 6vw;
}

.frequency-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(162, 221, 239, 0.6);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #A2ddef;
}

.frequency-content h2 {
    font-family: 'Conthrax';
    font-size: clamp(28px, 3.6vw, 44px);
    color: #ffffff;
    margin: 16px 0 18px;
}

.frequency-content h2 span {
    color: #A2ddef;
}

.frequency-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.frequency-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.frequency-check {
    width: 20px;
    height: 20px;
    border: 2px solid #A2ddef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.frequency-check::before {
    content: "";
    width: 8px;
    height: 4px;
    border-left: 2px solid #A2ddef;
    border-bottom: 2px solid #A2ddef;
    transform: rotate(-45deg);
}

.frequency-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.frequency-phone a {
    color: #ffffff;
    text-decoration: none;
}

.frequency-phone-icon {
    width: 38px;
    height: 38px;
    background: #A2ddef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.frequency-phone-icon::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url("images/Phone_icon.png") no-repeat center / contain;
    display: block;
}

.frequency-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.frequency-media img {
    width: min(520px, 100%);
    height: auto;
    display: block;
    border-radius: 0;
}

.frequency-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(10, 47, 109, 0.92);
    color: #ffffff;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    border-radius: 0;
}

.frequency-overlay-icons {
    display: flex;
    gap: 10px;
}

.frequency-overlay-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frequency-overlay-icon svg {
    width: 24px;
    height: 24px;
}

.frequency-overlay p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.banner-section {
    background: #A2ddef;
    border-top: 6px solid #A2ddef;
    border-bottom: 6px solid #A2ddef;
    padding: 50px 6vw;
    display: flex;
    justify-content: center;
}

.banner-inner {
    width: 100%;
    text-align: center;
}

.banner-title {
    font-family: 'Conthrax';
    text-transform: uppercase;
    font-size: clamp(28px, 4vw, 54px);
    letter-spacing: 3px;
    color: black;
}

.banner-title span {
    color: white;
}


#scroller {
    /* background-color: red; */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 10;
}

scroller::-webkit-scrollbar {
    display: none;
}

#scroller-in {
    display: inline-block;
    white-space: nowrap;
}

#scroller-in {
    display: inline-block;
    white-space: nowrap;
    animation-name: scroll;
    animation-duration:30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#scroller h4 {
    display: inline-block;
    font-size:120px;
    font-weight:500;
    font-family: 'Gilroy';
    margin-right: 10px;
    color: transparent;
    transition: all linear 0.5s;
    -webkit-text-stroke: 2px #A2ddef;

}

#scroller h4:hover {
    color: #A2ddef;
}

@keyframes scroll {
    from {
         transform:translateX(0)
    }

    to {
        transform:translateX(-100%)
    }
}

@media (max-width: 980px) {
    .why-card {
        padding: 36px 24px 40px;
    }

    .why-title {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-divider {
        width: 80px;
        height: 2px;
        justify-self: center;
    }

    .services-card {
        padding: 36px 24px 40px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-copy {
        max-width: 100%;
    }

    .services-description {
        text-align: center;
    }

    .reviews-panel {
        padding: 36px 24px 40px;
    }

    .reviews-title {
        font-size: 30px;
    }

    .reviews-track {
        gap: 18px;
    }

    .review-card {
        min-width: 280px;
        max-width: 360px;
        padding: 26px 22px 24px;
    }

    .review-text {
        font-size: 24px;
    }

    .contact-card {
        padding: 44px 28px 50px;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        align-self: center;
    }

    .office-main {
        padding-top: 150px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .hero-cta {
        width: 100%;
    }

    .office-details {
        padding: 50px 0 70px;
    }

    .details-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .details-text p {
        margin-bottom: 12px;
    }

    .office-importance {
        padding: 70px 0 80px;
    }

    .importance-inner {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 48px;
    }

    .importance-media img {
        width: min(480px, 100%);
    }

    .benefits-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-media {
        order: -1;
    }

    .benefit-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .benefit-icon {
        margin-bottom: 8px;
    }

    .office-services-carousel {
        padding: 60px 0 80px;
    }

    .office-service-card {
        flex-basis: min(86vw, 440px);
        min-height: 420px;
    }

    .office-janitors {
        padding: 70px 0 80px;
    }

    .janitors-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .janitors-phone {
        justify-content: center;
    }

    .janitors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .janitors-card {
        padding-left: 0;
    }

    .janitors-card:not(:nth-child(3n + 1)) {
        border-left: none;
        padding-left: 0;
    }

    .office-frequency {
        padding: 70px 0 80px;
    }

    .frequency-inner {
        grid-template-columns: 1fr;
    }

    .frequency-media {
        margin-top: 24px;
    }

    .frequency-overlay {
        position: static;
        margin-top: 16px;
    }

    .banner-section {
        padding: 40px 6vw;
    }

    .service-areas {
        padding: 60px 0 80px;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .service-area-list {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 50px 0 60px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-contact {
        justify-items: center;
    }

    .footer-contact a {
        justify-content: center;
    }

}

@media (max-width: 720px) {
    .support-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .support-contact {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-right: 0;
    }

    .main-nav {
        padding: 14px 16px 18px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 12px 0 4px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-open .nav-links {
        display: flex;
    }

    .nav-phone {
        font-size: 13px;
    }

    #page1 {
        height: auto;
        min-height: 85vh;
        min-height: 85svh;
        padding: 40px 0 60px;
    }

    #page1 h1 {
        font-size: 44px;
    }

    #page1 h1::before {
        top: -2px;
        left: -2px;
    }

    #page1 h2 {
        font-size: 22px;
    }

    #page1 .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    #page1 p {
        width: 90%;
    }

    #scroller h4 {
        font-size: 64px;
        -webkit-text-stroke: 1.5px #A2ddef;
    }

    .services-carousel-track {
        gap: 18px;
    }

    .office-service-card {
        flex-basis: min(90vw, 360px);
        min-height: 380px;
    }

    .frequency-list li {
        grid-template-columns: 18px 1fr;
    }
}

@media (max-width: 520px) {
    #page1 h1 {
        font-size: 34px;
    }

    #page1 h2 {
        font-size: 18px;
    }

    #page1 .hero-badge {
        font-size: 10px;
    }

    #page1 p {
        font-size: 14px;
        width: 100%;
    }

    #scroller h4 {
        font-size: 44px;
    }

    .contact-card {
        padding: 36px 18px 44px;
    }

    .contact-submit {
        width: 100%;
        text-align: center;
    }

    .contact-details {
        justify-content: center;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    width: min(960px, calc(100% - 40px));
    transform: translateX(-50%);
    background: #0c1116;
    color: #ffffff;
    border: 1px solid rgba(162, 221, 239, 0.7);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    z-index: 60;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-hidden {
    opacity: 0;
    transform: translate(-50%, 12px);
    pointer-events: none;
}

.cookie-text {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.6px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-accept {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    background: #A2ddef;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 16px rgba(162, 221, 239, 0.35);
}

@media (max-width: 720px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (hover: none) {
    #cursor,
    #cursor-blur {
        display: none;
    }
}
