body {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    scroll-behavior: smooth;
    position: relative;
    background: #faf9f900 !important;
}

.contact-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 180px auto;
    color: #fff;
}

.underline-animate {
    font-size: 76px;
    line-height: 1.2;
    display: inline;
    background-image: linear-gradient(#F28C28, #F28C28);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    animation: underlineMulti 1s ease-out forwards;
}

@keyframes underlineMulti {
    from { background-size: 0% 3px; }
    to { background-size: 100% 3px; }
}

.contact-header {
    text-align: center;
    width: 70%;
    margin: 0 auto 60px auto;
}

.contact-header p {
    font-size: 20px;
    opacity: 0.8;
}

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

.contact-form, .direct-contact {
    background: #111;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #222;
    width: 50%;
    height: fit-content;
}

.contact-form h2, .direct-contact h2 {
    margin-bottom: 25px;
    font-size: 26px;
    border-bottom: 2px solid #F28C28;
    padding-bottom: 10px;
}

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

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

input, select, textarea {
    width: 95%;
    padding: 12px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 16px;
}

textarea {
    min-height: 120px;
    resize: none;
}

.contact-btn {
    width: 100%;
    padding: 15px;
    background: #F28C28;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.contact-btn:hover {
    background: #ff9f4a;
}

.fast-response {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

/* CAPTCHA placeholder */
.captcha-placeholder {
    background: #1c1c1c;
    border: 1px dashed #444;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Direktan kontakt */
.contact-box {
    margin-bottom: 25px;
}

.contact-box p {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-box a {
    color: #F28C28;
    font-size: 20px;
    text-decoration: none;
}

.whatsapp-btn {
    background: #111111;
    border: 1px solid #F28C28;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fafafa !important;
    font-weight: 600;
    display: inline-block;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #F28C28;
    color: #000 !important;
}

.why-us-box {
    margin-top: 30px;
}

.why-us-box h3 {
    margin-bottom: 12px;
}

.why-us-box ul li {
    margin-bottom: 6px;
    opacity: 0.8;
}

/* FAQ Kontakt Stranica */
.faq-contact {
    margin-top: 50px;
    background: #111;
    border-radius: 12px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.faq-item {
    border-bottom: 1px solid #222;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #F28C28;
}

.faq-icon {
    font-size: 26px;
    color: #F28C28;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.35s ease;
    padding-right: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 18px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.captcha-placeholder{
    display: none;
}

/* FinisherHeader canvas full screen fix */
.finisher-header canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none;
    display: block;
}

/* Responsive */
@media(max-width: 768px){

    .contact-wrapper {
        margin: 90px auto;
    }

    .contact-header {
        width: 90%;
    }

    .contact-header p {
        font-size: 18px;
    }

    .underline-animate {
        font-size: 38px;
    }

    .contact-content {
        flex-direction: column;
    }
    .contact-form, .direct-contact {
        width: 80%;
    }
    .faq-title {
        font-size: 26px;
    }

    input, textarea{
        width: 90%;
    }

    input, select, textarea {
        font-size: 16px;
    }
}
