/* =========================================================
   SZOLGÁLTATÁSOK OLDAL – STATIKUS HERO
   ========================================================= */

.hero--services {
  margin-bottom: 2.5rem;
}

/* Csak a szolgáltatások hero-jára vonatkozzon */
.hero--services .hero-subhero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 620px;
  background: #e5e7eb;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.hero--services .hero-subhero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: brightness(0.8);
}

.hero--services .hero-subhero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 2.4rem 2.7rem;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero--services .hero-subhero-content h1 {
  font-size: 1.8rem;
  line-height: 1.25;
}

.hero--services .hero-subhero-content p {
  font-size: 1rem;
  max-width: 32rem;
  opacity: 0.95;
}

/* =========================================================
   RESZPONZÍV – TABLET
   ========================================================= */

@media (max-width: 900px) {
  .hero--services .hero-subhero {
    height: 320px;
  }

  .hero--services .hero-subhero-content {
    padding: 1.6rem 1.4rem;
    max-width: 100%;
  }

  .hero--services .hero-subhero-content h1 {
    font-size: 1.4rem;
  }
}

/* =========================================================
   RESZPONZÍV – MOBIL
   ========================================================= */

@media (max-width: 640px) {
  .hero--services .hero-subhero {
    height: 260px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
  }

  .hero--services .hero-subhero-content {
    padding: 1.1rem 1rem;
    text-align: center;
    align-items: center;
  }

  .hero--services .hero-subhero-content p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   SZOLGÁLTATÁSOK OLDAL
   ========================================================= */

.page-header {
  margin: 2.5rem 0 2rem;
}

.page-header h1 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.page-header p {
  max-width: 680px;
  font-size: 1.02rem;
  color: #4b5563;
}

/* Részletes szolgáltatás blokk */

.services-detail {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2rem 0 3rem;
}

.services-group {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.services-group h2 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
  color: #111827;
}

.services-group p {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.services-list {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0;
}

.services-list li {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

/* Két hasábos blokk (parkolás + üzleti) */

.services-group--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.services-col h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.services-col p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

/* Reszponzív finomhangolás – mobilon egymás alatt a hasábok */

@media (max-width: 768px) {
  .page-header {
    margin-top: 1.8rem;
    margin-bottom: 1.6rem;
  }

  .page-header h1 {
    font-size: 1.4rem;
  }

  .services-group--split {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================================================
   SZOLGÁLTATÁS KÁRTYÁK – CÍM + IKON
   ========================================================= */

.feature-card-title {
  display: flex;
  align-items: flex-start; /* <<< EZT cseréld le center-ről */
  gap: 0.75rem;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.service-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #111827, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

.service-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: #ecfdf5;
}

/* =========================================================
   SZOLGÁLTATÁSOK – "További részletek" link
   ========================================================= */

.services-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-more-link:hover {
  text-decoration-thickness: 2px;
}

/* =========================================================
   TGP MODAL – Külföldi és szervezett útjaink
   ========================================================= */

.tgp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.tgp-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tgp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.tgp-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.25);
}

.tgp-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.tgp-modal__close:hover {
  background: #f9fafb;
}

.tgp-modal h3 {
  margin: 0 2.75rem 1rem 0;
  font-size: 1.35rem;
  color: #111827;
}

.tgp-modal__content p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

.tgp-modal__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.trips-promo {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.trips-promo__hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  padding: 1.2rem 1.15rem;
}

.trips-promo__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trips-promo__title {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #111827;
}

.trips-promo__lead {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #374151;
}

.trips-promo__highlight {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.85rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.45;
}

.trips-promo__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trips-promo__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
}

.trips-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
}

.trips-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.15rem;
  align-items: center;
}

.trips-section--reverse .trips-section__text {
  order: 2;
}

.trips-section--reverse .trips-section__media {
  order: 1;
}

.trips-section__text h5,
.trips-card h5,
.trips-note h5 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  color: #111827;
}

.trips-section__text p,
.trips-card p,
.trips-note p,
.trips-footer p {
  margin: 0 0 0.75rem;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.7;
}

.trips-section__text p:last-child,
.trips-card p:last-child,
.trips-note p:last-child,
.trips-footer p:last-child {
  margin-bottom: 0;
}

.trips-section__media img,
.trips-gallery__item img {
  display: block;
  width: 100%;
  height: 260px;
  border-radius: 0.9rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.trips-checklist {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.trips-checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.55;
}

.trips-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

.trips-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.trips-card,
.trips-note,
.trips-footer {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
}

.trips-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.trips-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #eef2f7;
  color: #374151;
  font-size: 0.96rem;
}

.trips-price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.trips-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.trips-gallery__item {
  margin: 0;
}

.trips-footer {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.trips-note a,
.trips-footer a {
  color: #111827;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .tgp-modal__dialog {
    width: min(820px, calc(100% - 1.4rem));
  }

  .trips-section--split,
  .trips-cards,
  .trips-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .trips-section--reverse .trips-section__text,
  .trips-section--reverse .trips-section__media {
    order: initial;
  }
}

@media (max-width: 640px) {
  .tgp-modal__dialog {
    width: calc(100% - 1rem);
    max-height: calc(100vh - 1rem);
    padding: 1rem 0.9rem 0.9rem;
    border-radius: 0.9rem;
  }

  .tgp-modal h3 {
    font-size: 1.2rem;
    margin-right: 2.5rem;
  }

  .trips-promo__hero,
  .trips-section,
  .trips-card,
  .trips-note,
  .trips-footer {
    padding: 0.9rem;
    border-radius: 0.9rem;
  }

  .trips-section__media img,
  .trips-gallery__item img {
    height: 220px;
  }

  .trips-promo__title {
    font-size: 1.2rem;
  }

  .trips-promo__lead,
  .trips-section__text p,
  .trips-card p,
  .trips-note p,
  .trips-footer p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .trips-promo__meta span {
    font-size: 0.82rem;
  }

  .trips-price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
