/* ============================================================
   KONTAKT OLDAL EGYEDI STÍLUSOK 
   (A fejlécet és logót a style.css vezérli!)
   ============================================================ */

.contact-page-wrapper {
    /* Mivel a style.css-ben a body-n van 100px padding, 
       ide csak minimális plusz hely kell */
    padding-top: 20px; 
    background-color: #f4f7f9;
    min-height: 100vh;
}

/* SZEKCIÓ CÍMEK */
.contact-form-section {
    padding: 60px 20px;
}

.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-section .subtitle {
    color: #d4a017;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: #222; /* Hozzáigazítva a style.css-hez */
    margin-bottom: 20px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

/* AZ ŰRLAP KÁRTYÁJA */
.form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1a5276;
}

.form-group input, 
.form-group textarea {
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #d4a017;
}

/* JOGI RÉSZ */
.form-privacy-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
}

.privacy-item input {
    margin-top: 3px;
    cursor: pointer;
}

.privacy-item a {
    color: #1a5276;
    text-decoration: none;
    font-weight: 600;
}

/* BEKÜLDŐ GOMB */
.submit-btn {
    background-color: #d4a017;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.submit-btn:hover {
    background-color: #b88a14;
    transform: translateY(-2px);
}

/* TÖLTÉS ANIMÁCIÓ */
@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.LMBlinking {
    animation: blinking 1s infinite;
    cursor: not-allowed;
    background-color: #ccc !important;
}


