html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* === Navbar kao na slici === */

.navbar-custom {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
}

.navbar-custom .navbar-brand img {
    max-height: 100px;
    max-width: 200px;
}



.navbar-custom .nav-link {
    color: #fff;
    margin-right: 2rem;
    /* umesto samo desne margine */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    /* veće */
    letter-spacing: 0.5px;
    /* malo više prostora među slovima */
    padding: 0.8rem 0;
    /* više visine */
}

.navbar-custom .nav-link:hover {
    color: #ddd;
}



.dropdown-auswash {
    background-color: rgba(0, 0, 0, 0.3);
    /* Crna providna pozadina */
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    backdrop-filter: blur(4px);
    /* Nežno zamućenje pozadine */
    min-width: 220px;
    animation: fadeDown 0.3s ease-in-out;
}

.dropdown-auswash .dropdown-item {
    color: #dc3545;
    /* Bootstrap danger boja */
    padding: 10px 20px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-auswash .dropdown-item:hover {
    background-color: #dc3545;
    /* Danger crvena pozadina */
    color: #fff;
    /* Beli tekst na hover */
    border-radius: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Samo za mobilne uređaje */
@media (max-width: 991.98px) {
    .mobile-rounded-menu {
        background-color: rgba(23, 23, 23, 0.85);
        border-radius: 25px;
        margin: 0.5rem auto 1rem auto;
        padding: 1.5rem 1rem;
        width: 90%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-rounded-menu .nav-item {
        width: 100%;
    }

    .mobile-rounded-menu .nav-link {
        color: #fff;
        font-size: 1.2rem;
        margin: 0.3rem 0;
        font-weight: 600;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .mobile-rounded-menu .nav-link:hover {
        color: #dc3545;
    }

    .mobile-rounded-menu .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        text-align: center;
        width: 100%;
        padding: 0.5rem 0;
    }

    .mobile-rounded-menu .dropdown-item {
        color: #dc3545;
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .mobile-rounded-menu .dropdown-item:hover {
        background-color: #dc3545;
        color: white;
    }

    .navbar-custom {
        background-color: transparent !important;
        box-shadow: none !important;
    }
}

/* === Carousel zoom, overlay & caption === */
/* === Carousel zoom, overlay & caption === */
#zoomCarousel {
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

#zoomCarousel .carousel-item {
    position: relative;
    overflow: hidden;
}

#zoomCarousel .carousel-item img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: transform 5s ease;
}

#zoomCarousel .carousel-item.active img {
    transform: scale(1.2);
}

#zoomCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Caption */
#zoomCarousel .carousel-caption {
    position: absolute !important;
    top: 25%;
    bottom: 25%;
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 2;
}

#zoomCarousel .carousel-caption .carousel-subtitle {
    display: block;
    color: #DC3545;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    margin-bottom: 0.5rem;
}

#zoomCarousel .carousel-caption h2 {
    font-size: clamp(2rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #fff;
}

#zoomCarousel .carousel-caption p {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #f0f0f0;
}

/* Dugme */
.btn-call {
    position: relative;
    display: inline-block;
    width: clamp(220px, 40vw, 300px);
    padding: clamp(1.2rem, 2.5vw, 1.4rem) clamp(2.4rem, 6vw, 4rem);
    border: none;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    text-transform: none;
    font-weight: bold;
    color: #fff;
    background-color: #DC3545;
    overflow: hidden;
    z-index: 0;
    transition: color 0.4s ease;
    text-decoration: none;
}

.btn-call::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
    transition: left 0.4s ease;
}

.btn-call:hover::before {
    left: 0;
}

.btn-call span,
.btn-call i {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-call:hover span,
.btn-call:hover i {
    color: #000;
}

/* Strelice */
/* 1) Ukloni default background */
#zoomCarousel .carousel-control-prev-icon,
#zoomCarousel .carousel-control-next-icon {
    background-image: none !important;
    background-color: transparent !important;
}

/* 2) Krug + centriranje */
#zoomCarousel .carousel-control-prev-icon,
#zoomCarousel .carousel-control-next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
}

/* 3) Unicode strelice */
#zoomCarousel .carousel-control-prev-icon::after {
    content: "\276E";
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

#zoomCarousel .carousel-control-next-icon::after {
    content: "\276F";
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

/* 4) Pozicija strelica */
#zoomCarousel .carousel-control-prev,
#zoomCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
}

#zoomCarousel .carousel-control-prev {
    left: 20px;
}

#zoomCarousel .carousel-control-next {
    right: 20px;
}

/* === Responsivnost za strelice na mobilnim uređajima === */
@media (max-width: 768px) {

    #zoomCarousel .carousel-control-prev,
    #zoomCarousel .carousel-control-next {
        top: auto !important;
        bottom: 100px !important;
        width: 50px;
        height: 20px;
    }

    #zoomCarousel .carousel-control-prev {
        left: 50% !important;
        transform: translateX(-150%) !important;
    }

    #zoomCarousel .carousel-control-next {
        left: 50% !important;
        transform: translateX(50%) !important;
    }
}


/* strelica unutar karusela */
.scroll-down-animated {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    pointer-events: all;
    z-index: 3;
    opacity: 0;
    animation: arrowAnim 2s infinite;
}

.scroll-down-animated .arrow {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    margin: 0;
}

@keyframes arrowAnim {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateX(-50%) translateY(15px);
    }

    70% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
}

.equipment-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    min-height: 70vh;
    padding: 60px 0 0px 0;
    /* top 60px, right/left 0, bottom 20px */

}

.equipment-text {
    padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 7vw, 5rem);
}

.equipment-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: clamp(1rem,
                2vw,
                1.25rem);
    color: #dc3545;
    /* Bootstrap danger */




}

@media (max-width: 768px) {
    .equipment-text {
        text-align: center;
        margin-inline: auto;
        /* centriraj div horizontalno */
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.features-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
}

.feature-item {
    padding: 1rem;
    border-radius: 10px;
}

/* Hover efekt na parentu, ali samo SVG skače */
.feature-item:hover .svg-icon {
    transform: translateY(-10px);
    transition: transform 0.3s ease, color 0.3s ease;

}


/* Osnovni izgled SVG-a */
.svg-icon {
    width: 90px;
    height: 90px;
    transition: transform 0.3s ease, color 0.3s ease;
}

@media (hover: none) {
    .feature-item:hover .svg-icon {
        transform: none;
        color: inherit;
    }
}

@media (max-width: 576px) {
    .svg-icon {
        width: 64px;
        height: 64px;
    }
}

.whatwedo-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;
}



.display-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
}

.lead-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
}

/* Crta i poravnanje za ‘What We Do’ */
.section-label {
    display: inline-flex;
    /* inline-flex za centriranje */
    align-items: center;
    /* vertikalno centriranje linije i teksta */
    font-size: clamp(1rem,
            2vw,
            1.25rem);
    /* po želji možeš menjati veličinu */
    font-weight: 400;
    /* tanji font, isto kao kod Dry Cleaning */
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    /* eventualno manje razmaka */

}

.section-label::before {
    content: "";
    width: 30px;
    /* dužina linije (isti odnos kao kod Dry Cleaning) */
    height: 3px;
    /* debljina linije */
    background-color: #DC3545;
    /* crvena boja */
    border-radius: 2px;
    margin-right: 10px;
    /* razmak između linije i teksta */
    vertical-align: middle;
    transform: translateY(-2px);
    /* pomera liniju malo gore da centrirano stoji */
}


/* Kartica */
.card-white {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 600px;
    /* Fiksna visina */
    display: flex;
    flex-direction: row;
}



#cardCarousel .object-fit-cover {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 767.98px) {
    #cardCarousel .btn-call {
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
        
    }

    .tekst{
        text-align: center;
    }
}

/* Dugmad pozicionirana statički */
.carousel-controls-wrapper .carousel-control-prev,
.carousel-controls-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #DC3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.carousel-controls-wrapper .carousel-control-prev:hover,
.carousel-controls-wrapper .carousel-control-next:hover {
    background-color: #a52b31;
}

/* Hover efekat: drugačiji preliv i boja teksta */
.btn-call.btn-call-alt::before {
    background: #070707;
    /* Narandžasta ili tvoja boja */
}

.btn-call.btn-call-alt:hover span,
.btn-call.btn-call-alt:hover i {
    color: #fff;
    /* Ostaje bela, ili neka druga ako hoćeš kontrast */
}

/* Ikonice da budu bele */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 1.5rem;
    height: 1.5rem;
}


.location-section {
    min-height: 700px;
}

.location-line {
    width: 30px;
    height: 3px;
    background-color: #DC3545;
    border-radius: 2px;
    color: #DC3545;
}

.location-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #DC3545;
}

.location-section h6 {
    font-size: 1rem;
    color: #DC3545;
}

.location-section p {
    font-size: 0.95rem;

}

.custom-icon {
    color: #DC3545;
    
}

.location-label {
    color: #DC3545;
    letter-spacing: 1px;

}
/* 1) Ispravljena media-query */
@media (max-width: 575.98px) {
    #contact .d-flex.align-items-center {
        justify-content: center !important;
    }

    #contact h2 {
        text-align: center !important;
    }
}

/* 2) Kontakt-stavke (@Instagram i Pozovite nas) */
.location-section .contact-item {
    max-width: 200px;
}

.location-section .contact-item i {
    flex-shrink: 0;
}












.btn-call-alt {
    background-color: #0d6efd;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: background 0.4s ease;
    overflow: hidden;
    z-index: 0;
}

.btn-call-alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: left 0.4s ease;
}

.btn-call-alt:hover::before {
    left: 0;
}

.btn-call-alt span,
.btn-call-alt i {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-call-alt:hover span,
.btn-call-alt:hover i {
    color: #000;
}








/* ─────── RESET & BOX-SIZING ─────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─────── SECTION WRAPPER ─────── */
.before-after-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;
    padding: 60px 0;
}

/* ─────── MAIN FLEX CONTAINER ─────── */
.before-after-section .container {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 90vw;
    max-width: 1600px;
    /* optional */
    margin: 0 auto;
}

/* ─────── LEFT COLUMN ─────── */
.left-col {
    flex: 1;
}

.left-col .subtitle {
    display: block;

    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.left-col h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* linija pre subtitle */
.subtitle-line {
    display: inline-block;
    /* da bude u istom redu kao tekst */
    vertical-align: middle;
    /* da bude centrirano uz text */
    margin-right: 10px;
    /* razmak pre teksta */
    width: 30px;
    height: 3px;
    background-color: #DC3545;
    border-radius: 2px;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .left-col .d-flex.align-items-center {
        justify-content: center;
    }
}


/* ─────── SLIDER COLUMN ─────── */
.slider-col {
    flex: 2;
    position: relative;
}

.before-after-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    margin-bottom: 20px;
}

/* ─────── NAV BUTTONS (crveni krug) ─────── */
.slider-nav {
    text-align: center;
    margin-top: 20px;
}

.slider-nav .nav-btn {
    background-color: #DC3545;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    /* strelica iz &laquo;/&raquo; */
    transition: background-color 0.3s;
    margin: 0 5px;
    /* udaljenost dugmadi */
    line-height: 1;
    /* da strelica stoji centrirano */
}

.slider-nav .nav-btn:hover {
    background-color: #a52b31;
    /* tamnija na hover */
}


/* ─────── BEFORE/AFTER SLIDER STYLES ─────── */
.before-after-section img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;

}

.before-after-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dragger {
    z-index: 2;
    width: 2px;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-1px);
}

.dragger-inner {
    width: 1rem;
    height: 5rem;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-shadow: inset 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
}



.img-wrap {
    position: relative;
    overflow: hidden;

}

.img-wrap.is-before {
    aspect-ratio: 16 / 9;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.img-cus {

    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.img-wrap.is-after {
    aspect-ratio: 16 / 9;
    -webkit-clip-path: inset(0 50% 0 0);
    clip-path: inset(0 50% 0 0);
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
}

.img.is-before-after {
    object-fit: cover;
    object-position: 50% 40%;
    position: absolute;
}

/* ─────── FEATURE ICON CONTAINER ─────── */
.feature-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Override img inside .feature-icon so it doesn’t stretch */
.feature-icon img {
    width: auto;
    height: auto;
}

/* ─────── RESPONSIVE (MOBILE) ─────── */
@media (max-width: 768px) {
    .before-after-section .container {
        flex-direction: column;
        gap: 20px;
    }

    .left-col,
    .slider-col {
        width: 100%;
        text-align: center;
    }

    .left-col .subtitle {
        font-size: 1rem;
    }

    .left-col h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }


    .slider-nav .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 8px;
    }
}

/* ─────── FEATURE ICON RESPONSIVE ─────── */
@media (max-width: 576px) {
    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon img {
        width: auto;
        height: auto;
    }
}


































.feature-icon {
    width: 90px;
    /* povećano sa 50px */
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .feature-icon {
        width: 64px;
        height: 64px;
    }
}

.icon-section {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;
}

/* footer section */

.footer-section i {
    display: block;
}

.footer-line-wrapper {
    background-color: #0d0d0d;
    /* isto kao footer pozadina */
    display: flex;
    justify-content: center;
}

.footer-line {
    height: 6px;
    width: 80%;
    background-color: #DC3545;
    border-radius: 5px;
    max-width: 1000px;
}

.footer-section {
    background-color: #242323;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 5px);
    color: #fff;

    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 0px 0;
    /* top 60px, right/left 0, bottom 20px   crvena boja:#E60012*/
}

.text-custom-red {
    color: #DC3545;
}

.copyright-overlay-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;

}

.overlay-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(49, 48, 48, 0.2);
    /* providna siva */
    z-index: 0;
}









.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    z-index: 999;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.go-top img {
    width: 100px;
    /* VEĆA slika */
    transition: transform 0.3s ease;
}

.go-top:hover img {
    transform: scale(1.1);
}

.go-top-text {
    font-size: 0.55rem;
    /* MANJI tekst */
    letter-spacing: 0.5px;
    margin-top: 1px;
    opacity: 0.8;
    font-weight: 700;
}