:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA; 
  --ink: #0B0C0E;
  --ink-soft: #5B616B;
  --line: rgba(11, 12, 14, 0.10);
  --accent: #1CA8EB;
  --accent-ink: #FFFFFF;
  --accent-soft: #EAF0FF;
  --surface: #FFFFFF;
  --surface-2: #F2F4F7;
  --green: #12B76A;
  --green-soft: #E7F9F1;
  --red: #F04438;
  --red-soft: #FEECEB;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-top: 100px;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

/* ---------- 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;
  }
}


/* ---------- ABOUT US SECTIONS ---------- */
.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-content h1,
.mission-content h1,
.vision-content h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--ink);
}

.aboutUs-content p,
.mission-content p,
.vision-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.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;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-ink);
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
  background-color: #1796d4;
  transform: translateY(-2px);
}

/* ---------- VALUES SECTION ---------- */
.values-section {
  margin-top: 80px;
  margin-bottom: 60px;
  text-align: center;
}

.values-section h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.value-card h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- HERO COLABORARE ---------- */
.hero-colaborare {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  position: relative;
  background: url('/Media/photo/Hero_Colaborare.png') no-repeat center center;
  background-size: cover;
}

/* ---------- APPLY NOW ---------- */
.ApplyNow {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px);
  position: relative;
  background: var(--accent);
  padding: 60px 24px;
}

.wrap-apply {
  text-align: center;
}

.ApplyNow h1 {
  text-align: center;
  color: var(--surface);
  font-size: 32px;
  font-weight: 600;
  margin-top: 0;
}

.ApplyNow h3 {
  text-align: center;
  color: var(--surface);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.parallelogram {
  width: 180px;
  height: 250px;
  transform: skewX(-20deg); 
  background: var(--surface-2);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.parallelogram:hover {
  transform: skewX(-20deg) scale(1.03);
}

.parallelogram a {
  display: block;
  width: 100%;
  height: 100%;
}

.parallelogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- WHY US ---------- */
.WhyUs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--bg-soft);
  padding: 60px 24px;
} 

.wrap-whyus {
  text-align: center;
  max-width: 900px;
}

.WhyUs h1 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0;
}

.WhyUs h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
}

.WhyUs .container {
  margin-top: 30px;
}

.WhyUs .card {
  width: 200px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  background-color: rgba(128, 128, 128, 0.11);
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.WhyUs .card-1 {
  background-image: url('/Media/photo/5f8024816ea5041b891977bb_flexible.svg');
  background-size: cover;
  background-position: center;
}

.WhyUs .card-2 {
  background-image: url('/Media/photo/5f8024816efb8f03bc01c6a0_delivery.svg');
  background-size: cover;
  background-position: center;
}

.WhyUs .card-3 {
  background-image: url('/Media/photo/5f8024819a81a522b435521f_comunitate.svg');
  background-size: cover;
  background-position: center;
}

.WhyUs .textContainer {
  display: none;
}

.WhyUs .card:hover {
  background-image: none;
  background-color: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.WhyUs .card:hover .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.WhyUs .textContainer h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}

.WhyUs .textContainer p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

/* ---------- CONTACT PAGE STYLES ---------- */
.contact-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.contact-hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-hero p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-group h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 4px;
}

.company-name {
  font-size: 16px;
  margin: 0 0 8px 0;
  color: var(--ink);
}

.info-item {
  margin-bottom: 12px;
}

.info-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-val {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  margin: 0;
}

a.info-val:hover {
  color: var(--accent);
}

.info-item-row {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.info-sub {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.city-contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.city-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 8px;
}

.city-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 6px 0;
}

.city-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0;
}

.city-card a {
  color: var(--ink);
  text-decoration: none;
}

.city-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.social-links-row {
  display: flex;
  gap: 16px;
}

.social-links-row a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.social-links-row a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.contact-form-block {
  flex: 1.1;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-form-block h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select {
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: var(--surface);
}

.submit-btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px;
  margin-top: 8px;
}

/* ---------- SUPPORTED BY ---------- */
.supportedBy {
  display: flex;
  justify-content: center;  
  flex-direction: column;
  background: rgb(36, 144, 253);
  padding: 50px 24px;
}

.supportedBy-header {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  color: #ffffff;
}

.supportedBy-header h2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.supportedBy-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.supportedBy-content img {
  max-width: 140px;
  height: auto;
}

/* ---------- THANK YOU PAGE ---------- */
.thankyou-card {
  max-width: 580px;
  margin: 40px auto 60px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 36px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.thankyou-card h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.thankyou-card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ---------- 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);
}

footer img {
  max-height: 50px;
  width: auto;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

footer p {
  margin: 0;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    gap: 40px;
  }
  
  .parallelogram {
    transform: skewX(-10deg);
  }

  .parallelogram a {
    transform: skewX(0deg) scale(1);
  }

  .aboutUs {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .mission .mission-image {
    order: 2;
  }

  .mission .mission-content {
    order: 1;
  }

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info-block, 
  .contact-form-block {
    width: 100%;
  }

  .contact-form-block {
    padding: 24px;
  }
}

/* ---------- UTILS ---------- */
.hidden {
  display: none !important;
}