/* =========================
   HERO
========================= */

.utazas-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;

    padding: 140px 20px;
    text-align: center;
    color: white;

    background-image: url('/wp-content/uploads/hero/hero.jpg');
    background-size: cover;
    background-position: center;
}

.utazas-hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.27),
        rgba(0, 0, 0, 0.37)
    );
}

.utazas-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* HERO CONTENT */

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    color: white;
    font-size: 14px;
    margin: 0 auto 20px;
    backdrop-filter: blur(6px);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.hero-title span {
  display: inline;
  color: #F9C99B;
  font-style: italic;
  white-space: nowrap;
}
/* NEKED KIEMELÉS */
.hero-title .neked-highlight {
  color: #D6825C;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(255,255,255,.85);
}

/* CTA */

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
  background: #D6825C;
  color: white;
  padding: 14px 32px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(214,130,92,0.4);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  font-size: 16px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 9px;
  font-weight: 500;
  transition: all 0.2s;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
}
.btn-secondary:hover {
background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.39);
  border-color: rgba(255,255,255,0.65);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* =========================
   SECTION SPACING
========================= */

.utazas-archive .utazas-section {
    margin-top: clamp(40px, 6vw, 100px);
}

/* =========================
   BADGE (SECTION HEADER)
========================= */

.utazas-archive .section-header .badge {
    display: inline-flex !important;
    width: fit-content !important;
    padding: 6px 14px;
    border-radius: 999px;
}

.badge-left, .badge-right {
  position: absolute;
  top: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 99;
}

.active-badge {
    background: #D6825C !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transform: scale(1.05);
}

/* =========================
   FILTER
========================= */

.utazas-filter-bg {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}


.utazas-filter {
    position: sticky;
    top: 0;
    z-index: 50;
}


.utazas-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 20px;
}


.utazas-archive .filter-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
    white-space: nowrap;
}

.utazas-archive .filter-btn.is-active {
    background: #D6825C !important;
    color: #fff !important;
    border-color: #D6825C;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.utazas-archive .filter-btn:hover {
    background: #f5f5f5;
}


.filter-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.utazas-archive > .utazas-filter-bg {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================
   GRID
========================= */

.utazas-archive .cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
}
/*
@media (max-width: 1024px) {
    .utazas-archive .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .utazas-archive .cards {
        grid-template-columns: 1fr;
    }
}
*/

@media (max-width: 640px) {

    .utazas-archive .cards {
        display: flex !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .utazas-archive .card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

}
/* =========================
   SCROLL OFFSET
========================= */

.utazas-section {
    scroll-margin-top: 120px;
}

/* =========================
   CARD HOVER
========================= */
.card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 30px;
	padding-top: 60px !important;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.card:hover .card-hover {
    opacity: 1;
  }

.card-image {
    position: relative;
    overflow: hidden;
}

.hover-item {
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);

    padding: 10px 14px;
    border-radius: 999px;

    color: #fff;
    font-size: 14px;
	
}


.hover-item img {
    width: 25px !important;
    height: 25px !important;
}

.card-short-desc {
    margin: 10px 0 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.card-highlight {
    margin: 8px 0 10px;
    color: #D6825C;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.card-short-desc {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
}

/* Egyforma kártya magasság */

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
	text-decoration: none;
    color: inherit;
}
.card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-meta {
    margin-top: auto;
}
.card-body h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-icon img {
    width:45px !important;
    height: 45px !important;
    margin-bottom: 10px;
}

.card-note {
    margin-top: 10px;
    font-size: 13px;
    color: #D6825C;
    font-style: italic;
	border-top:1px solid #D6825C;
}
.badge-left,
.badge-right {
    cursor: pointer;
}
.card-dim {
    opacity: 0.5;
    transform: scale(0.98);
}
/* =========================
   LUXUS SECTION
========================= */

.luxus-section {
    position: relative;
    padding: 140px 20px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.luxus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C2B3A 0%, #2E3E4A 50%, #1C2B3A 100%);
  opacity: 0.9;
}

.luxus-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.luxus-badge {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  font-weight: 600;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.luxus-title {
    font-family: 'Cormorant Garamond', serif !important;
      font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff !important;
}


.luxus-desc {
  max-width: 850px;
  margin: 0 auto 20px;
    margin-bottom: 20px;
  opacity: .9;
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.luxus-desc em {
    color: #C9A96E;
    font-style: italic;
}

.luxus-highlight {
    color: #F9C99B;
    margin-bottom: 25px;
	font-size: 18px;
}

.luxus-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
	flex-wrap: wrap;
}

.luxus-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.luxus-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.luxus-feature img {
    width: 40px;
    margin-bottom: 8px;
}

/*luxus gomb kiemelés */
.filter-btn[data-scroll] {
    background: linear-gradient(135deg,#d6a85c,#f3d19c);
    color:#000;
    font-weight:600;
}

/* Luxus blokk előtti levegő */
.luxus-section {
    margin-top: 90px;
}
/* Luxus szekció full width kitörés */
.luxus-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    min-height: 720px;
    padding: 140px 20px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* gomb */
.luxus-btn {
    padding: 14px 32px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.luxus-btn.primary {
    background: #D6825C;
    color: #fff;
    box-shadow: 0 4px 20px rgba(214,130,92,0.4);
}

.luxus-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

/* feature ikonok */
.luxus-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 44px;
    flex-wrap: wrap;
}

.luxus-feature span {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.luxus-feature p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
    .luxus-section {
        min-height: 620px;
        padding: 100px 20px;
    }
}
.btn-secondary.luxus-popup-trigger {
  font-size: 15px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 9px;
  font-weight: 500;
  transition: all 0.2s;
}
/*
.btn-secondary.luxus-popup-trigger {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
*/
/* =========================
   POPUP WRAPPER
========================= */

.luxus-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(20,30,40,0.65);
    backdrop-filter: blur(6px);
    padding: 20px;
}


/* ACTIVE */
.luxus-popup.is-active {
    display: flex !important;
}

/* =========================
   INNER
========================= */

.luxus-popup-inner {
    background: #fff;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;

    border-radius: 12px;
    padding: 30px;
    position: relative;

    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* CLOSE */
.luxus-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
}

.luxus-popup.is-active {
    display: flex !important;
}


.luxus-popup-close:hover {
    background: #D6825C;
    color: #fff;
}
.luxus-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #383030;
    background-color: rgb(56, 48, 48);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s;
  float: right;
}

.luxus-popup-close {
  background-color: #1e5779 !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 30px !important;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

    .luxus-popup {
        align-items: flex-end;
        padding: 0;
    }

    .luxus-popup-inner {
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        padding: 20px;
    }

}

/* =========================
   Fix utazás szekció
========================= */
/* WHY SECTION */
.why-section {
  text-align: center;
  padding: 100px 20px;
  background: #eef3f6;
}

.why-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.why-section .sub {
  color: #6b7b88;
  margin-bottom: 20px;
}

.why-section .desc {
  max-width: 700px;
  margin: 0 auto 20px;
}

.why-section .quote {
  font-style: italic;
  color: #5b6e7c;
}


/* NEWSLETTER */
.newsletter-section {
  text-align: center;
  padding: 120px 20px;
  background: #4f6a7f;
  color: white;
}

.newsletter-section h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.newsletter-section .desc {
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto 20px;
}

.newsletter-section .note {
  font-size: 13px;
  opacity: 0.7;
}
/* Utazás linkek */
.fixcsomag-section,
.utazas-cta-newsletter-section {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.fixcsomag-section {
  background: #edf5f9;
  padding: 105px 20px 95px;
  text-align: center;
}

.fixcsomag-inner {
  max-width: 760px;
  margin: 0 auto;
}

.fixcsomag-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  color: #121212;
  margin: 0 0 22px;
  font-weight: 600;
}

.fixcsomag-sub {
  font-size: 18px;
  color: #41576a;
  margin: 0 0 34px;
}

.fixcsomag-desc {
  max-width: 650px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.8;
  color: #263847;
}

.fixcsomag-quote {
  font-size: 18px;
  font-style: italic;
  color: #365d78;
  margin: 0;
}

.utazas-cta-newsletter-section {
  background: #4f6f84;
  color: #fff;
  text-align: center;
  padding: 95px 20px 75px;
}

.utazas-custom-cta {
  max-width: 760px;
  margin: 0 auto 115px;
  
}

.utazas-custom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 16px;
  color: #fff;
}

.utazas-custom-cta p {
  font-size: 18px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.92);
}

.utazas-plan-btn {
  background: var(--terra);
  color: white;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(214,130,92,0.45);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.utazas-plan-btn:hover {
  transform: translateY(-2px);
  background: #ee9366;
  color:white;
}

.utazas-newsletter-block {
  max-width: 800px;
  margin: 0 auto;
}

.utazas-newsletter-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px;
}

.utazas-newsletter-block p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin: 0 0 25px;
}

.utazas-newsletter-form {
  max-width: 860px;
  margin: 0 auto 14px;
}

.utazas-newsletter-block small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 15px;
}

@media (max-width: 768px) {
  .fixcsomag-section {
    padding: 75px 18px;
  }

  .fixcsomag-section h2,
  .utazas-custom-cta h2 {
    font-size: 30px;
  }

  .utazas-cta-newsletter-section {
    padding: 75px 18px 65px;
  }

  .utazas-custom-cta {
    margin-bottom: 80px;
  }
}
.utazas-newsletter-block small a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.utazas-newsletter-block small a:hover {
  color: inherit !important;
  opacity: 0.8;
}

/* Hírlevél Form az oldal alján */
/* =========================
   GF HÍRLEVÉL – 2 MEZŐ + GOMB STÍLUS
========================= */

.utazas-newsletter-block #gform_wrapper_5 {
  max-width: 760px;
  margin: 0 auto;
}

/* GF saját heading elrejtése */
.utazas-newsletter-block #gform_wrapper_5 .gform_heading {
  display: none !important;
}

/* Egy sor: Email | Keresztnév | Gomb */
.utazas-newsletter-block #gform_fields_5 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Spacer ne foglaljon helyet */
.utazas-newsletter-block #gform_fields_5 .spacer {
  display: none !important;
}

/* Mező reset */
.utazas-newsletter-block #field_5_1,
.utazas-newsletter-block #field_5_4,
.utazas-newsletter-block #field_submit {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Arány: email 40%, keresztnév 30%, gomb 30% */
.utazas-newsletter-block #field_5_1 {
  flex: 0 0 calc((100% - 20px) * 0.40) !important;
}

.utazas-newsletter-block #field_5_4 {
  flex: 0 0 calc((100% - 20px) * 0.30) !important;
}

.utazas-newsletter-block #field_submit {
  flex: 0 0 calc((100% - 20px) * 0.30) !important;
}


/* Input mezők */
.utazas-newsletter-block #gform_5 input[type="email"],
.utazas-newsletter-block #gform_5 input[type="text"] {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: none !important;
  border-radius: 9px !important;
  background: #ffffff !important;
  color: #1f2933 !important;
  font-size: 15px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Placeholder */
.utazas-newsletter-block #gform_5 input::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
}

/* Gomb */
.utazas-newsletter-block #gform_submit_button_5 {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: none !important;
  border-radius: 9px !important;
  background: #e58a5f !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-transform: none !important;
  transition: all 0.2s ease !important;
}

.utazas-newsletter-block #gform_submit_button_5:hover {
  background: #d9784c !important;
  transform: translateY(-2px);
}

/* Üres footer ne foglaljon helyet */
.utazas-newsletter-block #gform_5 .gform_footer {
  display: none !important;
}

/* Validáció ne verje szét a sort */
.utazas-newsletter-block #gform_5 .validation_message {
  display: none !important;
}

/* Hibás mező kerete */
.utazas-newsletter-block #gform_5 .gfield_error input[type="email"],
.utazas-newsletter-block #gform_5 .gfield_error input[type="text"] {
  border: 2px solid #e14b3b !important;
  box-shadow: 0 0 0 3px rgba(225, 75, 59, 0.18) !important;
}

/* Mobilon egymás alá */
@media (max-width: 640px) {
  .utazas-newsletter-block #gform_fields_5 {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .utazas-newsletter-block #field_5_1,
  .utazas-newsletter-block #field_5_4,
  .utazas-newsletter-block #field_submit {
    flex: 0 0 auto !important;
    width: 100% !important;
  }
}
.gfield_label.gform-field-label {
  position: absolute;
  margin-top: 15px;
  padding-left: 15px;
}
.utazas-newsletter-block .gfield_label.gform-field-label {
  display: flex !important;
  align-items: center !important;
  min-height: 52px;
  margin: 0 !important;
}
/* Label eltüntetése kattintáskor / fókuszkor */
.utazas-newsletter-block #gform_5 .gfield_label {
  transition: opacity 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
}

/* Ha az adott mező aktív, a label tűnjön el */
.utazas-newsletter-block #gform_5 .gfield:focus-within .gfield_label {
  opacity: 0 !important;
  visibility: hidden !important;
}
/* Ha már van beírt érték, a label maradjon rejtve */
.utazas-newsletter-block #field_5_1:has(input:not(:placeholder-shown)) .gfield_label,
.utazas-newsletter-block #field_5_4:has(input:not(:placeholder-shown)) .gfield_label {
  opacity: 0 !important;
  visibility: hidden !important;
}
.utazas-newsletter-block .gfield_label.gform-field-label {
  display: none;
}
.utazas-newsletter-block #gform_5 input[type="email"], .utazas-newsletter-block #gform_5 input[type="text"] {
  text-align: left;
}
/* GF hírlevél label elrejtése – placeholderes működés */
.utazas-newsletter-block #gform_5 .gfield_label,
.utazas-newsletter-block #gform_5 .gfield_required,
.utazas-newsletter-block #gform_5 .gfield_required_text {
  display: none !important;
}

/* GF 5 form */
/* =========================
   GLOBAL GF NEWSLETTER FORM #5
   Email 40% | Keresztnév 30% | Gomb 30%
========================= */

#gform_wrapper_5 {
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* GF saját heading elrejtése */
#gform_wrapper_5 .gform_heading {
  display: none !important;
}

/* Footer elrejtése, mert a submit inline mezőben van */
#gform_5 .gform_footer {
  display: none !important;
}

/* Mezők egy sorban */
#gform_5 #gform_fields_5 {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

/* Honeypot + spacer ne foglaljon helyet */
#gform_5 #field_5_5,
#gform_5 #gform_fields_5 .spacer {
  display: none !important;
}

/* Mezők reset */
#gform_5 #field_5_1,
#gform_5 #field_5_4,
#gform_5 #field_submit {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Arányok */
#gform_5 #field_5_1 {
  flex: 0 0 calc((100% - 20px) * 0.40) !important;
}

#gform_5 #field_5_4 {
  flex: 0 0 calc((100% - 20px) * 0.30) !important;
}

#gform_5 #field_submit {
  flex: 0 0 calc((100% - 20px) * 0.30) !important;
}

/* Label + kötelező jelzés elrejtése, placeholdert használunk */
#gform_5 .gfield_label,
#gform_5 .gfield_required,
#gform_5 .gfield_required_text {
  display: none !important;
}

/* Input mezők */
#gform_5 input[type="email"],
#gform_5 input[type="text"] {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: none !important;
  border-radius: 9px !important;
  background: #ffffff !important;
  color: #1f2933 !important;
  font-size: 15px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Placeholder */
#gform_5 input::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
}

/* Gomb */
#gform_submit_button_5 {
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: none !important;
  border-radius: 9px !important;
  background: #e58a5f !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  text-transform: none !important;
  transition: all 0.2s ease !important;
}

#gform_submit_button_5:hover {
  background: #d9784c !important;
  transform: translateY(-2px);
}

/* Validáció ne verje szét a sort */
#gform_5 .validation_message {
  display: none !important;
}

/* Felső validációs hiba elrejtése */
#gform_wrapper_5 .gform_validation_errors {
  display: none !important;
}

/* Hibás mező kerete */
#gform_5 .gfield_error input[type="email"],
#gform_5 .gfield_error input[type="text"] {
  border: 2px solid #e14b3b !important;
  box-shadow: 0 0 0 3px rgba(225, 75, 59, 0.18) !important;
}

/* Alsó apró szöveg link */
.utazas-newsletter-block small a,
.travel-closing-newsletter-note a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.utazas-newsletter-block small a:hover,
.travel-closing-newsletter-note a:hover {
  color: inherit !important;
  opacity: 0.8;
}

/* Mobil */
@media (max-width: 640px) {
  #gform_5 #gform_fields_5 {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  #gform_5 #field_5_1,
  #gform_5 #field_5_4,
  #gform_5 #field_submit {
    flex: 0 0 auto !important;
    width: 100% !important;
  }
}
.travel-closing-newsletter-note a {
  color: inherit !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.travel-closing-newsletter-note a:hover {
  color: inherit !important;
  opacity: 0.8;
}

