/* ==========================================================================
   MODULE: CONTACT-MODULE
   ========================================================================== */

.contact-module {
    overflow: hidden;
}

.contact-info-wrapper h2 {
    letter-spacing: -1px;
    line-height: 1.2;
}

/* --- KONTAKTNÉ POLOŽKY (DESKTOP) --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

.contact-content label {
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-content a {
    transition: color 0.2s ease;
}

/* --- FORMULÁR --- */
.contact-form-card {
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-module .form-control {
    box-shadow: none !important;
    padding: 12px 0;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #eee !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.contact-module .form-control:focus {
    border-bottom-color: var(--bs-primary) !important;
}

/* --- RESPONZIVITA (MOBILNÝ FIX) --- */
@media (max-width: 991.98px) {
    .contact-info-wrapper {
        text-align: center;
        margin-bottom: 3rem;
    }

    .contact-item {
        flex-direction: column; /* Ikona nad text */
        align-items: center;    /* Všetko na stred */
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-icon-box {
        margin-right: 0;        /* Zrušenie bočného odsadenia */
        margin-bottom: 0.75rem; /* Medzera medzi ikonou a labelom */
    }

    .contact-module .text-end {
        text-align: center !important; /* Tlačidlo na stred */
    }
    
    .contact-module .btn {
        width: 100%; /* Na mobile tlačidlo na celú šírku */
    }
}