:root {
    --brand-blue: #0088cc;
    --brand-dark: #333333;
    --border-color: #e5e5e5;
    --font-main: "Poppins", sans-serif;
    --mobile-drawer-width: 300px;
}

body {
    font-family: var(--font-main);
    /* background-color: #f4f4f4; */
}

.sticky-top {
    z-index: 9 !important;
}

.container {
    max-width: 1140px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.8px;
}

h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1.2px;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.6px;
}

@media (max-width: 575.99px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }
}

.cp-35 {
    padding: 35px 0;
}

/* --- HEADER LAYOUT --- */
.site-header {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    /* Header z-index is higher than overlay (999), but lower than drawer (2000) */
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 275px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    padding-left: 40px;
}

/* --- TOP UTILITY BAR --- */
.top-utility {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.utility-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin-right: 25px;
    transition: color 0.2s;
}

.utility-link:hover {
    color: var(--brand-blue);
}

.utility-link i {
    font-size: 10px;
    margin-right: 4px;
    vertical-align: middle;
}

.phone-display a {
    font-weight: 800;
    font-size: 1.3rem;
    color: #000;
    display: flex;
    align-items: center;
}

.phone-display i {
    margin-right: 8px;
}
.phone-mobile,
.social-mobile {
    display: none !important;
}
/* --- MAIN NAVIGATION --- */
.main-nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* FIX: Force removal of bullet points */
.custom-nav,
.custom-nav ul,
.custom-dropdown-menu,
.custom-submenu {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.custom-nav {
    display: flex;
    align-items: center;
}

/* Top Level Links */
.custom-nav>li {
    position: relative;
}

.custom-nav>li>a {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 16px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-nav>li>a:hover {
    background: var(--brand-blue);
    color: #fff;
}

.custom-nav>li.active>a {
    background: var(--brand-blue);
    color: #fff;
}

/* Social Icons */
.social-bar {
    padding-left: 20px;
    border-left: 1px solid #ddd;
    display: flex;
    gap: 6px;
}

.social-bar a {
    color: #333;
    background: #fff;
    font-size: 16px;
    transition: color 0.2s;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 1px;
    overflow: hidden;
    font-size: .8rem;
    text-align: center;
    padding: 5px 0;
}

.social-bar a:hover {
    color: #fff;
}

.facebook-icon:hover {
    background-color: #3b5a9a;
}

.twitter-icon:hover {
    background-color: #1aa9e1;
}

.youtube-icon:hover {
    background: #c3191e;
}

.instagram-icon:hover {
    background: #7c4a3a;
}

/* --- DESKTOP DROPDOWNS --- */
@media (min-width: 992px) {
    .custom-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 220px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        padding: 10px 0 !important;
        z-index: 1100;
        border-top: 3px solid var(--brand-blue);
        text-align: left;
    }

    .custom-nav>li:hover .custom-dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease-in;
    }

    .custom-dropdown-menu li {
        position: relative;
    }

    .custom-dropdown-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 18px;
        text-decoration: none !important;
        color: #444;
        font-size: 12.8px;
        font-weight: 500;
        border-bottom: 1px solid #f9f9f9;
    }

    .custom-dropdown-menu a:hover {
        background-color: #f4f4f4;
    }

    /* Nested Levels */
    .custom-submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 220px;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        padding: 10px 0 !important;
        border-top: 3px solid var(--brand-blue);
    }

    .custom-dropdown-menu li:hover>.custom-submenu {
        display: block;
    }

    .has-submenu>a::after {
        content: '\f054';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        opacity: 0.5;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Hide Mobile Elements on Desktop */
.mobile-toggle-btn,
.mobile-close-btn,
.mobile-overlay,
.mobile-dropdown-toggle {
    display: none;
}

/* =========================================================
   MOBILE/TABLET STYLES (Overrides for screens < 992px)
   ========================================================= */
@media (max-width: 991.98px) {

    .header-logo img {
        max-width: 180px;
    }

    .mobile-toggle-btn {
        display: block;
        font-size: 24px;
        color: var(--brand-dark);
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    /* DRAWER */
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: var(--mobile-drawer-width);
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        display: block;
        overflow-y: auto;
        /* Drawer is highest (2000) */
        z-index: 2000;
        transition: right 0.3s ease-in-out;
    }

    .header-right.active {
        right: 0;
    }

    .mobile-close-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        color: #333;
        background: none;
        border: none;
        cursor: pointer;
    }
    .phone-mobile {
        display: block !important;
    }
    .social-mobile {
        display: flex !important;
    }

    /* OVERLAY */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        /* Below Header (1000) so header stays clickable, but above content */
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* CONTENT STACKING */
    .top-utility {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        width: 100%;
    }
    .social-mobile {
        margin: 0 !important;
        padding: 0 !important;
        border-left: none;
        border-top: 0 !important;
        justify-content: flex-end;
    }

    .utility-link {
        margin-bottom: 12px;
    }

    .main-nav-wrapper {
        display: block;
        width: 100%;
    }

    .custom-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .custom-nav>li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        padding-left: 0;
    }

    /* ACCORDION STYLES */
    .custom-nav>li>a,
    .custom-dropdown-menu a,
    .custom-submenu a {
        padding: 12px 0 12px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 14px;
        letter-spacing: -.6px;
        color: #333;
        text-decoration: none !important;
    }

    /* Important: Hide Dropdowns Initially */
    .custom-dropdown-menu,
    .custom-submenu {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        /* Hidden by default */
        background-color: #fcfcfc;
        min-width: 100%;
        padding-left: 15px !important;
        /* Indentation */
        margin: 0 !important;
    }

    .custom-submenu {
        padding-left: 20px !important;
        border-left: 2px solid #eee;
        background-color: #fff;
    }

    /* Arrow Toggle */
    .mobile-dropdown-toggle {
        width: 30px;
        height: 30px;
        /* Add !important here to force it to show on mobile */
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f0f0f0;
        border-radius: 4px;
        font-size: 12px;
        transition: 0.3s;
        margin-left: 10px;
    }

    .has-submenu>a::after {
        content: none;
    }

    .menu-open>a .mobile-dropdown-toggle {
        transform: rotate(180deg);
        background: var(--brand-blue);
        color: #fff;
    }

    .social-bar {
        margin: 20px 0 0 0;
        padding: 15px 0 0 0;
        border-left: none;
        border-top: 1px solid #eee;
        justify-content: flex-start;
    }
}

/* hero start */
#hero-slider {
    background-color: #000;
}

#hero-cta {
    padding: 40px 0;
}

#hero-cta p {
    font-size: 18px;
}

.carousel-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.btn-custom-cta {
    font-weight: 600;
    border-radius: 5px;
    background-color: #1071b8;
    color: #ffffff;
    letter-spacing: -.5px;
    padding: 1.15em 1.75em;
}

.btn-custom-cta:hover {
    background-color: #1071b8;
    color: #ffffff;
}

/* hero end */
/* about start */
#about-info {
    background-color: #fff;
}

.content-img {
    width: 100%;
    /* Mobile & Tablet: Full Width */
    height: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {

    /* Desktop only */
    .content-img {
        width: 40%;
        /* Desktop: 40% Width */
        margin-bottom: 1rem;
    }
}

/* about end */
/* feature start */
#features i {
    font-size: 24px;
    color: #0088cc;
}

/* feature end */
/* testimonials start */
/* Background & Overlay */
.testimonial-bg {
    background-image: url(https://coloradoprowash.com/wp-content/uploads/pressure-washing-reviews.jpg?id=7483);
    /* REPLACE THIS */
    background-color: rgba(52, 152, 219, 0.9);
    /* Blue Overlay */
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
}

/* Typography Tweaks */
.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Owl Carousel Dots Customization (Matches your design) */
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.5) !important;
    /* Transparent white */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff !important;
    /* Solid white for active */
    transform: scale(1.2);
}

.testimonial-content {
    min-height: 532px;
}

/* testimonials end */

/* footer start */
/* --- Footer Base Styles --- */
.site-footer {
    position: relative;
    /* Replace with your actual background image path */
    background-image: url('../images/denver-pressure-washing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    /* Adjust font to match your site */
    padding-top: 60px;
    padding-bottom: 20px;
}

.site-footer .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Dark overlay to make text readable */
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Section Layout --- */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Column 1: Info */
.col-info {
    flex: 1.5;
    /* Makes the first column wider like in the image */
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-google {
    max-width: 120px;
    height: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    max-width: 90%;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    background: white;
    border-radius: 4px;
    padding: 2px;
}

/* Column 2: Services */
.col-services h3,
.col-contact h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.service-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.service-list li a::before {
    content: "›";
    /* Chevron */
    margin-right: 8px;
    font-weight: bold;
}

.service-list li a:hover {
    color: #0088cc;
    /* Brand Blue */
    padding-left: 5px;
}

/* Column 3: Contact */
.col-contact {
    padding-left: 20px;
}

.contact-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.contact-sub-head {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 15px;
    color: #fff;
}

.phone-link {
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-social {
    margin-top: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0088cc;
    color: #fff;
}

/* --- Footer Base --- */
.site-footer {
    background-color: #000000 !important;
    /* Pure Black background */
    font-family: 'Poppins', sans-serif;
    /* Matching your previous font request */
    position: relative;
}

/* --- Brand Column --- */
.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* --- Payment Grid --- */
.pay-icon {
    width: 50px;
    height: 32px;
    padding: 3px;
    transition: transform 0.2s;
}

.pay-icon:hover {
    transform: translateY(-2px);
}

.pay-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Service List --- */
.service-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 0;
}

.service-menu li:last-child {
    border-bottom: none;
}

.service-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: padding-left 0.2s, color 0.2s;
}

.service-menu a::before {
    content: "›";
    /* Chevron character */
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.service-menu a:hover {
    padding-left: 8px;
    color: #0088cc;
    /* Brand Blue Hover */
}

/* --- Social Buttons --- */
.social-buttons a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-buttons a:hover {
    background: #0088cc;
    color: #fff;
}

/* --- Bottom Links (Pipe Separators) --- */
.footer-nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.2s;
}

.footer-nav-links a:hover {
    color: #fff;
}

.footer-nav-links .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

/* CSS Pipe Separator */
.footer-nav-links .list-inline-item:not(:last-child)::after {
    content: "|";
    margin-left: 0.5rem;
    color: #555;
    font-size: 12px;
}

/* --- Scroll To Top --- */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 4px;
    z-index: 100;
    transition: background 0.3s;
}

.scroll-to-top:hover {
    background: #0088cc;
    color: #fff;
}

/* Custom Service List Styles */
footer h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.service-list-custom {
    margin: 0;
    padding: 0;
    width: 100%;
}

.service-list-custom li {
    /* The faint horizontal line */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-list-custom a {
    display: block;
    color: #ffffff;
    /* White text */
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0 6px 0px;
    /* Vertical spacing */
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

/* The Chevron Icon (›) */
.service-list-custom a::before {
    content: "›";
    margin-right: 10px;
    font-size: 18px;
    line-height: 1;
    vertical-align: text-bottom;
    font-weight: bold;
    display: inline-block;
}

/* Hover Effect */
.service-list-custom a:hover {
    padding-left: 8px;
    /* Slide effect */
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.social-icons-custom a {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #000000;
    /* Black icon color */
    border-radius: 50%;
    /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    /* Icon size adjustment */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons-custom a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}
@media (max-width: 575.99px) {
    .header-inner {
        display: block;
    }
    .header-logo {
        text-align: center;
    }
    .header-logo img {
        max-width: 96% !important;
        width: 100%;
        margin: 0 auto;
    }
    .phone-display {
        
    }
}



button[type="submit"] {
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0;
    background-color: #2086c4;
    color: #fff;
}
button[type="submit"]:hover {
    background-color: #2c9add;
    color: #fff;
}
.cta-section {
    padding: 96px 0;
}
.cta-section h2 {
    font-weight: 500;
}
h2 strong {
    font-size: 30px;
    font-weight: 700;
}
.dir-arrow {
    transform: rotate(0deg);
    transform-origin: 0px 47px;
    opacity: 1;
    position: absolute;
    top: -35px;
    left: 70%;
    background-position: -209px -101px;
    width: 120px;
    height: 47px;
    background: transparent url(../images/arrows.png) no-repeat 0 0;
}
.btn-call-to-action .cs-btn {
    padding: 16px 32px !important;
    border-radius: 0 !important;
}
.btn-call-to-action {
    position: relative;
}
@media (max-width: 575.99px) {
    .dir-arrow {
        display: none;
    }
}