/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* --- PAGE HEADER (Banner) --- */
.page-header {
    background: url('../assets/images/hero/slide2.jpg') no-repeat center center/cover; /* Koristi neku od slika koju imaš */
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-header .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 34, 68, 0.7); /* Tamno plavi filter */
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    color: #f0f0f0;
}

/* --- CONTACT LAYOUT --- */
.contact-section {
    padding-bottom: 80px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

/* --- LEVA STRANA (INFO) --- */
.contact-info-box {
    flex: 1;
    padding-right: 20px;
}

.contact-info-box h2 {
    font-size: 32px;
    color: #1a2b4c;
    margin-bottom: 15px;
}

.contact-info-box .subtitle {
    color: #666;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f4f8;
    color: #004085;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-item:hover .icon-box {
    background-color: #004085;
    color: #fff;
}

.info-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-text p {
    color: #555;
    font-size: 15px;
    margin-bottom: 2px;
}

/* Socials na Contact strani */
.social-follow h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #004085;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* --- DESNA STRANA (FORMA) --- */
.contact-form-box {
    flex: 1.2; /* Malo šire od info dela */
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Elegantna senka */
    border-top: 5px solid #004085;
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.styled-form .form-group {
    margin-bottom: 20px;
}

.styled-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.styled-form input,
.styled-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    background-color: #f9f9f9;
}

.styled-form input:focus,
.styled-form textarea:focus {
    border-color: #004085;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 64, 133, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* --- DUGME ZA SLANJE (Submit Button) --- */
.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    background-color: #004085; /* Osnovna plava boja */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease; /* Glatka animacija */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Razmak između teksta i ikonice */
}

/* EFEKAT NA HOVER (Isti kao social ikonice) */
.submit-btn:hover {
    background-color: #333;       /* Tamno siva boja */
    transform: translateY(-3px);  /* Dugme se diže na gore */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Mala senka ispod dok leti */
}

.submit-btn i {
    transition: 0.3s;
}

/* Opciono: Ikonica aviona se malo pomeri desno na hover */
.submit-btn:hover i {
    transform: translateX(3px) translateY(0); /* Resetujemo Y da ne beži previše */
}

/* --- FULL MAP --- */
.full-width-map {
    margin-bottom: -5px; /* Fix za mali razmak do footera */
    filter: grayscale(20%); /* Malo sivkasta mapa da bude lepša */
    transition: 0.5s;
}
.full-width-map:hover {
    filter: grayscale(0%);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-info-box {
        padding-right: 0;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 32px; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-box { padding: 25px; }
}