@charset "utf-8";
: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;  
}
 
* { 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 ===== */

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

/* ===== Section titles ===== */

.section-head { text-align: center; margin-bottom: 22px; }
.section-title { margin: 0;  font-family: "Playfair Display", Georgia, serif; font-size: 32px; line-height: 1.2;  letter-spacing: -0.02em;  color: #102036; }
.section-head .section-mark { margin: 8px auto 8px; width: 38px; }
.section-subtitle { margin: 0; color: var(--ink); font-size: 14px; font-weight: 500; } 

/* ===== Service cards ===== */

.services-overview { padding: 12px 0 14px; background: #f5f8f6; }
.service-grid { display: grid;  grid-template-columns: repeat(6, 1fr);  gap: 12px; }
.service-card { min-height: 290px;  padding: 26px 18px 18px;  border: 1px solid var(--line);  border-radius: 8px;  background: rgba(255,255,255,0.94);  text-align: center;  box-shadow: var(--shadow-card);  display: flex;  flex-direction: column; align-items: center;  justify-content: flex-start; }
.service-card.is-active { border-color: var(--line-strong); box-shadow: 0 0 0 1px rgba(11, 106, 74, 0.08), var(--shadow-card); }
.icon-line {  width: 54px;  height: 54px;  color: var(--green-800);  margin-bottom: 14px; }
.service-card h3 {  margin: 0 0 14px;  min-height: 48px;  font-size: 18px;  line-height: 1.35;  font-weight: 800; }
.service-card p {  margin: 0;  font-size: 12px;  line-height: 1.75;  color: #223146; }
.card-arrow { margin-top: auto; font-size: 19px; line-height: 1; color: var(--ink); } 

/* ===== Detail panel ===== */

.service-detail { padding: 0 0 16px; background: #f5f8f6; }
.detail-panel { display: grid;  grid-template-columns: 1.05fr 1.8fr;  gap: 36px;  align-items: stretch;  padding: 28px 34px;  background: var(--white);  border: 1px solid var(--line);  border-radius: 8px;  box-shadow: var(--shadow-soft); }
.detail-intro { display: grid;  grid-template-columns: 122px 1fr;  gap: 28px;  align-items: center;  padding-right: 30px;  border-right: 1px solid var(--line); }
.detail-icon-circle {  width: 116px;  height: 116px;  border-radius: 50%;  background: var(--green-100);  display: flex;  align-items: center;  justify-content: center; }
.detail-icon-circle .icon-line { margin: 0; width: 62px; height: 62px; }
.detail-intro h3 {  margin: 0 0 10px;  font-family: "Playfair Display", Georgia, serif;  font-size: 28px;  line-height: 1.2; }
.detail-intro p { margin: 0 0 18px; font-size: 14px; line-height: 1.75; }
.btn-small {  min-height: 40px;  padding: 0 16px;  border-radius: 6px;  background: linear-gradient(135deg, var(--green-900), var(--green-700));  color: var(--white);  font-size: 13px;  font-weight: 800;  display: inline-flex;  align-items: center;  gap: 10px; }
.detail-list {  display: grid;  grid-template-columns: repeat(2, 1fr);  column-gap: 48px;  row-gap: 14px;  padding: 0;  margin: 0;  list-style: none;  align-content: center; }
.detail-list li {  position: relative;  padding-left: 32px;  font-size: 15px;  line-height: 1.45; }
.detail-list li::before {  content: "✓";  position: absolute;  left: 0;  top: 0;  width: 18px;  height: 18px;  border: 1px solid var(--green-700);  border-radius: 50%;  color: var(--green-700);  font-size: 12px;  line-height: 17px;  text-align: center; } 

/* ===== Why section ===== */

.why-section { padding: 14px 0 18px; background: linear-gradient(180deg, #f5f8f6, #ffffff); }
.why-grid {  display: grid;  grid-template-columns: repeat(4, 1fr);  gap: 0; }
.why-item {  display: grid;  grid-template-columns: 72px 1fr;  gap: 18px;  padding: 0 32px;  border-right: 1px solid var(--line); }
.why-item:last-child { border-right: 0; }
.why-icon {  width: 70px;  height: 70px;  border-radius: 50%;  background: var(--white);  box-shadow: var(--shadow-card);  display: flex;  align-items: center;  justify-content: center; }
.why-icon .icon-line { width: 42px; height: 42px; margin: 0; }
.why-item h3 { margin: 4px 0 12px; font-size: 16px; line-height: 1.35; }
.why-item p { margin: 0; font-size: 14px; line-height: 1.8; color: #233248; } 

/* ===== Process ===== */

.process-section { padding: 10px 0 28px; background: #ffffff; margin-top: 20px;}
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;  padding-top: 28px; }
.process-grid::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 41px; height: 1px;  background: var(--green-700); opacity: 0.7; }
.process-step { position: relative; text-align: center; }
.step-number { position: relative;  z-index: 2; width: 32px; height: 32px; margin: -4px auto 12px; border-radius: 50%; background: var(--green-900); color: var(--white); font-weight: 800; line-height: 32px; }
.step-icon { width: 60px;  height: 60px;  margin: 0 auto 12px;  border-radius: 50%;  background: var(--green-100);  display: flex;  align-items: center; justify-content: center; }
.step-icon .icon-line { width: 34px; height: 34px; margin: 0; }
.process-step h3 { margin: 0 0 8px; font-size: 16px; font-weight: 800; }
.process-step p { margin: 0 auto; max-width: 210px; font-size: 14px; line-height: 1.65; color: #233248; } 

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

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