/********** Template CSS **********/
:root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


html {
    scroll-padding-top: 80px;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    background-color: #A81C1C;
    border-color: #A81C1C;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--light);
    font-weight: 500;
    outline: none;
}

/* .navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
} */
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}

.navbar {
    background-color: #A81C1C;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/



/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link,
.btn-link2 {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    /* color: var(--secondary); */
    color: #c6d6e6;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before,
.btn-link2::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link2:hover {
    color: var(--primary);
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: #FFFFFF;
    font-weight: 600;
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* ------------------------------------------ */

/* Logo default (desktop) */
.logo-img {
    height: 90px;
    width: auto;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-img {
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo-img {
        height: 70px;
    }
}

.hero-header {
    position: relative;
    background: url('../img/hero-img.png') center center/cover no-repeat;
    min-height: 100vh;
    /* full screen height */
    display: flex;
    align-items: center;
    /* vertically center content */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.washing-img {
    border-radius: 20px;
}

.contact-call:hover {
    color: #16D5FF !important;
    transition: 0.3s ease-in-out;
}

.footer {
    background-color: #1D2735;
    margin-bottom: 0 !important;

}

.footer-link {
    display: inline-block;
    color: #c6d6e6;
}

.footer-link:hover {
    color: #16D5FF !important;
}

.sticky-contact {
    position: fixed;
    right: -10px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #A81C1C;
    width: 110px !important;
    border-radius: 10px !important;
    right: 40px !important;
}


/* Pulse waves */
.pulse::before,
.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: pulseWave 2s infinite;
}

.pulse::after {
    animation-delay: 1s;
}

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Phone vibration */
.vibrate {
    animation: vibratePhone 1.5s infinite;
}

@keyframes vibratePhone {

    0%,
    100% {
        transform: rotate(0)
    }

    20% {
        transform: rotate(-10deg)
    }

    40% {
        transform: rotate(10deg)
    }

    60% {
        transform: rotate(-10deg)
    }

    80% {
        transform: rotate(10deg)
    }
}

.service-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}


.support-card {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 20px 50px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #A81C1C;
    font-size: 50px;
    font-weight: bolder;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

.support-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.hero-desc {
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
    max-width: 750px;
    margin: 20px auto 0;
    text-align: center;

    /* readability on hero image */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);

    padding: 15px 25px;
    border-radius: 10px;
}

@media (max-width:768px) {
    .hero-desc {
        font-size: 16px;
        padding: 12px 18px;
        max-width: 90%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .support-card {
        font-size: 36px;
        padding: 15px 35px;
        gap: 18px;
    }

    .support-card img {
        width: 55px;
        height: 55px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .support-card {
        font-size: 26px;
        padding: 12px 20px;
        gap: 12px;
    }

    .support-card img {
        width: 40px;
        height: 40px;
    }

    .sticky-contact {
        position: fixed;
        right: -30px;
        bottom: 120px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
    }

    .sticky-contact a {
        width: 50px;
        height: 50px;

    }
}


.premium-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff, #f8f9fa);
}

.premium-card {
    border-radius: 20px;
    border: 2px solid rgba(219, 10, 10, 0.4);
    position: relative;
}

.book-btn {
    background: linear-gradient(135deg, #A81C1C, #7d1414);
    border: none;
    padding: 14px;
    font-weight: 600;
}

.book-btn:hover {
    background: linear-gradient(135deg, #c91f1f, #a81c1c);
}

.gradient-text {
    background: linear-gradient(90deg, #A81C1C, #ff4040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: #A81C1C;
    box-shadow: 0 0 0 .2rem rgba(168, 28, 28, .15);
}

.call-section {
    background: linear-gradient(135deg, #A81C1C, #7d1414, #A81C1C);
    overflow: hidden;
}

.call-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.call-desc {
    max-width: 700px;
}

.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-text {
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #A81C1C, #ff4040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff, #f8f9fa);
}

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

.service-item p {
    margin: 0;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168, 28, 28, 0.15);
    color: #A81C1C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.service-item:hover .bullet {
    background: #A81C1C;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(90deg, #A81C1C, #ff4040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technicians-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.technician-card {
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
    background: #fff;
}

.technician-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 40px;
}

.gradient-text {
    background: linear-gradient(90deg, #A81C1C, #ff4040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-terms-section {
    background: #f9f9f9;
}

.search-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    color: #555;
    border: 1px solid #eee;
    transition: 0.3s;
}

.search-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* space so footer is not hidden */
body {
    padding-bottom: 30px;
}

/* sticky call strip */
.bottom-call-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #A81C1C;
    display: flex;
    text-align: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

/* link style */
.bottom-call-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bottom-call-link i {
    font-size: 20px;
}