.card-loop-item .ratio{
    aspect-ratio: 16 / 9 !important;
}
.card-loop-item a {
    color: #111827;
    text-decoration: none !important;
}
.card-loop-item:hover a.hover-effect-underline{
    text-decoration: underline !important;
}
.card-loop-item:hover .ratio img {
    transform: scale(1.05);
}
.card-loop-item img {
    transition: all .3s ease;
}
.card-loop-item .badge {
    font-weight: 500 !important;
    background-color: #eef1f6 !important;
}
.rating-right-wrapper .fw-semibold {
    color: #111827 !important;
}
.rating-right-wrapper .text-muted {
    margin-top: -5px;
}
.rating-right-wrapper .star-front{
    color: rgb(252, 146, 49) !important;
}
.view-more {
    border-radius:50%;
    width:35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E5E5E5;
}
.view-more i {
    font-size: 15px;
}

h1 {
    font-weight:600 !important;
}

.why-us-section {
    padding:80px 0;
    background-color: #EEF1F6;
}

.browse-pros {
    padding-bottom: 80px;
}

#home-search-form select,
#home-search-form input {
    padding-left: 30px !important;
    height: 45px !important;
}



.boxes-section {
    padding-bottom: 80px;
}

/* ====== GRID LAYOUT ====== */
.boxes-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;   /* lijevi veći, desni manji */
  grid-template-rows: auto auto;
  grid-template-areas:
    "hero stats"
    "hero local";
  gap: 30px; /* razmak između boxeva */
}
.box-grid {
    padding: 40px;
    border-radius: 20px;
}
.box-grid-hero {
    background-color: #FFE6D8;
    padding: 60px;
}
.box-grid-hero h2 {
    font-size: 36px;
    line-height: 1.3;
}
.box-grid-hero p {
    max-width: 400px;
    margin: 20px 0;
}
.box-grid-stats {
    background-color: #111827;
}
.box-grid-local {
    background-color: #427E84;
}
.box-grid-stats-number {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
}
.box-grid-stats-text {
    color: #fff;
}

.box-grid-local h2,
.box-grid-local {
    color: #fff
}
.box-grid-local-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.box-grid-local-cities a {
    background-color: #fff;
    color: #111827;
    padding: 6px 15px;
    text-decoration: none !important;
    border-radius: 30px;
    font-size: 12px;
}
.box-grid-local-cities a:hover {
    opacity: 0.6;
}

/* mapiranje zona */
.box-grid-hero  { grid-area: hero; }
.box-grid-stats { grid-area: stats; }
.box-grid-local { grid-area: local; }

/* responsive - na manjim ekranima sve ispod sebe */
@media (max-width: 992px) {
  .boxes-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "stats"
      "local";
  }
}






@media(max-width:767px){
    .box-grid {
        padding: 30px !important;
    }
    .box-grid-stats .row {
        gap: 30px;
    }
    .browse-pros {
        padding-bottom: 40px;
    }
    .why-us-section {
        padding:50px 0;
        background-color: #EEF1F6;
    }
    .box-grid-hero h2 {
        font-size: calc(1.325rem + .9vw);
    }
    .boxes-section {
        padding-bottom: 50px;
    }
}