/* =========================================
   Lakásfelújítás – premium + interaktív
   File: /assets/css/szolgaltatas-lakasfelujitas.css
   CLEAN (duplikációk nélkül)
   ========================================= */

/* =========================
   ROOT / BACKDROP
   ========================= */
.svc-reno{
  --gold: rgba(212,162,58,1);
  --blue: rgba(98,140,255,1);
  --mint: rgba(64,215,170,1);
  --glass: rgba(255,255,255,.06);
  --glass2: rgba(255,255,255,.035);
  --line: rgba(255,255,255,.12);
  --shadow: 0 26px 70px rgba(0,0,0,.55);
  --shadow2: 0 18px 44px rgba(0,0,0,.42);

  position: relative;
  overflow: clip;
}

/* színes glow háttér */
.svc-reno::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 320px at 15% 6%, rgba(212,162,58,.16), transparent 60%),
    radial-gradient(900px 360px at 85% 0%, rgba(98,140,255,.14), transparent 60%),
    radial-gradient(820px 360px at 50% 105%, rgba(64,215,170,.10), transparent 60%);
  opacity: .95;
}

/* =========================
   WIDTH SYSTEM (A LÉNYEG)
   Egységes szélesség az egész oldalon
   ========================= */
.svc-reno .container{
  max-width: 1200px !important;     /* állítható: 1000 / 1040 / 1100 */
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* ha globálban 100vw-val trükközne valami */
.svc-reno .page-hero,
.svc-reno .section{
  width: auto !important;
}

/* =========================
   CARD BASE
   ========================= */
.svc-reno .card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}
.svc-reno .card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255,255,255,.16);
  filter: saturate(1.05);
}

/* =========================
   HERO
   ========================= */
.svc-reno .svc-hero{
  padding: 18px;
}

.svc-reno .svc-hero__kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,162,58,.28);
  background: rgba(212,162,58,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.svc-reno .page-hero__title{
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 26px rgba(0,0,0,.38);
}
.svc-reno .page-hero__lead{
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  opacity: .92;
}

/* HERO layout: fent 2 oszlop (main + side) */
.svc-reno .svc-hero__top{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}

/* Mobilon 1 oszlop */
@media (max-width: 980px){
  .svc-reno .svc-hero__top{
    grid-template-columns: 1fr;
  }
}

/* JOBB oldali kártya picit lejjebb desktopon (opcionális, finom) */
@media (min-width: 981px){
  .svc-reno .svc-hero__side{
    margin-top: 12px;
  }
}

/* =========================
   HERO BELOW (✓ + CTA + micro)
   FONTOS: akkor kerül a két oszlop alá, ha a HTML-ben van
   <div class="svc-hero__below"> ... </div>
   ========================= */
.svc-reno .svc-hero__below{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  box-shadow: var(--shadow2);
}

/* HERO pills: 3 pill balra, 2 CTA jobbra (desktopon egy sor) */
.svc-reno .hero-pills{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: nowrap;         /* desktopon 1 sor */
  white-space: nowrap;
  min-width: 0;
  margin: 0 0 8px;
}

.svc-reno .hero-pills .pill{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  padding: 8px 11px;
  border-radius: 999px;

  flex: 0 1 auto;            /* shrink engedély */
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* színes pill-ek */
.svc-reno .hero-pills .pill:nth-child(1){ border-color: rgba(212,162,58,.28); background: rgba(212,162,58,.10); }
.svc-reno .hero-pills .pill:nth-child(2){ border-color: rgba(64,215,170,.22); background: rgba(64,215,170,.08); }
.svc-reno .hero-pills .pill:nth-child(3){ border-color: rgba(98,140,255,.22); background: rgba(98,140,255,.08); }

/* CTA-k jobbra zárása */
.svc-reno .hero-pills > a.topbar__cta:first-of-type{
  margin-left: auto;
}
.svc-reno .hero-pills > a.topbar__cta{
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Mobilon törhet */
@media (max-width: 900px){
  .svc-reno .hero-pills{
    flex-wrap: wrap;
    white-space: normal;
    gap: 10px;
  }
  .svc-reno .hero-pills > a.topbar__cta:first-of-type{
    margin-left: 0;
  }
}

.svc-reno .svc-hero__micro{
  margin: 0;
}

/* =========================
   BUTTONS
   ========================= */
.svc-reno .topbar__cta{
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.svc-reno .topbar__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(0,0,0,.55);
  filter: brightness(1.06);
}

.svc-reno .btn--shine::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-30%;
  width:60%;
  height:160%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity: 0;
  transition: opacity 250ms ease, transform 800ms ease;
}
.svc-reno .btn--shine:hover::after{
  opacity:.95;
  transform: translateX(220%) rotate(18deg);
}

/* =========================
   RIGHT SIDE BOX
   ========================= */
.svc-reno .sideBox{
  padding: 14px;
}
.svc-reno .sideBox__t{
  font-weight: 800;
  margin-bottom: 8px;
}
.svc-reno .sideBox__list{
  margin: 0;
  padding-left: 16px;
  opacity: .9;
}
.svc-reno .sideBox__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* =========================
   INTRO
   ========================= */
.svc-reno .introCard{
  padding: 16px;
}

/* =========================
   HEADINGS AREA
   ========================= */
.svc-reno .svc-head{
  margin-bottom: 12px;
}

/* =========================
   STEPS
   ========================= */
.svc-reno .steps{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 1100px){
  .svc-reno .steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .svc-reno .steps{ grid-template-columns: 1fr; }
}

.svc-reno .step{
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.svc-reno .step__n{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-weight: 800;
  flex: 0 0 auto;
}

.svc-reno .step__t{
  font-weight: 800;
  margin-bottom: 4px;
}

/* =========================
   MODULE CARDS
   ========================= */
.svc-reno .modules{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 1200px){
  .svc-reno .modules{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 860px){
  .svc-reno .modules{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .svc-reno .modules{ grid-template-columns: 1fr; }
}

.svc-reno .modCard{
  text-decoration: none;
  color: inherit;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 128px;
}

.svc-reno .modCard:focus{
  outline: 2px solid rgba(212,162,58,.55);
  outline-offset: 3px;
}

.svc-reno .modCard__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.30);
  flex: 0 0 auto;
}

.svc-reno .modCard:nth-child(1) .modCard__icon{ border-color: rgba(98,140,255,.25); background: rgba(98,140,255,.10); }
.svc-reno .modCard:nth-child(2) .modCard__icon{ border-color: rgba(212,162,58,.28); background: rgba(212,162,58,.10); }
.svc-reno .modCard:nth-child(3) .modCard__icon{ border-color: rgba(64,215,170,.22); background: rgba(64,215,170,.08); }
.svc-reno .modCard:nth-child(4) .modCard__icon{ border-color: rgba(98,140,255,.22); background: rgba(98,140,255,.08); }
.svc-reno .modCard:nth-child(5) .modCard__icon{ border-color: rgba(212,162,58,.22); background: rgba(212,162,58,.08); }

.svc-reno .modCard__t{
  font-weight: 900;
  margin-bottom: 6px;
}
.svc-reno .modCard__p{
  margin: 0;
  line-height: 1.55;
  opacity: .9;
}

.svc-reno .modCard__go{
  margin-left: auto;
  opacity: .75;
  font-size: 18px;
  transform: translateY(2px);
  transition: transform 220ms ease, opacity 220ms ease;
}
.svc-reno .modCard:hover .modCard__go{
  transform: translate(2px, 2px);
  opacity: 1;
}

/* =========================
   FAQ
   ========================= */
.svc-reno .faq{
  padding: 10px 14px;
}
.svc-reno .faqD{
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 12px 0;
}
.svc-reno .faqD:last-child{
  border-bottom: none;
}
.svc-reno .faqS{
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight: 750;
}
.svc-reno .faqS .chev{
  transition: transform .2s ease;
  opacity:.85;
}
.svc-reno .faqD[open] .chev{
  transform: rotate(180deg);
}
.svc-reno .faqP{
  padding-top: 10px;
  line-height: 1.7;
}

/* =========================
   CLOSING CTA
   ========================= */
.svc-reno .closingCta{
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap: 14px;
}
.svc-reno .closingCta__t{
  margin:0 0 6px;
}
.svc-reno .closingCta__p{
  margin:0;
}
.svc-reno .closingCta__actions{
  display:inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-self: end;
}
@media (max-width: 720px){
  .svc-reno .closingCta{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .svc-reno .closingCta__actions{
    justify-self:center;
  }
}

/* =========================
   REVEAL fallback
   ========================= */
.svc-reno [data-reveal]{
  opacity: 1;
  transform: none;
}
.svc-reno [data-reveal].is-inview{
  opacity: 1;
  transform: none;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .svc-reno *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* ==================================================
   HERO GRID FIX: jobb oldali kártya kapjon teret
   ================================================== */

/* Desktopon: bal rugalmas, jobb minimum szélességgel */
.svc-reno .svc-hero__top{
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

/* A jobb oldali kártya ne tudjon túl keskenyre menni */
.svc-reno .svc-hero__side{
  min-width: 360px !important;
}

/* Közepes szélességen (laptop) inkább 2 sor: fent bal+jobb, alatta a below már úgyis külön */
@media (max-width: 1120px){
  .svc-reno .svc-hero__top{
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr) !important;
  }
  .svc-reno .svc-hero__side{
    min-width: 340px !important;
  }
}

/* Ha már nagyon szűk: egymás alá (ne nyomja össze a jobb kártyát) */
@media (max-width: 980px){
  .svc-reno .svc-hero__top{
    grid-template-columns: 1fr !important;
  }
  .svc-reno .svc-hero__side{
    min-width: 0 !important;
  }
}

/* Extra: bal oldali hosszú cím ne tolja szét a layoutot */
.svc-reno .svc-hero__main{
  min-width: 0 !important;
}
.svc-reno .page-hero__title,
.svc-reno .page-hero__lead{
  overflow-wrap: anywhere;
}
/* HERO alatti sáv: a két oszlop alatt teljes szélességben */
.svc-reno .svc-hero__below{
  grid-column: 1 / -1 !important;  /* <-- EZ A KULCS */
  width: 100% !important;
  max-width: none !important;
}
/* =========================================
   GLOBÁLIS KISBETŰ MÉRET NÖVELÉS
   ========================================= */

.svc-reno{
  --text-xs: 14px;   /* eddig pl. 12–13px volt */
  --text-sm: 15px;
}

/* legkisebb szövegek */
.svc-reno small,
.svc-reno .muted,
.svc-reno .svc-hero__micro,
.svc-reno .faqP,
.svc-reno .modCard__p{
  font-size: var(--text-xs) !important;
  line-height: 1.6;
}
/* =========================================================
   Lakásfelújítás: 3 section prémium + interaktív
   (tedd a CSS fájl legaljára)
   ========================================================= */

/* ---------- INTRO (premium) ---------- */
.svc-reno .introCard--premium{
  padding: 26px 22px;
}

.svc-reno .introTop{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 10px;
}

.svc-reno .introBadge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  border: 1px solid rgba(212,162,58,.30);
  background: rgba(212,162,58,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.svc-reno .introGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px){
  .svc-reno .introGrid{ grid-template-columns: 1fr; }
}

.svc-reno .introTitle .hl{
  color: rgba(212,162,58,1);
}

.svc-reno .introLead{
  font-size: 17px;
  line-height: 1.65;
  margin: 10px 0 0;
  opacity: .95;
}

.svc-reno .introAside{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  padding: 14px;
}

.svc-reno .introChips{
  display:grid;
  gap: 10px;
}
.svc-reno .chip{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.svc-reno .chip:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
}
.svc-reno .chipIco{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
  flex: 0 0 auto;
}
.svc-reno .chipT{ font-weight: 900; }
.svc-reno .chipP{ font-size: 14px; margin-top: 1px; }

/* ---------- FLOW HEAD ---------- */
.svc-reno .renoHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 12px;
}

/* ---------- STEPS: timeline + interakció ---------- */
.svc-reno .steps--timeline{
  position: relative;
}

.svc-reno .steps--timeline::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(212,162,58,.30),
    rgba(98,140,255,.22),
    rgba(64,215,170,.18)
  );
  opacity: .85;
  border-radius: 2px;
}

@media (max-width: 640px){
  .svc-reno .steps--timeline::before{ left: 20px; }
}

.svc-reno .step--fx{
  cursor: default;
  position: relative;
  padding: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}
.svc-reno .step--fx:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,.50);
  border-color: rgba(255,255,255,.18);
  filter: saturate(1.05);
}
.svc-reno .step--fx:focus{
  outline: 2px solid rgba(212,162,58,.55);
  outline-offset: 3px;
}

.svc-reno .step__n{
  background: linear-gradient(135deg, rgba(212,162,58,.20), rgba(98,140,255,.18));
  border-color: rgba(255,255,255,.16);
}

/* lépés "pont" a timeline-hoz */
.svc-reno .step--fx::before{
  content:"";
  position:absolute;
  left: 12px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(212,162,58,.25);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.svc-reno .step--fx:hover::before{
  background: rgba(212,162,58,.32);
}

/* ---------- MODULES: prémium hover + shine ---------- */
.svc-reno .headRow{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:flex-end;
}
@media (max-width: 720px){
  .svc-reno .headRow{ flex-direction:column; align-items:flex-start; }
}

.svc-reno .headHint{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.svc-reno .hintDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(64,215,170,.55);
  box-shadow: 0 0 18px rgba(64,215,170,.35);
}

.svc-reno .modules--premium .modCard--fx{
  position: relative;
  overflow: hidden;
}
.svc-reno .modules--premium .modCard--fx::after{
  content:"";
  position:absolute;
  inset:-40%;
  transform: rotate(14deg) translateX(-60%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  opacity: 0;
  transition: opacity 250ms ease, transform 900ms ease;
  pointer-events:none;
}
.svc-reno .modules--premium .modCard--fx:hover::after{
  opacity: .85;
  transform: rotate(14deg) translateX(60%);
}

.svc-reno .modules--premium .modCard--fx:hover .modCard__icon{
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.svc-reno .modules--premium .modCard__icon{
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.svc-reno .modules--premium .modCard__go{
  transition: transform 220ms ease, opacity 220ms ease;
}
.svc-reno .modules--premium .modCard--fx:hover .modCard__go{
  transform: translate(4px, 2px);
  opacity: 1;
}
