/* ============================================================
   Paulinyi Gergő – Kazán Szerviz | style.css
   Mobile-first, custom components + Tailwind kiegészítés
============================================================ */

/* === DESIGN TOKENS === */
:root {
  --primary:      #1a3a5c;
  --primary-d:    #122844;
  --primary-l:    #2d5a8e;
  --accent:       #f97316;
  --accent-d:     #ea580c;
  --accent-l:     #fb923c;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --text:         #1e293b;
  --muted:        #64748b;
  --border:       #e2e8f0;
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --r:            10px;
  --r-lg:         18px;
  --hh:           68px; /* header height */
  --t:            .25s ease;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.65; overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
p     { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: var(--primary); }
h2 { font-size: clamp(1.55rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2;  color: var(--primary); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 700; line-height: 1.25; color: var(--primary); }

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
#site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  height: 100%; padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.logo-name { font-size: .94rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.logo-sub  { font-size: .63rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }

/* Desktop Nav – ↓ 1024 → 1280px (8 nav elem fér el rendesen) */
.desktop-nav { display: none; align-items: center; gap: .05rem; }
@media (min-width: 1280px) { .desktop-nav { display: flex; } }
.nav-link {
  padding: .42rem .78rem; border-radius: 7px;
  font-size: .855rem; font-weight: 500; color: var(--text);
  transition: all var(--t); white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--accent); background: rgba(249,115,22,.09); }
.nav-link.active { font-weight: 600; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: .6rem; }
.header-tel {
  display: none; align-items: center; gap: .4rem;
  padding: .46rem 1rem; border-radius: 8px;
  border: 2px solid var(--accent); color: var(--primary);
  font-weight: 700; font-size: .84rem; white-space: nowrap;
  transition: all var(--t);
}
@media (min-width: 640px) { .header-tel { display: flex; } }
.header-tel:hover { background: var(--accent); color: white; }

/* Header CTA – ↓ 768 → 1024px hogy ne tolódjon össze hamburgerkol */
.header-cta {
  display: none; padding: .46rem 1rem;
  background: var(--accent); color: white;
  border-radius: 8px; font-weight: 600; font-size: .84rem;
  white-space: nowrap; transition: background var(--t);
}
@media (min-width: 1024px) { .header-cta { display: block; } }
.header-cta:hover { background: var(--accent-d); }

/* Hamburger – ↓ 1024 → 1280px */
.hamburger {
  background: none; border: none; cursor: pointer;
  padding: .42rem; border-radius: 7px; color: var(--primary);
  display: flex; flex-direction: column; gap: 5px;
  transition: background var(--t);
}
@media (min-width: 1280px) { .hamburger { display: none; } }
.hamburger:hover { background: rgba(0,0,0,.05); }
.bar {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  position: fixed; top: var(--hh); left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); z-index: 999;
  padding: .75rem 1.25rem 1.5rem;
  display: none; flex-direction: column; gap: .2rem;
  max-height: calc(100dvh - var(--hh)); overflow-y: auto;
}
#mobile-nav.open { display: flex; }
#mobile-nav .nav-link {
  padding: .78rem 1rem; font-size: .95rem;
  border-radius: 9px; display: flex; align-items: center; gap: .6rem;
}
.mob-divider { height: 1px; background: var(--border); margin: .4rem 0; }
.mob-tel {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem; border-radius: 9px;
  border: 2px solid var(--primary); color: var(--primary);
  font-weight: 700; font-size: 1rem; margin-top: .3rem;
  transition: all var(--t);
}
.mob-tel:hover { background: var(--primary); color: white; }
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem; border-radius: 9px;
  background: var(--accent); color: white;
  font-weight: 700; font-size: 1rem; margin-top: .35rem;
  transition: background var(--t);
}
.mob-cta:hover { background: var(--accent-d); }

/* ============================================================
   FOOTER
============================================================ */
#site-footer { background: var(--primary); padding: 3.5rem 1.25rem 1.75rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: .85rem; color: rgba(255,255,255,.55);
  margin-top: .85rem; line-height: 1.8; max-width: 280px;
}
.footer-logo .logo-name { color: white; }
.footer-logo .logo-sub  { color: rgba(255,255,255,.35); }
.footer-contacts { margin-top: 1.35rem; display: flex; flex-direction: column; gap: .65rem; }
.footer-ci { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-ci a { color: rgba(255,255,255,.7); transition: color var(--t); }
.footer-ci a:hover { color: var(--accent-l); }
.footer-ic { flex-shrink: 0; margin-top: 1px; }

.footer-col h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.32); margin-bottom: .9rem;
}
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.62); transition: color var(--t); }
.footer-links a:hover { color: var(--accent-l); }

.footer-seo {
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 1.5rem;
}
.footer-seo p {
  font-size: .7rem; color: rgba(255,255,255,.22);
  line-height: 2.1; text-align: center;
}
.footer-bottom {
  text-align: center; font-size: .73rem; color: rgba(255,255,255,.28);
  display: flex; flex-direction: column; gap: .3rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: .9rem; border: none;
  cursor: pointer; transition: all var(--t); line-height: 1.2;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover {
  background: var(--accent-d); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.38);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline-w { background: transparent; color: white; border: 2px solid rgba(255,255,255,.55); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: .95rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: .48rem 1rem; font-size: .8rem; }
.btn-w  { width: 100%; }

/* ============================================================
   HERO (index)
============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18,40,68,.94) 0%,
    rgba(26,58,92,.82) 55%,
    rgba(26,58,92,.52) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: calc(var(--hh) + 3.5rem) 1.25rem 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.42);
  color: #fb923c; padding: .32rem .9rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 1.25rem;
}
.hero h1    { color: white; max-width: 700px; margin-bottom: 1.1rem; }
.hero-desc  { color: rgba(255,255,255,.8); font-size: clamp(1rem,2.5vw,1.2rem); max-width: 540px; margin-bottom: 2.25rem; }
.hero-btns  { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num   { font-size: 2.2rem; font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: .73rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.3); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.28);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 6px; background: rgba(255,255,255,.5); border-radius: 3px;
  animation: sdot 2s ease infinite;
}
@keyframes sdot { 0%,100%{transform:translateY(0);opacity:1} 75%{transform:translateY(9px);opacity:0} }

/* ============================================================
   PAGE HERO (aloldalak)
============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--hh) + 5rem) 1.25rem 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,40,68,.96), rgba(26,58,92,.87));
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.page-hero-inner h1 { color: white; margin-bottom: .85rem; }
.page-hero-inner p  { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.1rem; font-size: .78rem; color: rgba(255,255,255,.42);
}
.breadcrumb a { color: rgba(255,255,255,.42); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   SECTIONS / CONTAINERS
============================================================ */
.section    { padding: 5rem 1.25rem; }
.section-sm { padding: 3.5rem 1.25rem; }
.section-alt { background: white; }
.container  { max-width: 1280px; margin: 0 auto; }
.sec-head   { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  display: inline-block; font-size: .71rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--accent);
  margin-bottom: .55rem;
}
.sec-title { margin-bottom: .8rem; }
.sec-desc  { color: var(--muted); max-width: 530px; margin: 0 auto; font-size: .97rem; }

/* 2-col layout */
.two-col {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .two-col.wide { grid-template-columns: 1.2fr 1fr; } }

/* ============================================================
   SERVICE CARDS
============================================================ */
.svc-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px)  { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover          { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after   { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card-title { color: var(--primary); font-size: 1.2rem; font-weight: 700; margin-bottom: .65rem; }
.card-desc  { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .875rem; font-weight: 600; color: var(--accent);
  transition: gap var(--t);
}
.card-link:hover { gap: .65rem; }

/* ============================================================
   CHECK LIST
============================================================ */
.check-list { display: flex; flex-direction: column; gap: .7rem; }
.check-item { display: flex; align-items: flex-start; gap: .65rem; }
.check-ic {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(34,197,94,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
  color: #16a34a; font-size: .75rem;
}
.check-txt { font-size: .9rem; color: var(--text); line-height: 1.55; }

/* ============================================================
   INFO / WARN BOXES
============================================================ */
.box {
  border-radius: var(--r); padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: .75rem;
}
.box-info { background: rgba(249,115,22,.07); border: 1px solid rgba(249,115,22,.22); }
.box-warn { background: rgba(239,68,68,.06);  border: 1px solid rgba(239,68,68,.2);  }
.box-ok   { background: rgba(34,197,94,.07);  border: 1px solid rgba(34,197,94,.22); }
.box-blue { background: rgba(26,58,92,.06);   border: 1px solid rgba(26,58,92,.15);  }
.box-em   { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.box-t    { font-size: .875rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.box-d    { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FEATURES GRID
============================================================ */
.feat-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem;
}
@media (min-width: 640px)  { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(3,1fr); } }
.feat-item { display: flex; gap: 1rem; align-items: flex-start; }
.feat-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(249,115,22,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feat-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .35rem; }
.feat-desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   STEPS
============================================================ */
.steps { display: flex; flex-direction: column; }
.step  {
  display: flex; gap: 1.25rem; padding: 1.4rem 0;
  position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 3.5rem; left: 1.25rem; bottom: 0;
  width: 2px; background: var(--border);
}
.step-n {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--accent); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; position: relative; z-index: 1;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .35rem; }
.step-desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-sec {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 100%);
  padding: 5rem 1.25rem; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.13) 0%, transparent 65%);
}
.cta-sec h2 { color: white; margin-bottom: .8rem; }
.cta-sec p  {
  color: rgba(255,255,255,.75); max-width: 460px;
  margin: 0 auto 2rem; font-size: 1.05rem;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--accent); color: white;
  padding: .95rem 2.25rem; border-radius: 9px;
  font-size: 1.2rem; font-weight: 800; transition: all var(--t);
}
.cta-phone:hover {
  background: var(--accent-d); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}
.ring { display: inline-block; animation: ring 2.5s ease infinite; }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  8%  { transform: rotate(-15deg); }
  16% { transform: rotate(15deg); }
  24% { transform: rotate(-12deg); }
  32% { transform: rotate(0); }
}

/* ============================================================
   FORMS
============================================================ */
.form-card {
  background: white; border-radius: var(--r-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 639px) { .form-card { padding: 1.5rem; } }

.fg   { margin-bottom: 1.25rem; }
.flbl {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--text); margin-bottom: .45rem;
}
.req  { color: #ef4444; }
.fc {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: white; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none; appearance: none;
}
.fc:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.fc.err { border-color: #ef4444; }
.fc.err:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
textarea.fc { resize: vertical; min-height: 130px; }
select.fc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem;
}
.ferr { font-size: .78rem; color: #ef4444; margin-top: .3rem; display: none; }
.ferr.show { display: block; }
.form-row   { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-ok {
  display: none; background: rgba(34,197,94,.08);
  border: 1.5px solid rgba(34,197,94,.28); border-radius: var(--r);
  padding: 1.5rem; text-align: center; margin-bottom: 1.5rem;
}
.form-ok.show { display: block; }
.form-ok h3 { color: #15803d; font-size: 1.1rem; margin-bottom: .4rem; }
.form-ok p  { color: var(--muted); font-size: .9rem; margin: 0; }

/* ============================================================
   MAP
============================================================ */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }
@media (min-width: 1024px) { .map-wrap iframe { height: 500px; } }

/* ============================================================
   FORM LAYOUT (hibabejelentes.php – 2 oszlopos nagy képernyőn)
============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .form-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .form-sidebar {
    position: sticky;
    top: calc(var(--hh) + 1.5rem);
  }
}

/* ============================================================
   AREA CARDS
============================================================ */
.area-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .area-grid { grid-template-columns: 1fr 1fr; } }
.area-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: box-shadow var(--t);
}
.area-card:hover { box-shadow: var(--shadow-lg); }
.area-head { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.area-head h3 { font-size: 1.1rem; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.area-list li {
  display: flex; align-items: center; gap: .4rem;
  font-size: .875rem; color: var(--text);
  padding: .35rem .5rem; border-radius: 6px;
  transition: background var(--t);
}
.area-list li::before { content: '→'; color: var(--accent); font-size: .75rem; flex-shrink: 0; }
.area-list li:hover   { background: rgba(249,115,22,.06); }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.25rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--primary);
  transition: background var(--t), color var(--t);
}
.faq-q:hover { background: rgba(249,115,22,.04); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-chev {
  flex-shrink: 0; color: var(--muted);
  transition: transform .3s ease, color .3s ease;
}
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  display: none; padding: 0 1.25rem 1.1rem;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }

/* ============================================================
   PROBLEM CARDS
============================================================ */
.prob-grid {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .prob-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .prob-grid { grid-template-columns: repeat(3,1fr); } }
.prob-card {
  background: white; border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: var(--r);
  padding: 1.5rem; transition: transform var(--t), box-shadow var(--t);
}
.prob-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prob-card h3   { font-size: 1rem; color: var(--primary); margin-bottom: .6rem; }
.prob-card li   {
  font-size: .85rem; color: var(--muted); padding: .2rem 0;
  padding-left: 1.1em; position: relative;
}
.prob-card li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

/* ============================================================
   TAG PILLS
============================================================ */
.pill {
  display: inline-flex; background: rgba(249,115,22,.09);
  color: var(--primary); border: 1px solid rgba(249,115,22,.22);
  padding: .3rem .85rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600;
}
.pill-blue {
  background: rgba(26,58,92,.07); border-color: rgba(26,58,92,.18);
}

/* ============================================================
   SKIP LINK (accessibility)
============================================================ */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--accent); color: white;
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: .9rem; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   GALLERY – munkáim.php
============================================================ */

/* Tab navigation */
.gal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.gal-tab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: white;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
  line-height: 1.2;
}
.gal-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249,115,22,.05);
}
.gal-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.gal-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  padding: .05rem .35rem;
  border-radius: 100px;
  font-size: .72rem;
  line-height: 1.4;
  background: var(--border);
  color: var(--muted);
  font-weight: 700;
}
.gal-tab.active .gal-tab-count {
  background: rgba(255,255,255,.25);
  color: white;
}

/* Gallery section wrapper */
.gal-section {
  margin-bottom: 3.5rem;
}
.gal-section:last-child { margin-bottom: 0; }

.gal-section-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.4rem;
}
.gal-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Flexbox image grid */
.gal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.gal-item {
  flex: 0 0 calc(50% - .375rem);
  max-width: calc(50% - .375rem);
  min-width: 0;
}
@media (min-width: 480px) {
  .gal-item { flex: 0 0 calc(33.333% - .5rem); max-width: calc(33.333% - .5rem); }
}
@media (min-width: 768px) {
  .gal-item { flex: 0 0 calc(25% - .5625rem); max-width: calc(25% - .5625rem); }
}
@media (min-width: 1280px) {
  .gal-item { flex: 0 0 calc(20% - .6rem); max-width: calc(20% - .6rem); }
}

/* Image wrapper */
.gal-link { display: block; }
.gal-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--border);
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  transition: box-shadow var(--t);
}
.gal-item:hover .gal-img-wrap {
  box-shadow: var(--shadow-lg);
}
.gal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.gal-item:hover .gal-img-wrap img {
  transform: scale(1.07);
}

/* Hover overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,40,68,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* Caption below image */
.gal-cap {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.45;
  padding: 0 .15rem;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Empty state */
.gal-empty {
  text-align: center;
  padding: 5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.gal-empty h2 { color: var(--primary); }
.gal-empty p  { color: var(--muted); max-width: 340px; font-size: .97rem; }

/* Gallery item belépő animáció – CSS-alapú, nem GSAP,
   így soha nem marad opacity:0 ha a JS akadna */
@keyframes galFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gal-item {
  animation: galFadeUp .5s ease both;
}
/* Késleltetés az első 20 elemre – utána azonnal */
.gal-item:nth-child(1)  { animation-delay: .04s; }
.gal-item:nth-child(2)  { animation-delay: .08s; }
.gal-item:nth-child(3)  { animation-delay: .12s; }
.gal-item:nth-child(4)  { animation-delay: .16s; }
.gal-item:nth-child(5)  { animation-delay: .20s; }
.gal-item:nth-child(6)  { animation-delay: .24s; }
.gal-item:nth-child(7)  { animation-delay: .28s; }
.gal-item:nth-child(8)  { animation-delay: .32s; }
.gal-item:nth-child(9)  { animation-delay: .36s; }
.gal-item:nth-child(10) { animation-delay: .40s; }
.gal-item:nth-child(n+11) { animation-delay: .44s; }

/* GLightbox custom overrides */
.glightbox-container .gslide-description {
  background: rgba(18,40,68,.92) !important;
}
.glightbox-container .gdesc-inner {
  padding: .85rem 1.25rem !important;
}
.glightbox-container .gslide-desc {
  color: rgba(255,255,255,.88) !important;
  font-size: .88rem !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* ============================================================
   RESPONSIVE MICRO TWEAKS
============================================================ */
@media (max-width: 639px) {
  .hero-stats  { gap: 1.5rem; }
  .cta-phone   { font-size: 1.05rem; padding: .85rem 1.5rem; }
  .section     { padding: 3.5rem 1rem; }
  .section-sm  { padding: 2.5rem 1rem; }
  .page-hero   { padding: calc(var(--hh) + 3.5rem) 1rem 3.5rem; }
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  #site-header, #mobile-nav, .cta-sec, .scroll-hint { display: none !important; }
  .hero { min-height: auto; }
  .hero-overlay, .hero-bg { display: none; }
  .hero h1, .hero-desc { color: black !important; }
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
