@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');
:root {
  --green-dark: #00462f;
  --green-main: #005c3d;
  --green-soft: #eaf4ef;
  --text-main: #172033;
  --text-muted: #4f5968;
  --line: #dde4df;
  --bg: #f7f6f1;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(18, 31, 27, 0.07);
  --radius-large: 16px;
  --radius-medium: 10px;
  --container: 1240px;
	--green-900: #003f2d;  
	--green-800: #004d36;  
	--green-700: #006042;  
	--green-600: #08714f;  
	--green-100: #eef6f2;  
	--green-50: #f6faf8;  
	--ink: #07182d;  
	--muted: #5a6878;  
	--line: #d9e4df;  
	--line-strong: #0b6a4a;  
	--cream: #fbfcfb;  
	--shadow-card: 0 10px 28px rgba(7, 24, 45, 0.06);  
	--radius-sm: 8px;  
	--radius-md: 10px;  
	--radius-lg: 16px;  
	--zf-green: #0B4F34; 
	--zf-green-dark: #073822; 
	--zf-green-light: #7BAF45; 
	--zf-ink: #0D1B2A; 
	--zf-text: #263238; 
	--zf-muted: #6B7280; 
	--zf-bg: #FAFAF8; 
	--zf-card: #FFFFFF; 
	--zf-line: #E4E6E1; 
	--zf-shadow: 0 14px 34px rgba(13, 27, 42, 0.08); 
	--zf-radius: 14px; 
	--zf-container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, sans-serif;  background: var(--bg);  color: var(--text-main);  line-height: 1.65; font-size: 16px;}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
 
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.96);  border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,0.04);}
.header-inner { height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { width: 275px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 44px; font-weight: 800; font-size: 15px; }
.main-nav a { position: relative; padding: 0px 0 0; }
.main-nav a.active::after, .main-nav a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 5px; border-radius: 999px; background: var(--green-main); }
 
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 31px; border-radius: 6px; font-weight: 800; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,70,47,0.16); }
.btn-primary { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.btn-secondary { background: rgba(255,255,255,0.84); color: var(--green-dark); border-color: #8aa99b; }
.page-wrap { padding: 24px 0 28px; }

/* ===== Hero ===== */
.contact-card { display: grid; grid-template-columns: 390px 1fr; gap: 40px; padding: 40px 44px 34px; margin-bottom: 24px;  background: #ffffff; margin-top: 20px;  scroll-margin-top: 100px;}
.hero { position: relative;  min-height: 438px;  overflow: hidden;  background: radial-gradient(circle at 74% 48%, rgba(235, 241, 237, 0.78), rgba(255,255,255,0) 38%), linear-gradient(180deg, #ffffff 0%, #fbfcfb 72%, #f5f8f6 100%); }
.hero::after {  content: "";  position: absolute;  left: 0; right: 0; bottom: -1px;  height: 105px;  background: linear-gradient(180deg, rgba(255,255,255,0), #f5f8f6 74%);  pointer-events: none; }
.hero-inner {  position: relative;  z-index: 1;  display: grid;  grid-template-columns: 1fr 1.25fr;  align-items: center;  gap: 42px;  padding: 50px 0 28px; }
.hero-copy { max-width: 570px; }
.hero-title { margin: 0; font-family: "Playfair Display", Georgia, serif;  font-size: clamp(35px, 3.5vw, 64px);  line-height: 1.12;  letter-spacing: -0.035em;  color: #06192d; }
.section-mark,
.hero-mark {  width: 44px;  height: 2px;  background: var(--green-700);  margin: 25px 0 22px; }
.hero-text {  margin: 0 0 26px;  font-size: 20px;  line-height: 1.7;  font-weight: 500;  color: #0a1c32; }
.btn-primary, .btn-light, .btn-submit {  display: inline-flex;  align-items: center;  justify-content: center;  gap: 14px;  border: 0;  cursor: pointer;  font-weight: 800;  border-radius: 7px;  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.btn-primary, .btn-submit {  min-height: 56px;  padding: 0 28px;  background: linear-gradient(135deg, var(--green-900), var(--green-700));  color: var(--white);  box-shadow: 0 14px 30px rgba(0, 77, 54, 0.22); }
.btn-primary:hover, .btn-submit:hover, .btn-light:hover { transform: translateY(-1px); }
.hero-visual { opacity: 0.8; }
.hero-building { width: 700px; margin-left: auto; filter: grayscale(10%); } 


.zf-page { background: var(--zf-bg); }
.zf-container { width: min(var(--zf-container), calc(100% - 48px)); margin: 0 auto; align-items: center; justify-content:center;}
/* =========================  FELSŐ MENÜSÁV / HEADER  ========================= */
.zf-header { background: #FFFFFF; border-bottom: 1px solid var(--zf-line); position: sticky; top: 0; z-index: 100; }
.zf-header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.zf-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.zf-logo img { width: 228px; height: auto; }
.zf-nav { display: flex; align-items: center; justify-content: flex-end; gap: 34px; font-size: 14px; font-weight: 700; color: var(--zf-ink); }
.zf-nav a { position: relative; padding: 12px 0; }
.zf-nav a::after { content: ''; position: absolute; left: 0; bottom: 5px; width: 0; height: 3px; background: var(--zf-green); transition: width 0.2s ease; }
.zf-nav a:hover::after,
.zf-nav a.is-active::after { width: 100%; }
.zf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--zf-green); border-radius: 6px; padding: 14px 24px; font-size: 15px; line-height: 1; font-weight: 800; cursor: pointer; transition: 0.2s ease; min-height: 48px; }
.zf-btn-primary { background: linear-gradient(135deg, var(--zf-green), var(--zf-green-dark)); color: #FFFFFF; box-shadow: 0 10px 22px rgba(11, 79, 52, 0.18); }
.zf-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(11, 79, 52, 0.22); }
.zf-btn-secondary { background: #FFFFFF; color: var(--zf-green); padding-left: 20px; margin-left: 20px; margin-top: 20px;}
.zf-btn-secondary:hover { background: rgba(11, 79, 52, 0.06); }
/* =========================  KAPCSOLAT HERO  ========================= */
.zf-contact-hero { padding: 78px 0 54px; text-align: center; background: radial-gradient(circle at center top, rgba(123, 175, 69, 0.08), transparent 42%), #FFFFFF; border-bottom: 1px solid var(--zf-line); }
.zf-eyebrow-line { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 20px auto 28px; }
.zf-eyebrow-line::before,
.zf-eyebrow-line::after { content: ''; width: 150px; height: 2px; background: var(--zf-green); }
.zf-eyebrow-line img { width: 40px; height: auto; }
.zf-title { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(46px, 6vw, 76px); line-height: 1.06; color: var(--zf-ink); letter-spacing: -0.03em; display: flex; justify-content: center; align-items: center;  text-align: center;}
.zf-lead { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.75; color: var(--zf-text); display: flex; justify-content: center; align-items: center;  text-align: center; }
.zf-hero-actions { margin-top: 32px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* =========================  ELÉRHETŐSÉGI KÁRTYÁK  ========================= */
.zf-contact-cards { padding: 28px 0 46px; }
.zf-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.zf-info-card { background: var(--zf-card); border: 1px solid var(--zf-line); border-radius: var(--zf-radius); min-height: 245px; padding: 34px 24px 28px; text-align: center; box-shadow: 0 8px 24px rgba(13, 27, 42, 0.04); }
.zf-icon-circle { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(11, 79, 52, 0.08); color: var(--zf-green); font-size: 34px; font-weight: 800; }
.zf-info-card h3 { margin: 0 0 12px; font-size: 18px; line-height: 1.25; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--zf-green); }
.zf-info-card p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--zf-text); }
.zf-info-card strong { color: var(--zf-ink); font-weight: 800; }
/* =========================  ŰRLAP + TÉRKÉP  ========================= */
.zf-contact-main { padding: 22px 0 56px;  scroll-margin-top: 100px;}
.zf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start;  }
.zf-section-title { margin: 0 0 20px; font-family: 'Playfair Display', Georgia, serif; color: var(--zf-ink); font-size: 34px; line-height: 1.2; }
.zf-title-underline { display: block; width: 46px; height: 3px; background: var(--zf-green); margin-top: 10px; }
.zf-section-text { margin: 0 0 22px; font-size: 15px; color: var(--zf-text); }
.zf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zf-form input,
.zf-form textarea { width: 100%; border: 1px solid var(--zf-line); background: #FFFFFF; border-radius: 5px; padding: 15px 16px; font-family: 'Inter', Arial, sans-serif; font-size: 14px; color: var(--zf-text); outline: none; }
.zf-form input:focus,
.zf-form textarea:focus { border-color: var(--zf-green); box-shadow: 0 0 0 3px rgba(11, 79, 52, 0.08); }
.zf-form textarea { min-height: 155px; resize: vertical; grid-column: 1 / -1; }
.zf-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 22px; font-size: 13px; color: var(--zf-text); }
.zf-consent input { width: 16px; height: 16px; margin-top: 3px; flex: 0 0 16px; }
.zf-consent a { color: var(--zf-green); text-decoration: underline; font-weight: 700; }
.zf-map-box { background: #FFFFFF; border: 1px solid var(--zf-line); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 24px rgba(13, 27, 42, 0.04); }
.zf-map-box iframe { width: 100%; height: 430px; display: block; border: 0; filter: saturate(0.78) contrast(0.95) brightness(1.03); }
/* =========================  TELEFONOS CTA BLOKK  ========================= */
.zf-phone-cta { padding: 0 0 58px; }
.zf-phone-box { background: #FFFFFF; border: 1px solid var(--zf-line); border-radius: var(--zf-radius); padding: 38px 44px; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; box-shadow: 0 10px 26px rgba(13, 27, 42, 0.04); }
.zf-phone-big-icon { width: 94px; height: 94px; border-radius: 50%; background: rgba(11, 79, 52, 0.08); color: var(--zf-green); display: flex; align-items: center; justify-content: center; font-size: 46px; }
.zf-phone-copy h2 { margin: 0 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 32px; color: var(--zf-ink); }
.zf-phone-copy p { margin: 0; font-size: 16px; }
.zf-phone-number { text-align: right; }
.zf-phone-number strong { display: block; margin-bottom: 14px; color: var(--zf-green); font-size: 30px; line-height: 1; font-weight: 800; }
/* =========================  FOOTER  ========================= */
.zf-footer { background: linear-gradient(135deg, var(--zf-green-dark), var(--zf-green)); color: #FFFFFF; }
.zf-footer-main { padding: 58px 0 48px; display: grid; grid-template-columns: 1.4fr 0.6fr 1fr; gap: 32px; }
.zf-footer-logo { width: 300px; margin-bottom: 22px; }
.zf-footer-logo-2 { width: 500px; margin-bottom: 22px; }
.zf-footer p,
.zf-footer li,
.zf-footer a { color: rgba(255,255,255,0.88); font-size: 15px; }
.zf-footer h3 { margin: 0 0 18px; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; color: #FFFFFF; }
.zf-footer ul { list-style: none; padding: 0; margin: 0; }
.zf-footer li { margin-bottom: 10px; }
.zf-footer-bottom { border-top: 1px solid rgba(255,255,255,0.18); padding: 18px 0; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.82); }
.zf-footer-bottom-links { display: flex; gap: 26px; }
/* =========================  TABLET + MOBIL NÉZET  ========================= */
.phone-cta {
  max-width: 1240px;
  margin: 0px auto 56px ;
  padding: 30px 36px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 51, 0.10);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 48, 32, 0.08);
  display: grid;
  grid-template-columns: 86px 1.2fr 1fr 1.55fr;
  align-items: center;
  gap: 28px;
}

.phone-cta__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e9f3ec;
  color: #005238;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.phone-cta__text h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
  color: #102033;
}

.phone-cta__text p,
.phone-cta__qr p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #263445;
}

.phone-cta__number {
  border-left: 1px solid rgba(0, 74, 51, 0.16);
  border-right: 1px solid rgba(0, 74, 51, 0.16);
  padding: 0 30px;
  text-align: center;
}

.phone-cta__number strong {
  display: block;
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1;
  color: #005238;
  font-weight: 800;
}

.phone-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  background: #005238;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(0, 82, 56, 0.22);
}

.phone-cta__qr {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 10px;
}

.phone-cta__qr img {
  width: 200px;
  height: 200px;
  display: block;
  padding: 4px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 51, 0.14);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 48, 32, 0.10);
}

.phone-cta__qr h3 {
  margin: 0 0 6px;
  color: #005238;
  font-size: 17px;
  font-weight: 800;
  text-transform: none;
}

/* Tablet */
@media (max-width: 980px) {
  .phone-cta {   grid-template-columns: 70px 1fr; }
  .phone-cta__number {    border-left: 0;   border-right: 0;  padding: 0;  text-align: left; }
  .phone-cta__qr {  grid-column: 1 / -1; }
}

/* Mobil */
@media (max-width: 640px) {
  .phone-cta {
    margin: 32px 16px 40px;
    padding: 24px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phone-cta__icon {
    margin: 0 auto;
  }

  .phone-cta__number {
    text-align: center;
  }

  .phone-cta__number strong {
    font-size: 26px;
  }

  .phone-cta__qr {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 74, 51, 0.12);
  }

  .phone-cta__qr img {
    width: 118px;
    height: 118px;
  }
}

/* =========================  TABLET + MOBIL NÉZET  ========================= */

















@media (max-width: 980px) { .zf-header-inner {flex-direction: column;padding: 20px 0;  } .zf-nav {flex-wrap: wrap;justify-content: center;gap: 18px 26px;  } .zf-card-grid {grid-template-columns: repeat(2, 1fr);  } .zf-two-col {grid-template-columns: 1fr; } .zf-phone-box {grid-template-columns: 1fr;text-align: center; } .zf-phone-big-icon {margin: 0 auto;  } .zf-phone-number {text-align: center;  } .zf-footer-main {grid-template-columns: 1fr;gap: 34px;  } 
.zf-footer-logo { width: 100%; margin-bottom: 22px; }
.zf-footer-logo-2 { width: 100%; margin-bottom: 10px; }}
@media (max-width: 640px) { .zf-container {width: min(100% - 28px, var(--zf-container));  } .zf-logo img {width: 190px;  } .zf-nav {font-size: 13px;  } .zf-nav .zf-btn {width: 100%;  } .zf-contact-hero {padding: 54px 0 38px;  } .zf-eyebrow-line::before, .zf-eyebrow-line::after {width: 80px;  } .zf-lead {font-size: 16px;  } .zf-hero-actions {flex-direction: column;align-items: stretch;  } .zf-card-grid {grid-template-columns: 1fr;  } .zf-form-grid {grid-template-columns: 1fr;  } .zf-map-box iframe {height: 330px;  } .zf-phone-box {padding: 30px 22px;  } .zf-footer-bottom {flex-direction: column;text-align: center;  } }

/* ===== Contact-card  ===== */

/* .contact-card { display: grid; grid-template-columns:  1fr; gap: 40px; padding: 10px 44px 34px; margin-bottom: 24px;  background: #ffffff; margin-top: 20px;}*/
.contact-info { border-right: 1px solid var(--line); padding-top: 38px; padding-right: 38px; }
.contact-info img { width: 245px; margin-bottom: 22px; }
.contact-info p { color: var(--text-muted); margin-bottom: 18px; }
.contact-line { color: var(--text-main) !important; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
input, textarea { width: 100%; border: 1px solid #d7ded9; border-radius: 6px; padding: 16px 18px; font: inherit; color: var(--text-main); background: white; }
textarea { height: 122px; resize: vertical; margin-bottom: 18px; }
input:focus, textarea:focus { outline: 2px solid rgba(0,92,61,.18); border-color: var(--green-main); }
.site-footer { background: var(--green-dark); color: white; border-radius: 8px 8px 0 0; }
.footer-inner { min-height: 55px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.footer-inner a { color: white; margin: 0 12px; }
.required { color: #b32323; }
.contact-form h2 { font-size: 33px; margin-bottom: 20px; }

@media (max-width: 1050px) {
.detail-panel, .contact-grid { grid-template-columns: 1fr; }  
.detail-intro { border-right: 0; padding-right: 0; } 
.why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; } 
.why-item:nth-child(2) { border-right: 0; }  
.cta-strip { padding-left: 160px; }
.header-inner { height: auto; padding: 10px 0px 0px; flex-wrap: wrap; }
.main-nav { order: 3; width: 100%; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hero-card { position: relative; grid-template-columns: 1fr;  background-color: #1a1a1a;  overflow: hidden; }
.hero-image {position: absolute;  top: 0; left: 0; width: 100%; height: 100%;  opacity: 1;  background-image: linear-gradient(0deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4)), url('img/forras-hero.jpg'); background-size: cover; background-position: center;  z-index: 1; }

.hero-content { position: relative; z-index: 2; 
    background: transparent; /* KITÖRÖLTÜK a fehér hátteret, ami eltakarta a képet */
    color: #ffffff; /* A szöveg fehér lesz, hogy jól olvasható legyen */
    padding: 40px; /* Hogy a szöveg ne érjen a kártya széléhez */
}
.hero-content h1, 
.hero-content p { font-size: 20px;font-weight: 800; color: #000000;  text-shadow: 0 0 10px rgba(255, 255, 255, 0.),   0 0 5px rgba(255, 255, 255, 0.9);}	
  .feature-strip, .service-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card, .online-card, .contact-card { grid-template-columns: 1fr; }
  .about-list, .contact-info { border-left: 0; border-right: 0; padding-left: 0; padding-right: 0; }
  .process-strip { grid-template-columns: 1fr; }
  .arrow { display: none; }
}
@media (max-width: 620px) {
	.header-inner { height: auto; padding: 16px 0; align-items: flex-start; } 
	.hero-inner { grid-template-columns: 1fr; padding-top: 34px; }  
	.hero-visual { order: -1; opacity: 0.55; }  
	.hero-building { width: 100%; }  
	.hero-title { font-size: 26px; }  
	.hero-text { font-size: 17px; }  
	.detail-intro { grid-template-columns: 1fr; text-align: center; }  
	.detail-icon-circle { margin: 0 auto; }  
	.detail-list { grid-template-columns: 1fr; }  
	.why-grid, .process-grid, .form-row { grid-template-columns: 1fr; }  
	.why-item { border-right: 0; padding: 0; }  
	.process-grid::before { display: none; }  
	.cta-strip { grid-template-columns: 1fr; padding: 28px 24px; text-align: center; background-image: linear-gradient(90deg, rgba(0,63,45,0.98), rgba(0,92,63,0.96)); }  
	.contact-grid { padding: 24px; }  
	.footer-inner { flex-direction: column; padding: 14px 0; } 
	.service-card { min-height: auto; }  
	.logo-img { width: 188px; } 	
	.zf-contact-main {  scroll-margin-top: 150px;}
	
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 36px; }
  .hero-content { padding: 33px 24px; }
  .feature-strip, .service-grid, .faq-grid, .form-row { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-item:last-child { border-bottom: 0; }
  .contact-card { padding: 40px 22px 25px; }
  .about-card, .online-card { padding: 25px 22px; }
  .header-cta { display: none;}	
  .header-cta_1 { width: 100%;}
  .footer-inner { flex-direction: column; padding: 14px 0; } 
}
