:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA; 
  --ink: #0B0C0E;
  --ink-soft: #5B616B;
  --line: rgba(11, 12, 14, 0.10);
  --accent: #1CA8EB;
  --accent-blue: #2490FD;
  --accent-hover: #1796d4;
  --accent-ink: #FFFFFF;
  --accent-soft: #EAF0FF;
  --surface: #FFFFFF;
  --surface-2: #F2F4F7;
  --green: #10B981;
  --green-soft: #D1FAE5;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-top: 100px;
  line-height: 1.5;
}

/* GLOBAL CÍMSOR BEÁLLÍTÁSOK (A LOGÓHOZ ILLŐ BALOO 2 BETŰTÍPUS) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive, sans-serif;
  margin-top: 0;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ---------- HEADER & NAV (EGYSÉGES MINDEN OLDALON) ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo-mark img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo-mark img:hover {
  transform: scale(1.02);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav ul li {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav ul li a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ---------- RESPONSIVE HEADER & HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hamburger animáció nyitott állapotban (X ikon) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* Mobil töréspont (900px alatt) */
@media (max-width: 900px) {
  header {
    padding: 0 20px;
    height: 80px;
  }

  body {
    padding-top: 80px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  nav ul li {
    font-size: 18px;
  }
}

/* ---------- COMMON BUTTONS ---------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-blue);
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(36, 144, 253, 0.3);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #1a78d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(36, 144, 253, 0.4);
}

/* ---------- HOME: HERO ---------- */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/Media/486525179_1621459291947662_9026406712776786859_n.jpg') no-repeat center center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--accent);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

/* ---------- HOME: SERVICII ---------- */
.servicii-section {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 80px 0;
}

.header-servicii {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.servicii-intro h1 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 16px;
  color: #ffffff;
}

.servicii-intro h2 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
}

.servicii-main-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.serviciu-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.serviciu-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.serviciu-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 14px;
}

.serviciu-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.serviciu-card p:last-child {
  margin-bottom: 0;
}

/* ---------- HOME: CLIENTI ---------- */
.clienti-section {
  background: var(--bg-soft);
  padding: 80px 0;
  text-align: center;
}

.clienti-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink);
}

.clienti-section p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 48px auto;
}

.clienti-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.clienti-logos img {
  max-height: 48px;
  width: auto;
  filter: grayscale(80%);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.clienti-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ---------- HOME: AVANTAJE ---------- */
.avantaje-section {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 80px 0;
}

.header-avantaje {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px auto;
}

.header-avantaje h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
}

.header-avantaje p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin: 0;
}

.avantaje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.avantaj-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.avantaj-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.avantaj-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
}

.avantaj-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* ---------- HOME: CALL TO APPLY ---------- */
.callTOapply {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg);
}

.callTOapply-content {
  max-width: 640px;
  margin: 0 auto;
}

.callTOapply-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink);
}

.callTOapply-content p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ---------- DESPRE NOI & COLABORARE & CONTACT ---------- */
.aboutUs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 50px;
  margin-bottom: 80px;
}

.aboutUs-content, .mission-content, .vision-content { flex: 1; }
.aboutUs-image, .mission-image, .vision-image { flex: 1; display: flex; justify-content: center; }
.aboutUs-image img, .mission-image img, .vision-image img { max-width: 100%; height: auto; }

.aboutUs-content h1, .mission-content h1, .vision-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-grid { display: flex; gap: 48px; align-items: flex-start; }
.contact-info-block { flex: 1; display: flex; flex-direction: column; gap: 36px; }

.info-group h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.info-group h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 4px;
}

/* CITY CARDS */
.city-contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.city-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-blue);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  width: 100%;
}

.city-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.city-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 2px 0; }
.city-card .contact-person { display: block; font-size: 15px; font-weight: 600; color: var(--accent-blue); margin-bottom: 12px; }
.city-card p { font-size: 14px; color: var(--ink-soft); margin: 6px 0; }
.city-card a { color: var(--ink); text-decoration: none; font-weight: 500; }
.city-card a:hover { color: var(--accent-blue); text-decoration: underline; }

.contact-form-block {
  flex: 1.1;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-form-block h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--ink); }
.form-group input, .form-group textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: var(--surface);
}

/* ---------- SUPPORTED BY ---------- */
.supportedBy {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 60px 24px;
  text-align: center;
}

.supportedBy-header { max-width: 840px; margin: 0 auto 36px; }
.supportedBy-header h2 { font-size: 16px; font-weight: 500; line-height: 1.6; margin: 0; color: #ffffff; }
.supportedBy-content { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.supportedBy-content img { max-width: 140px; height: auto; }

/* ---------- FOOTER ---------- */
footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 30px 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

footer img { height: 40px; width: auto; }
footer a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
  header { padding: 0 20px; }
  nav ul { gap: 20px; }
  .header-servicii { grid-template-columns: 1fr; gap: 32px; }
  .hero-content h1 { font-size: 40px; }
  .contact-grid, .aboutUs { flex-direction: column; gap: 40px; }
  .contact-info-block, .contact-form-block { width: 100%; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}