@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
*{
  margin:0;padding:0;box-sizing:border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background:
  radial-gradient(at 25% 35%, rgba(0, 76, 190, 0.55),  transparent 55%),
  radial-gradient(at 80% 70%, rgba(36,  99, 235, 0.50), transparent 60%),
  radial-gradient(at 60% 25%, rgba(99, 102, 241, 0.45), transparent 65%),
  radial-gradient(at 40% 90%, rgba(139, 92, 246, 0.40), transparent 70%),
  radial-gradient(at 10% 10%, rgba(14, 165, 233, 0.30), transparent 75%),
  #0f172a; /* nagyon sötét alap (slate-900 stílus) */
  color: #000000;
  overflow-x: hidden;
  transition: background 0.5s ease;

}
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #ffffff, #cfe3ff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

/* LOGÓ */
.loadtext {
  width: 80px;
  filter: drop-shadow(0 0 8px rgba(100, 100, 100, 0.4));
  animation: pulseLogo 2s ease-in-out infinite;
    font-family: "League Spartan", sans-serif;
font-weight: 700;
}
.loadertext img{
  position: relative;
  top: -7px;
  width: 120px;
  z-index: 9999;
  opacity: 1;
 
}

@keyframes pulseLogo {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* HULLÁM EFFEKT */
.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.6) 0%, rgba(255,255,255,0.8) 40%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  pointer-events: none;
  animation: waveExpand 2s ease-out infinite;
}

@keyframes waveExpand {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; filter: blur(0px); }
  50% { transform: translate(-50%, -50%) scale(3); opacity: 0.9; filter: blur(10px); }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; filter: blur(20px); }
}

/* ===============================
   NAVBAR – ALAP
   =============================== */

.navbar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(8, 48, 129, 0);
  z-index: 1000;
    transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform, background-color;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.904);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #007bff;
  top: 0px;
}

.navbar-inner {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.navbar-logo img {
  height: 44px;
    transition: all ease 0.2s;
}
.navbar.scrolled .navbar-logo img{
  height: 40px;
  transition: all ease 0.2s;
  filter: drop-shadow(0 10px 38px rgb(0, 0, 0));

}
/* LINKS */
.navbar-links {
  display: flex;
  gap: 36px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.navbar.scrolled .navbar-links a{
  color: #000000;
}
.navbar-links a:hover {
  opacity: 0.8;
}

/* LANG */
.navbar-lang {
  display: flex;
  gap: 8px;
}

.lang-btn {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: white;
  cursor: pointer;
}
.navbar.scrolled .lang-btn{
    border: 1px solid #007bff;
  background: transparent;
  color: #007bff;
}
.lang-btn.active {
  background: white;
  color: #083181;
  transition: all ease 0.3s;
}
.navbar.scrolled .lang-btn.active{
  background: #007bff;
  color: white;
}
/* TOGGLE */
.navbar-toggle {
  display: none;
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 1000px) {
/* LOGO */
.navbar-logo img {
  height: 34px;
  padding-left: 10px;
  padding-top: 5px;
    filter: drop-shadow(0 20px 38px rgb(255, 0, 0));

}
  .navbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .navbar-links,
  .navbar-lang {
    display: none;
  }

  .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #0048b3cc;
    transition: all ease 0.3s;
  }
  .navbar.scrolled    .navbar-toggle{
        background-color: #5f769775;
            height: 40px;
    width: 40px;
  }
}

/* ======================================================
   DESKTOP SERVICES PANEL
   ====================================================== */
.services-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;

  opacity: 0;
  transform: translateY(-12px);
  filter: blur(6px);
  pointer-events: none;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.services-panel.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.services-panel .partner-grid {
  max-width: 1200px;
  margin: 24px auto;
  padding: 28px 50px;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;

  background: #fdfdfd;
  border-radius: 14px;
}
.services-panel .partner-grid img{
    filter: drop-shadow(0 6px 28px rgba(0, 6, 92, 0.747));
  max-width: 80px;
  max-height: 80px;
}
 /* ============================
   MOBILE MENU – ALAP
   ============================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: linear-gradient(
    160deg,
    rgba(8,49,129,0.97),
    rgba(3,15,40,0.97)
  );

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
}


/* ============================
   MOBILE SERVICES – REJTETT
   ============================ */
.mobile-services {
  background-color: #eaf2ff91;
  display: none; 
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  transition: all ease 0.2s;
}

/* AKTÍV */
.mobile-services.active {
  display: block;
}
.mobile-services img {
  display: block;

  max-width: 120px;
  max-height: 60px;   
  width: auto;     
  height: auto;

  margin: 0 auto;     

  object-fit: contain; 

  filter: drop-shadow(0 6px 28px rgba(0, 6, 92, 0.45));
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* ============================
   PARTNER GRID – MOBILE
   ============================ */
.mobile-services .partner-grid {
  border-radius: 18px;
  padding: 24px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  
}

/* LOGÓK ALAP */
.mobile-services .partner-grid a {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  animation: none;
}

/* AKTÍV ANIMÁCIÓ */
.mobile-services.active .partner-grid a {
  animation: logoIn 0.45s ease forwards;
}

.services-panel .partner-grid a:nth-child(1),
.mobile-services .partner-grid a:nth-child(1) { animation-delay: 0.05s; }
.services-panel .partner-grid a:nth-child(2),
.mobile-services .partner-grid a:nth-child(2) { animation-delay: 0.1s; }
.services-panel .partner-grid a:nth-child(3),
.mobile-services .partner-grid a:nth-child(3) { animation-delay: 0.15s; }
.services-panel .partner-grid a:nth-child(4),
.mobile-services .partner-grid a:nth-child(4) { animation-delay: 0.2s; }
.services-panel .partner-grid a:nth-child(5),
.mobile-services .partner-grid a:nth-child(5) { animation-delay: 0.25s; }
.services-panel .partner-grid a:nth-child(6),
.mobile-services .partner-grid a:nth-child(6) { animation-delay: 0.3s; }

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ======================================================
   MOBILE MENU – STABIL, SCROLLOLHATÓ
   ====================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;

  background: linear-gradient(
    160deg,
    rgba(8,49,129,0.97),
    rgba(3,15,40,0.97)
  );

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  padding: 100px 24px 40px;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
}


.mobile-lang {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

/* VIDEO HERO */
.video-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgb(4, 133, 253) 5%,
    rgb(23, 63, 196) 25%,
   rgb(14, 66, 145) 40%,
        rgba(8, 46, 122, 0.877) 50%,
    rgba(8, 45, 119, 0.623) 70%,
    rgba(7, 45, 121, 0.459) 90%,
    rgba(7, 7, 7, 0.37)
  );
}

.hero-content {
  z-index: 2;
  color: #fff;
  width: 1200px;
  margin: auto;
}


.hero-content img {
  height: 68px;
}
.hero-content h1{
  font-size: 4rem;
}
.hero-content p{
  font-size: 1.2rem;
  padding: 0 0 20px 0;
  width: 800px;
}
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #fff;
  color: #0a3ca0;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all ease 0.2s;
}
.hero-btn:hover{
  cursor: pointer;
  background-color: #007bff;
  color: #ffff;
}
.wave-stack {
  position: relative;
  height: 150px;
  overflow: hidden;
}

/* ===== WAVE CONTAINER ===== */
.netter-wave-separator {
  position: relative;
  inset: 0;
  overflow: hidden;
}

.netter-wave-svg {
  z-index: -999;
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: -140px;
  height: 150px;
  pointer-events: none;
}


/* ===== RÉTEGEZÉS ===== */

/* HALVÁNY KÉK – HÁTTÉR */
.netter-wave-back {
  z-index: 1;
}
.netter-wave-back path {
  fill: #c9e2ff;
  transform: translateY(0px);
}

/* VILÁGOS KÉK – KÖZÉP */
.netter-wave-middle {
  z-index: 2;
}
.netter-wave-middle path {
  fill: #e6f2ff;
  transform: translateY(8px);
}

/* FEHÉR – ELÖL */
.netter-wave-front {
  z-index: 3;
}
.netter-wave-front path {
  fill: #ffffff;
  transform: translateY(16px);
}

/* ===== DESKTOP / MOBILE PATH VÁLTÁS ===== */
.wave-mobile {
  display: none;
}

@media (max-width: 768px) {
  .wave-desktop {
    display: none;
  }
  .wave-mobile {
    display: block;
  }
}


/* PARTNERS */
.partners {
  background: linear-gradient(0deg, #eef7ff, #ffff);
  padding: 0rem 2rem 6rem;
  text-align: center;
}
.partners h2{
  max-width: 1200px;
  margin: auto;
  font-size: 1.5rem;
  padding: 0 0 30px 0;
  text-align: left;
  background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.partner-grid {
    max-width: 1200px;
    margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.partner-grid img {
  max-width: 150px;
    filter: drop-shadow(0 6px 58px rgba(0, 6, 92, 0.35));
  max-height: 150px;
  transition: 0.3s;
}

.partner-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.logo-link {
  display: inline-block;
  width: 160px;   /* állítsd ízlésre */
  height: 60px;   /* állítsd ízlésre */
  background: #007bff; /* EZ a kék szín */
  
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

.logo-link:hover {
  transform: translateY(-3px) scale(1.04);
  opacity: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 71, 179, 0.45));
}
/* ======================================================
   📱 MOBIL OPTIMALIZÁLT VERZIÓ – NETTER
   ====================================================== */

@media (max-width: 1100px) {



/* =====================
   HERO – MOBILON
   ===================== */

.video-hero {
  height: 70vh;
}
.hero-overlay {
  background: linear-gradient(
    100deg,
    rgb(23, 63, 196) 5%,
   rgb(14, 66, 145) 25%,
        rgba(8, 46, 122, 0.877) 40%,
    rgba(7, 45, 121, 0.644) 90%,
    rgba(7, 7, 7, 0.37)
  );
}
.hero-content {
  width: 100%;
  padding: 0 20px;
}

.hero-content img {
  height: 25px;
  padding-right: 5px;
}

.hero-content h1 {
  font-size: 1.6rem;
  line-height: 1.2;
}

.hero-content p {
  width: 100%;
  font-size: 0.8rem;
  padding-top: 10px;
}
.hero-btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: #fff;
  color: #0a3ca0;
  font-size: 0.9rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
/* =====================
   WAVE SEPARATOR
   ===================== */

.netter-wave-separator {
  height: 120px;
  margin-top: -120px;
}

.netter-wave-separator .netter-wave-svg {
  height: 120px;
}

/* =====================
   PARTNERS
   ===================== */

.partners {
  padding: 2rem 1.2rem 4rem;
}

.partners h2 {
  font-size: 1rem;
  padding-bottom: 20px;
}

.partner-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partner-grid img {
  max-width: 50px;
  max-height: 50px;
}

/* =====================
   LOGO LINK
   ===================== */

.logo-link {
  width: 120px;
  height: 48px;
}

}
.contoptimi{
background-color: #eef7ff;
}
.stats-section {
  max-width: 1200px;
  margin: auto;
  background: #eef7ff;
  padding: 100px 20px;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-text{
  width: 60%;
}
.stats-numbers{
  width: 40%;
  text-align: center;
}
/* BAL OLDAL */
.stats-text h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* JOBB OLDAL – SZÁMOK */
.stats-numbers {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.stat-item{
  margin: auto;
}
.stat-item h1{
  margin: auto;
}
.stat-item .number {
  display: flex;
    align-items: center;
  margin: auto;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #007bff 30%, #00aaff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item span{
  font-size: 3.5rem;
  font-weight: bold;
}

.reviews-upgrade{
  max-width: 1200px;
  margin: auto;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:48px;
  align-items:center;
  padding-bottom: 200px;
}

.reviews-left{
  position:relative;
  height:520px;
  overflow:hidden;
  border-radius:24px;
  padding:18px;
}

.reviews-viewport{
  height:100%;
  overflow:hidden;
}

.reviews-track{
  display:flex;
  flex-direction:column;
  gap:14px;
  transform: translateY(0);
  will-change: transform;
}

.review-card{
  border: 1px solid rgba(26, 25, 25, 0.062);
  border-radius:18px;
  padding:16px;
}

.review-title{
  display: inline-block; /* EZ HIÁNYZIK */
  margin:0 0 6px;
  font-size:16px;

  background: linear-gradient(90deg, #007bff 30%, #00aaff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.review-name{
  font-size:13px;
  font-weight:600;
  opacity:0.85;
}

.review-stars{
  margin:6px 0 8px;
  font-size:20px;
  letter-spacing:1px;
  font-weight: bold;
    background: linear-gradient(90deg, #007bff 30%, #00aaff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.review-stars::before{ content:"★★★★★"; }
.review-stars[data-stars="4"]::before{ content:"★★★★☆"; }

.review-text{
  font-size:18px;
  line-height:1.55;
  opacity:0.85;
  margin:0;
}

.review-source{
  display:block;
  margin-top:8px;
  font-size:15px;
  font-weight:600;
  opacity:1; /* FONTOS */
}
.reviews-right h2{
    font-size: 2.4rem;
  margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-right p{
    font-size: 1.3rem;

}
/* Google */
.google-text span:nth-child(1){ color:#4285F4; }
.google-text span:nth-child(2){ color:#EA4335; }
.google-text span:nth-child(3){ color:#FBBC05; }
.google-text span:nth-child(4){ color:#4285F4; }
.google-text span:nth-child(5){ color:#34A853; }
.google-text span:nth-child(6){ color:#EA4335; }

/* Compari.ro */
.compari-text span:nth-child(1){ color:#1E88E5; }
.compari-text span:nth-child(2){ color:#1E88E5; }
.compari-text span:nth-child(3){ color: #1E88E5; }
.compari-text span:nth-child(4){ color:#1E88E5; }
.compari-text span:nth-child(5){ color:#1E88E5; }
.compari-text span:nth-child(6){ color:#1E88E5; }
.compari-text span:nth-child(7){ color:#1E88E5; }
.compari-text span:nth-child(8){ color:#FB8C00; }
.emag-text{
  font-weight:800;
  letter-spacing:0.08em;
  font-size:13px;
  text-transform:uppercase;
}
.booking{
    color: #003b95;
}
/* eMAG: teljes szöveg gradient */
.emag-gradient{
  display:inline-block; /* EZ A HIÁNYZÓ LÉPÉS */
font-family: 'Montserrat', sans-serif;
font-weight: 900;
  letter-spacing:0.01em;

  background: linear-gradient(90deg,
    #e60012 0%,
    #a8003a 25%,
    #0055a5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* gradient fade */
.fade{
  position:absolute;
  left:0; right:0;
  height:18%;
  pointer-events:none;
  z-index:5;
}
.fade.top{
  top:0;
  background:linear-gradient(to bottom, #eef7ff 30%, transparent 100%);
}
.fade.bottom{
  bottom:0;
  background:linear-gradient(to top, #eef7ff 30%,transparent 100%);
}


/* =====================
   MOBIL LAYOUT FIX
   ===================== */
@media (max-width: 768px) {

  /* ===== STATS ===== */
  .stats-section {
    flex-direction: column;
    padding: 80px 20px;
    gap: 40px;
  }
  .stats-text {
    width: 100%;
    text-align: left;
  }

  .stats-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .stats-text p {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.85;
  }

  /* ===== STAT GRID ===== */
  .stats-numbers {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ===== REVIEWS ===== */
  .reviews-upgrade {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px 0px 20px;
  }

  /* jobb oldali szöveg felül, címként */
  .reviews-right {
    order: -1;
    text-align: center;
  }
  .stat-item .number {
  font-size: 1rem;
  font-weight: 700;

}
  .stat-item p{
    font-size: 0.8rem;
  }
.stat-item span{
  font-size: 1.5rem;
  font-weight: bold;
}
.review-text{
  font-size:14px;
}

  .reviews-right h2 {
    margin-bottom: 12px;
  }

  .reviews-right p {
    margin-bottom: 0;
  }
.reviews-right h2{
    font-size: 1.5rem;
}
.reviews-right p{
    font-size: 0.9rem;

}
  /* review blokk alatta */
  .reviews-left {
    height: 460px;
    padding: 16px;
  }

}

    /* === SHOWCASE KONTÉNER === */
    .showcase {
      display: flex;
      flex-direction: column;
      padding: 60px 5%;
      gap: 80px;
      background-color: #eef7ff;
    }

    .showopti {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    /* === SOR ELRENDEZÉS === */
    .showcase-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      padding: 50px 0;
    }

    .showcase-row.reverse {
      flex-direction: row-reverse;
    }

    /* === SZÖVEG RÉSZ === */
    .showcase-text {
      flex: 1 1 40px;
      padding: 40px;
    }

    .showcase-text h3 {
      font-size: 2rem;
      background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .showcase-text p {
      color: rgba(10, 26, 47, 0.75);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 420px;
    }
    .showcase h4{
      padding: 10px 0;
      color: #007bff;
    }
    .showcase h4:hover{
      cursor: pointer;
      text-decoration: underline;
    }

.showcase-img.video-container {
  flex: 0 0 300px;
  width: 300px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #00adef;
}

/* Videó – teljes kitöltés */
.showcase-img.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* Kép konténer – normál, reszponzív */
.showcase-img.image-container {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-img.image-container img {
  width: 90%;
  max-width: 100%;
  height: auto;
  min-height: 380 Rehabil;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid #00adef;
  transition: transform 0.4s ease;
}
.showcase-img img{
  width: 600px;
  margin-top: 50px;
}
/* === RESZPONZÍV VIDEÓ MÉRET === */
@media (max-width: 900px) {
  .showcase-img.video-container {
    flex: 0 0 280px;
    width: 280px;
    height: 460px;
  }
}
@media (max-width: 576px) {
  .showcase-img.video-container {
    flex: 0 0 260px;
    width: 260px;
    height: 420px;
  }
}
@media (max-width: 400px) {
  .showcase-img.video-container {
    flex: 0 0 240px;
    width: 240px;
    height: 380px;
  }
}


    /* === RESZPONZÍV: Kisebb képernyőn skálázódik === */
    @media (max-width: 900px) {
      .showcase {
        padding: 50px 5%;
        gap: 60px;
      }

      .showcase-row {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
      }

      .showcase-row.reverse {
        flex-direction: column;
      }

      .showcase-text {
        padding: 25px 15px;
        text-align: center;
      }

      .showcase-text h3 {
        font-size: 1.8rem;
      }

      .showcase-text p {
        max-width: 100%;
        font-size: 1.02rem;
      }

    }
 
    @media (max-width: 576px) {
      .showcase {
        padding: 40px 4%;
        gap: 50px;
      }

      .showcase-row {
        padding: 30px 0;
      }

      .showcase-text {
        padding: 20px 10px;
      }

      .showcase-text h3 {
        font-size: 1.4rem;
      }

      .showcase-text p {
        font-size: 0.9rem;
      }
    }

.searchpartner{
  background: #eef7ff;
  padding: 30px;
  padding-bottom: 100px;
}
.searchpartner .partner-grid{
  padding: 50px 0;
}
.searchpartner h1{
        font-size: 1.5rem;
      background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: left;
      
}
.searchopti{
  max-width: 1100px;
  margin: auto;
}
.cookie-banner {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  background: rgba(255, 255, 255, 0.85);
  color: #000000;
  padding: 25px 30px;
  text-align: center;
  font-size: 16px;
  z-index: 99999;
  backdrop-filter: blur(20px);
  border: 1px solid #007bff;
  border-radius: 20px;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  max-width: 700px;
  width: 90%;
}

.cookie-banner.hidden {
  display: none !important;
}
.cookie-content p{
  font-size: 1.2rem;
}

.cookie-banner.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}

.impresszum-box {
  display: none;
  padding: 20px;
  border-radius: 12px;
  z-index: 99999;
}

.impresszum-box.show {
  display: block !important;
}



.cookie-buttons {
  margin-top: 12px;
}
#cookie-accept{
  background-color: #007bff;
}
#cookie-decline{
  color: #000;
}
.cookie-buttons button {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.3rem;

  color: #ffffff;
  transition: background 0.3s ease;
}

.cookie-buttons button:hover {
  background: #00aeff;
  color: #000;
}



.impresszum-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.footer-legal{
  text-align: center;
  margin: 60px 0;
}
.footer-legal .footer-links a{
  text-decoration: none;
  color: #000;
  padding: 0 20px;
  font-weight: normal;
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #dfefff 100%);
}
.botlogo{
  padding: 100px 0 0 0;
  text-align: center;
}
.botlogo img{
    filter: drop-shadow(0 6px 28px rgba(0, 6, 92, 0.45));
  height: 50px;

}
.contact-container {
display: flex;
max-width: 1200px;
margin:auto;
margin-top: 50px;
justify-content: space-between;
}

.contact-text {
  flex: 1 1 350px;
  color: #0a1a2f;
  padding: 50px 0;
  margin: auto;
}

.contact-text h2 {
  font-size: 2.3rem;
  color: #007bff;
  margin-bottom: 15px;
}

.contact-text p {
  font-size: 1.05rem;
  color: rgba(10,26,47,0.75);
  line-height: 1.6;
  width: 600px;
  margin-bottom: 25px;
  padding-right: 20px;
}
.contact-text span{
  padding: 10px;
}
.contact-info p {
  margin: 8px 0;
}
.contact-info i{
  padding-top: 20px;
  font-size: 30px;
}
.contact-info a {
  color: #007bff;
  text-decoration: none;
  transition: color .3s ease;
  padding: 10px;
}
.contact-info a:hover { color: #0047b3; }

.contact-map {
  flex: 1 1 450px;
  border-radius: 10px;
  overflow: hidden;
  width: 500px;
  height: 400px;
}

/* Kékes térkép-stílus (nem API, csak filter) */
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: filter .5s ease;
}

.copyr{
  padding: 30px 0;
  text-align: center;
  align-items: center;
}
.copyr h2{
  color: #000000;
  font-size: 1rem;
  font-weight: normal;
}
.copyr h1{
  font-weight: normal;
  font-size: 1.2rem;
  margin: 20px 0;
}
.copyr img{
  width: 120px;
  padding: 0 10px ;
        filter: drop-shadow(0 0 8px rgba(172, 172, 172, 0.6));
}

@media (max-width: 1505px) {


  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  object, embed {
    max-width: 100% !important;
    height: auto !important;
  }
.contact-container {
display: flex;
padding: 0 10%;
margin:auto;
margin-top: 50px;
justify-content: space-between;
}

}
/* TABLET ÉS MOBIL (768px alatt teljes mobil) */
@media (max-width: 1105px) {
 
  .reviews {
    gap: 60px;
    padding: 80px 8%;
  }
  .botlogo {
    padding: 60px 0 0 0;
  }
  .contact-container {
display: flex;
padding: 0 5%;
margin:auto;
margin-top: 50px;
justify-content: space-between;
}
  .contact-map{
    max-width: 500px;
  }
  .reviews {
    flex-direction: column;
    gap: 20px;
    padding: 60px 15px;
  }
  .review {
    padding: 60px 25px;
    max-width: 100%;
  }
  .review h1{
    font-size: 1rem;
  }
  .review p{
    font-size: 0.8rem;
  }
  .review-glow {
    width: 200px;
    height: 200px;
  }
      .showcase-row {
      display: block;
      align-items: center;
  width: clamp(50px, 90vw, 700px);
     margin: auto;
     text-align: center;
    }
      .showcase-text {
      flex: 1 1 300px;
      margin-top: 100px;
      text-align: left;
    }
  .showcase-text p {
    max-width: 100%;
  }
  
  .showcase-img {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  .showcase-img img {
    width: 100%;
  }
  .contact-container {
    flex-direction: column;
    padding: 0 15px;
    text-align: center;
  }
  .contact-map{
    margin: auto;
    padding: 30px;
  }
  .contact-text{
        padding:  10px 5vw;
    min-width: 350px;
    margin: auto
  }
.searchpartner .partner-grid img{
  display: block;
  margin: 0 auto;
}
  .contact-text p {
    font-size: 0.9rem;
  }
  .contact-info{
    text-align: left;
  }
  .footer-legal .footer-links a{
    display: block;
    padding: 10px 0;
  }
  .copyr h2{
  color: #000000;
  font-size: 0.8rem;
  font-weight: normal;
}
}




.adathero{
  background-color: #f7f7f7;
  height: 90vh;
  margin-top: 100px;
}
.adattext{
  max-width: 1000px;
  margin: 50px auto;
  height: 90vh;
}
.adattext h2{
  margin-top: 100px;
  font-size: 2rem;
  text-align: center;
  padding: 30px;
    background: linear-gradient(90deg, #007bff 30%, #00aaff 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adattext a{
  font-size: 1.2rem;
  padding: 10px;
}
.adattext h1{
  font-size: 1.5rem;
  padding: 10px;
}
.adattext ul{
  margin-left: 50px;
  font-size: 1.2rem;
}
.adattext p{
  font-size: 1.3rem;
  padding: 10px;
}
@media (max-width: 768px) {
  .adathero {
    margin-top: 70px;
    height: auto; /* ne legyen fix magasság, hogy hosszabb szöveg is elférjen */
    padding-bottom: 60px;
  }

  .adattext {
    max-width: 80%;
    height: auto;
    margin:  auto;
    text-align: left;
    padding: 20px;
  }

  .adattext h2 {
    margin-top: 50px;
    font-size: 1.6rem;
    padding: 15px 10px;
    line-height: 1.3;
    text-align: center;
  }

  .adattext h1 {
    font-size: 1.2rem;
    padding: 8px 5px;
    line-height: 1.4;
  }

  .adattext p {
    font-size: 1rem;
    padding: 6px 5px;
    line-height: 1.6;
  }

  .adattext ul {
    margin-left: 25px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .adattext a {
    font-size: 1rem;
    display: inline-block;
    word-break: break-word;
  }
}
