/* HERO */

.hero-holder {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-holder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.25) 100%
    );
}

.hero-holder .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-holder h1 {
    font-size: 82px;
    line-height: 0.75;
    color: #fff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-holder h1 span {
    color: #e60000;
    display: block;
    font-weight: 500;
}

.hero-holder > .container > p {
    max-width: 620px;
    color: rgba(255,255,255,0.85);
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons-holder {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 120px;
}

.hero-buttons-holder a {
    min-width: 220px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-buttons-holder a:first-child {
    background: #e60000;
    color: #fff;
}

.hero-buttons-holder a:first-child:hover {
    background: #c70000;
}

.hero-buttons-holder a:last-child {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-buttons-holder a:last-child:hover {
    background: #fff;
    color: #111;
}

.hero-down {
    margin-left: auto;
    padding-bottom: 40px;
}

.hero-down h3 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-down p {
    color: rgba(255,255,255,0.85);
    font-size: 21px;
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .hero-holder h1 {
        font-size: 68px;
    }

    .hero-holder > .container > p {
        font-size: 22px;
    }

    .hero-down h3 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .hero-holder {
        padding: 160px 0 80px;
        min-height: auto;
    }

    .hero-holder h1 {
        font-size: 54px;
        max-width: 100%;
    }

    .hero-holder > .container > p {
        font-size: 19px;
        margin-bottom: 32px;
    }

    .hero-buttons-holder {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 70px;
    }

    .hero-down {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-down h3 {
        font-size: 30px;
    }

    .hero-down p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-holder {
        padding: 140px 0 60px;
    }

    .hero-holder h1 {
        font-size: 42px;
    }

    .hero-holder > .container > p {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-buttons-holder {
        width: 100%;
    }

    .hero-buttons-holder a {
        width: 100%;
        min-width: 100%;
        height: 56px;
        font-size: 15px;
    }

    .hero-down h3 {
        font-size: 26px;
    }

    .hero-down p {
        font-size: 16px;
        line-height: 1.6;
    }
}
/* HERO END */

/* ABOUT US */
.about-holder {
    padding: 80px 0;
    background: #fff;
}

.about-holder .container {
    max-width: 1100px;
}

.about-holder h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 35px;
    position: relative;
}

.about-holder h2 span {
    color: #e60000;
}

.about-holder p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 28px;
}

.about-holder p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-holder {
        padding: 60px 0;
    }

    .about-holder h2 {
        font-size: 40px;
    }

    .about-holder p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 575px) {
    .about-holder {
        padding: 50px 0;
    }

    .about-holder h2 {
        font-size: 32px;
        padding-left: 30px;
        margin-bottom: 24px;
    }
    .about-holder p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}
/* ABOUT US END */
/* PROJWKTI */
.project-holder {
    background: #fff;
    padding: 70px 0 90px;
}

.project-holder h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 8px;
}

.project-holder h2 span {
    color: #e60000;
}

.project-holder > .container > p {
    text-align: center;
    color: #5f6b7a;
    margin-bottom: 45px;
}

.project-single-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-single {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.project-single > img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.project-single h3 {
    font-size: 18px;
    margin: 22px 20px 10px;
    color: #111;
}

.project-single p {
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.5;
    margin: 0 20px 18px;
}

.project-single span {
    display: block;
    font-size: 13px;
    color: #5f6b7a;
    margin: 0 20px 10px;
    position: relative;
    padding-left: 20px;
}

.project-single span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 12px;
    background-image: url('https://dmdmconstruction.rs/wp-content/uploads/2026/06/map.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.project-single span:last-child::before {
    background-image: url('https://dmdmconstruction.rs/wp-content/uploads/2026/06/time.png');
}

.project-single span:last-child {
    margin-bottom: 22px;
}

@media (max-width: 991px) {
    .project-single-holder {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .project-holder {
        padding: 50px 0 60px;
    }

    .project-holder h2 {
        font-size: 30px;
    }

    .project-holder > .container > p {
        margin-bottom: 30px;
    }

    .project-single > img {
        height: 220px;
    }
}
/* PROJEKTI END */

/* FORM */
.contact-form-box {
    background: #fff;
    padding: 32px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-form-box h3 {
    margin-bottom: 28px;
}

.contact-form-box label {
    display: block;
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border: 1px solid #d8dde5;
    border-radius: 8px;
}

.contact-form-box textarea {
    height: 110px;
}

.contact-form-box input[type="submit"] {
    background: #e60000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    cursor: pointer;
}


.contact-holder {
    background: #f7f8fa;
    padding: 70px 0;
}

.contact-holder h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 8px;
}

.contact-holder h2 span {
    color: #e60000;
}

.contact-holder > .container > p {
    text-align: center;
    color: #5f6b7a;
    margin-bottom: 45px;
}

.contact-us-single-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.contact-right-info,
.contact-right-working {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-right-info {
    margin-bottom: 24px;
}

.contact-right-info h3,
.contact-right-working h4 {
    font-size: 22px;
    margin-bottom: 24px;
}

.telefon-holder,
.email-holder,
.adresa-holder {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-phones h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.phone-holder {
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.6;
}

.phone-holder a {
    color: #5f6b7a;
    text-decoration: none;
}

.phone-holder span {
    color: #e60000;
    margin: 0 4px;
}

.phone-holder p {
    margin: 0;
}

.contact-right-working p {
    display: flex;
    justify-content: space-between;
    color: #5f6b7a;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .contact-us-single-holder {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .contact-holder {
        padding: 50px 0;
    }

    .contact-holder h2 {
        font-size: 30px;
    }

    .contact-right-info,
    .contact-right-working {
        padding: 22px;
    }

    .telefon-holder,
    .email-holder,
    .adresa-holder {
        align-items: flex-start;
    }
}

/* FORM END */
/* CHOOSE US */
.choose-us-section {
    background: #000;
    padding: 70px 0 90px;
    color: #fff;
}

.choose-us-section h2 {
    text-align: center;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.choose-us-section h2 span {
    color: #e60000;
}

.choose-us-section > .container > p {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 45px;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.why-choose-item {
    background: #121212;
    border: 1px solid #252525;
    border-radius: 8px;
    padding: 24px 22px;
    min-height: 185px;
}

.why-choose-icon {
    width: 36px;
    height: 36px;
    background: #e60000;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.why-choose-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.why-choose-text {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.45;
}

.why-choose-text p {
    margin: 0;
}

.why-choose-text span {
    color: #e60000;
    font-weight: 600;
}

@media (max-width: 991px) {
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-choose-item {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .choose-us-section {
        padding: 50px 0 60px;
    }

    .choose-us-section h2 {
        font-size: 28px;
    }

    .choose-us-section > .container > p {
        margin-bottom: 30px;
    }
}
/* CHOOSE US END */