/* =================================
   Kontakt Stranica - Redizajn Boja
================================= */

.page-header-simple {
    height: 180px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.page-header-simple .page-title {
    font-size: 42px;
    text-transform: uppercase;
    color: #212529;
}

.contact-content {
    padding: 80px 0;
    overflow: hidden;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-form-wrapper {
    flex-basis: 65%;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-top: 0;
    color: #212529;
}

.contact-sidebar {
    flex-basis: 35%;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    border-left: 5px solid #2596be;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #212529;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-details i {
    color: #2596be;
    font-size: 20px;
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.contact-details span {
    line-height: 1.6;
    color: #6c757d;
}

.contact-details a {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
}
.contact-details a:hover {
    color: #2596be;
}

/* =================================
   Stilovi za Contact Form 7
================================= */

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
}

.wpcf7-form-control.wpcf7-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: #2596be;
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.25);
}

.wpcf7-textarea {
    height: 150px;
    resize: vertical;
}

::placeholder {
    color: #999;
    opacity: 1;
}

.wpcf7-submit {
    background-color: #FFC107;
    color: #212529;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: auto;
}

.wpcf7-submit:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-response-output { margin: 20px 0 0 0!important; padding: 15px!important; border-radius: 5px!important; border: 1px solid!important; text-align: center!important; font-weight: 500!important; }
.wpcf7-mail-sent-ok { background-color: #d4edda!important; border-color: #c3e6cb!important; color: #155724!important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background-color: #f8d7da!important; border-color: #f5c6cb!important; color: #721c24!important; }

.contact-map-section {
    padding-top: 80px;
}
.map-title {
    text-align: center;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 40px;
    color: #212529;
}
.map-embed-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Mobilni prikaz */
@media (max-width: 820px) {
    .contact-grid {
        flex-direction: column;
        gap: 50px;
    }
    .map-embed-wrapper iframe {
        height: 300px;
    }
}