/* AJÁNLATKÉRŐ FORM STÍLUSOK */

.contact-form-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-title-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Beviteli mezők tárolója */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Alapértelmezett input és textarea stílus */
.contact-control, 
.contact-form textarea.form-control {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding: 12px 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

/* Fókusz állapot (amikor belekattaint a felhasználó) */
.contact-control:focus, 
.contact-form textarea.form-control:focus {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 2px solid var(--primary-orange);
    outline: none;
}

/* Textarea egyedi magassága */
.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ReCaptcha igazítása */
.g-recaptcha {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

/* Küldés gomb egyedi hangolása */
#form-submit {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

#form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

/* Hibaüzenetek stílusa */
.help-block.with-errors {
    color: #d9534f;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Sikeres küldés utáni PHP üzenet stílusa */
.contact-form-section h1 {
    color: var(--primary-orange);
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form-section p b {
    color: var(--dark-bg);
}

/* Mobilos igazítás */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
}