/* --- KAPCSOLAT OLDAL STÍLUSOK --- */

.contact-page {
    padding-top: 6rem;
    min-height: 100vh;
}

/* HERO RÉSZ */
.contact-hero {
    padding: 0 3vw;
    margin-bottom: 4rem;
    text-align: left;
}

.contact-hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.9;
    color: white;
    margin: 0.5rem 0 2rem 0;
}

.contact-hero .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--pink); /* Csak keretes neon */
    text-shadow: 0 0 20px rgba(216, 202, 228, 0.3);
}

.contact-hero .intro {
    font-family: var(--font-tech);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    border-left: 2px solid var(--lime);
    padding-left: 1.5rem;
}

/* FŐ LAYOUT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Az űrlap szélesebb */
    gap: 3vw;
    padding: 0 3vw 5rem 3vw;
}

/* 1. OSZLOP: INFÓK */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block .label {
    font-family: var(--font-tech);
    color: var(--lime);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.glitch-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.glitch-link:hover {
    color: var(--pink);
    transform: translateX(10px);
    text-shadow: 2px 0 var(--stroke), -2px 0 var(--pink);
}

.address {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    line-height: 1.4;
}

/* MAP STYLING (Hologram Effect) */
.map-container {
    width: 100%;
    height: 300px;
    position: relative;
    border: 1px solid var(--stroke);
    overflow: hidden;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    background: var(--panel);
}

.map-container iframe {
    width: 100%; height: 100%; border: none;
    filter: grayscale(100%) invert(90%) contrast(1.2); /* Sötét mód hack a térképre */
    opacity: 0.6;
}

.map-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; /* Át lehessen kattintani a térképre */
    z-index: 2;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    display: flex; align-items: center; justify-content: center;
}

.map-overlay span {
    background: var(--surface); color: var(--lime-strong); padding: 0.45rem 0.75rem;
    font-family: var(--font-tech); border: 1px solid var(--lime-strong);
    border-radius: var(--radius-sm);
}

/* 2. OSZLOP: ŰRLAP */
.form-column {
    background: var(--panel);
    border: 1px solid var(--stroke);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(20, 16, 45, 0.25);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 2rem;
}

.form-row { display: contents; }
.form-group { margin-bottom: 0; }
.quote-form .span-all { grid-column: 1 / -1; }
.quote-form .file-upload-group { grid-column: 1 / -1; }
.quote-form .checkbox-group { grid-column: 1 / -1; }
.quote-form .submit-btn { grid-column: 1 / -1; }

label {
    font-family: var(--font-tech);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

/* Input Mezők Stílusa */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    background: rgba(216, 202, 228, 0.04);
    border: 1px solid var(--stroke);
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 0.95rem 1rem;
    transition: 0.3s;
    border-radius: var(--radius-sm);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--pink-strong);
    background: linear-gradient(to top, rgba(157, 129, 252, 0.08), rgba(216, 202, 228, 0.05));
    box-shadow: 0 0 0 4px rgba(157, 129, 252, 0.12);
}

/* Custom Select Nyíl */
.select-wrapper { position: relative; }
.select-wrapper::after {
    content: '▼';
    position: absolute; right: 1rem; top: 1rem;
    color: var(--pink); font-size: 0.8rem; pointer-events: none;
}
select { appearance: none; -webkit-appearance: none; cursor: pointer; }
select option { background: var(--surface); color: white; }

/* Custom Fájl Feltöltés */
.file-drop-area {
    position: relative;
    display: flex; align-items: center;
    width: 100%;
    padding: 20px;
    border: 1px dashed var(--stroke);
    background: rgba(216, 202, 228, 0.04);
    transition: 0.3s;
    border-radius: var(--radius-sm);
}

.file-drop-area:hover { border-color: var(--pink); }

.fake-btn {
    background: var(--panel-strong); color: white;
    padding: 8px 15px; font-family: var(--font-tech); font-size: 0.8rem;
    margin-right: 15px; pointer-events: none;
    border-radius: var(--radius-sm);
}

.file-msg {
    font-family: var(--font-tech); font-size: 0.8rem; color: rgba(255,255,255,0.5);
}

.file-input {
    position: absolute; left: 0; top: 0; height: 100%; width: 100%;
    opacity: 0; cursor: pointer;
}

.hint {
    display: block; font-family: var(--font-tech); font-size: 0.7rem;
    color: rgba(255,255,255,0.3); margin-top: 5px; text-align: right;
}

/* Checkbox */
.checkbox-group {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 2rem;
}
.checkbox-group label { margin: 0; line-height: 1.4; color: rgba(255,255,255,0.7); }
.checkbox-group a { color: var(--pink); text-decoration: none; }
input[type="checkbox"] { accent-color: var(--pink); margin-top: 4px; }

/* Submit Gomb */
.submit-btn {
    width: 100%;
    background: var(--lime-strong);
    color: var(--ink);
    border: none;
    padding: 1.2rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 36px rgba(209, 250, 49, 0.18);
}

.submit-btn:hover {
    background: var(--lime);
    box-shadow: 0 18px 36px rgba(236, 255, 173, 0.22);
}

/* MOBIL */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .quote-form { grid-template-columns: 1fr; }
    .contact-hero h1 { font-size: 3rem; }
    .form-column { padding: 1.5rem; }
}