/* --- HOME PAGE CUSTOM STYLES --- */

/* 1. Services Card (Modern Look) */
.home-service-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    /* Da slika ne izlazi van okvira */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    /* Ukida default padding da bi slika bila full-width */
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-service-img {
    width: 100%;
    height: 250px;
    /* Fiksna visina slike */
    position: relative;
    overflow: hidden;
}

.home-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Slika popunjava ceo prostor */
    transition: transform 0.5s ease;
}

.home-service-card:hover .home-service-img img {
    transform: scale(1.1);
    /* Zoom efekat */
}

.home-service-content {
    padding: 30px 25px;
    /* Padding samo za tekst */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.home-service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.home-service-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    color: #9E9270;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* CSS za "Strengths" kartice */
.ltn__category-item-5.static-item {
    background: #fff;
    padding: 30px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.ltn__category-item-5.static-item:hover {
    transform: translateY(-5px);
    border-color: #9E9270;
    /* Zlatni okvir na hover */
}

.ltn__category-item-5.static-item .category-icon {
    font-size: 40px;
    color: #9E9270;
    margin-bottom: 20px;
    display: inline-block;
}

.ltn__category-item-5.static-item .category-title {
    font-size: 16px;
    font-weight: 700;
    color: #071c1f;
    margin: 0;
    display: block;
}

.modern-strengths-area {
    background-color: #f8f9fa;
    /* Jako svetlo siva pozadina za kontrast sa belim karticama */
    position: relative;
}

.modern-strength-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 8px;
    /* Vrlo meka, moderna senka koja daje dubinu */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Bitno za hover efekat linije */
    transition: box-shadow 0.3s ease;
}

/* Uklonjen prethodni hover cele kartice, sada samo malo pojačamo senku */
.modern-strength-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* --- ELEGANT BOTTOM BORDER HOVER EFFECT --- */
/* Kreiramo nevidljivu liniju na dnu */
.modern-strength-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* Debljina linije na dnu */
    background-color: #9E9270;
    /* Zlatna boja */
    /* Inicijalno stanje: linija je skupljena skroz levo */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

/* Na hover kartice, linija se širi na 100% */
.modern-strength-card:hover::after {
    transform: scaleX(1);
}

/* ----------------------------------------- */


/* Stil ikonice */
.ms-icon-wrap {
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.ms-icon {
    font-size: 45px;
    /* Veća ikonica */
    color: #9E9270;
    transition: transform 0.3s ease;
}

/* Suptilno podizanje samo ikonice na hover */
.modern-strength-card:hover .ms-icon {
    transform: translateY(-5px);
}

/* Stil naslova */
.ms-title {
    font-size: 18px;
    font-weight: 700;
    color: #071c1f;
    margin: 0;
    line-height: 1.4;
}


/* CSS OPTIMIZACIJA ZA NEKRETNINE */
.ltn__product-item-4 {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    /* Razmak ako nije slajder */
}

.ltn__product-item-4:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Fiksna visina slike i cover efekat */
.product-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ltn__product-item-4:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ltn__list-item-2 li {
    font-size: 13px;
    color: #666;
}

.ltn__list-item-2 li i {
    color: #9E9270;
    /* Zlatna boja ikonica */
}