/* =============================== */
/* CONTACT FORM – SCOPED           */
/* =============================== */

.contact-form {
    --c1: #00A6AA;
    --c2: #37EBFA;
    --c3: #B9ACBE;
    --c4: #36728A;
    --c5: #23686F;
    --c6: #403243;
    font-family: Poppins, sans-serif;
    padding: 35px;
    color: #fff;
}

.contact-form label {
    font-weight: 600;
    margin: 10px 0px 2px 0px; /*fent, jobb, lent, bal*/
    display: block;
    letter-spacing: .4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 0 solid rgba(255,255,255,0.18) !important;
    background: rgba(255,255,255,0.06);
    color: #fff;
    backdrop-filter: blur(4px);
    transition: 0.25s ease;
    font-size: 15px;
}

/* Placeholder szín */
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select option[disabled][selected] {
    color: rgba(255,255,255,0.7);
	opacity: 0.2;
}

/* Fókusz állapot */
.contact-form input:focus,
.contact-form textarea:focus.
.contact-form select:focus {
    box-shadow: 0 0 12px rgba(55,235,250,0.45);
    background: rgba(255,255,255,0.12);
}

.contact-form textarea { height: 140px; }

/* Custom select */
.contact-form .custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
    font-size: 15px;
}

.contact-form .custom-select-selected {
    padding: 14px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: 0.25s ease;
}

.custom-select-selected:hover,
.custom-select-selected.active {
    border-color: var(--c2);
    box-shadow: 0 0 12px rgba(55,235,250,0.45);
}

.contact-form .custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 6px 0;
    display: none;
    z-index: 50;
    max-height: 260px;
    overflow-y: auto;
}

.contact-form .custom-select-options div {
    padding: 12px 14px;
    cursor: pointer;
    color: #fff;
    transition: 0.2s ease;
}

.contact-form .custom-select-options div:hover {
    background: rgba(255,255,255,0.12);
}

/* Form mezők hover / aktív állapota */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .pac-container,
.contact-form .custom-select-selected:hover,
.contact-form .custom-select-selected:focus,
.contact-form .custom-select-options div:hover,
.contact-form .custom-select-options div.active {
    background: rgba(255,255,255,0.12);
    outline: none;
    box-shadow: 0 0 12px rgba(55,235,250,0.45);
}



/* GDPR checkboxok - reszponzív */
.gdpr-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}

.contact-form .gdpr-label {
    display: flex;
    flex-wrap: wrap; /* engedi, hogy a szöveg új sorba törjön */
    align-items: flex-start; /* checkbox a sor tetején marad, szöveg törik */
    gap: 8px;
    cursor: pointer;
    font-size: clamp(14px, 2vw, 18px); /* dinamikus betűméret */
    line-height: 1.4; /* jobb olvashatóság mobilon */
}

.contact-form .gdpr-label input[type="checkbox"] {
    width: 20px;  /* nagyobb, hogy mobilon könnyen kattintható legyen */
    height: 20px;
    accent-color: var(--c2);
    flex-shrink: 0; /* nem zsugorodik össze */
}

.contact-form .gdpr-label a {
    color: var(--c2);
    text-decoration: underline;
}

/* Submit button */
.contact-form .contact-submit {
  font-family: Poppins, sans-serif;
  max-height: 100%;
  background: linear-gradient(135deg, var(--c5), var(--c4));
  color: var(--text);
  cursor: pointer;
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.contact-form .contact-submit:hover {
  background: linear-gradient(135deg, var(--c4), var(--c5));
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* =============================== */
/* ELEMENTOR ICON BOX RIGHT SIDE  */
/* =============================== */
/* ICON BOX – függőleges vonal beszúrása */
.custom-contact-info .elementor-icon-box-wrapper {
    display: flex;
	bottom: 15px;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Az ikon és a szöveg közötti függőleges vonal */
.custom-contact-info .elementor-icon-box-wrapper::before {
    content: "";
    width: 2px;
    height: 100px; /* szükség szerint módosítható */
    background: #1A7A96; /* vagy var(--c1) */
    position: absolute;
    left: 60px; /* ikon szélességéhez igazítva */
    top: 55%;
    margin-left: 20px;
    transform: translateY(-50%);
    border-radius: 2px;
}

/* Ikon fix méret */
.custom-contact-info .elementor-icon-box-icon {
    width: 30px; /* fontos a pozicionáláshoz */
    display: flex;
    justify-content: center;
}

/* Tartalom jobbra */
.custom-contact-info .elementor-icon-box-content {
    margin-left: 30px; /* hogy ne érjen rá a vonalra */
}





























