/* =========================================
   KONTAKT STRANICA STILOVI (BEZ FORME)
========================================= */

.contact-wrapper.centered-contact {
    max-width: 600px; /* Uže jer nema forme */
    margin: 40px auto; /* Savršeno centrirano na ekranu */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center; /* Centriramo sav tekst */
}

.contact-info {
    padding: 50px 40px;
    color: var(--text-main, #1f2937);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color, #2563eb); /* Plavi naslov */
}

.contact-info .text-muted {
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center; /* Centriramo stavke unutar kontejnera */
}

.info-item {
    display: flex;
    flex-direction: column; /* Ikona ide iznad teksta */
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color, #2563eb);
    background: rgba(37, 99, 235, 0.1); /* Svijetlo plava pozadina oko ikone */
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 5px;
}

.info-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main, #1f2937);
}

.info-item p {
    margin: 0;
    color: #6b7280;
}

.social-links-contact {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links-contact a {
    color: var(--primary-color, #2563eb);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-contact a:hover {
    background: var(--primary-color, #2563eb);
    color: white;
    transform: translateY(-3px); /* Mali skok prema gore na prelasku mišem */
}

/* Responzivnost za mobitele */
@media (max-width: 768px) {
    .contact-wrapper.centered-contact {
        margin: 20px;
    }
    .contact-info {
        padding: 40px 20px;
    }
}