/* ============================================================
   REVUCZKY SERVICE — Saját, tiszta CSS
   Csak az oldalon ténylegesen használt stílusok.
   Bootstrap megtartva külön fájlként (layout/grid miatt).
   ============================================================ */

/* ============================================================
   1. CSS VÁLTOZÓK
   ============================================================ */
:root {
  --theme-color:          #EB3300;
  --title-color:          #0A0A0A;
  --title-color2:         #161921;
  --body-color:           #4B4B4B;
  --smoke-color:          #F3F1F2;
  --white-color:          #ffffff;
  --gray-color:           #D2D2D2;
  --black-color:          #000000;

  --title-font:           'Plus Jakarta Sans', sans-serif;
  --body-font:            'Inter', sans-serif;
  --icon-font:            'Font Awesome 6 Pro';

  --section-space:        120px;
  --section-space-mobile: 80px;
  --section-title-space:  60px;

  --main-container:       1290px;
  --container-gutters:    30px;
}

/* ============================================================
   2. ALAP / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.625;
  overflow-x: hidden;
  background-color: var(--white-color);
}

a { color: inherit; text-decoration: none; transition: 0.3s; }
a:hover { color: var(--theme-color); }

img { max-width: 100%; height: auto; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

h2 { font-size: 40px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p:last-child { margin-bottom: 0; }

/* Spacing helpers */
.space,    .space-top    { padding-top:    var(--section-space); }
.space,    .space-bottom { padding-bottom: var(--section-space); }
.space-extra,  .space-extra-top    { padding-top:    calc(var(--section-space) - 30px); }
.space-extra,  .space-extra-bottom { padding-bottom: calc(var(--section-space) - 30px); }

@media (max-width: 991px) {
  .space,         .space-top    { padding-top:    var(--section-space-mobile); }
  .space,         .space-bottom { padding-bottom: var(--section-space-mobile); }
  .space-extra,   .space-extra-top    { padding-top:    calc(var(--section-space-mobile) - 30px); }
  .space-extra,   .space-extra-bottom { padding-bottom: calc(var(--section-space-mobile) - 30px); }
}

/* Bootstrap grid gap helpers */
.gy-40 { --bs-gutter-y: 40px; }

/* Container */
.th-container3 { max-width: 1520px; margin-left: auto; margin-right: auto; padding: 0 15px; }

/* Slick slider col fix */
.slick-track > [class*=col] {
  flex-shrink: 0; width: 100%; max-width: 100%;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) / 2);
  padding-left:  calc(var(--bs-gutter-x, 1.5rem) / 2);
  margin-top: var(--bs-gutter-y, 0);
}

/* Background helpers */
.bg-title  { background-color: var(--title-color)  !important; }
.bg-title2 { background-color: var(--title-color2) !important; }
.bg-smoke  { background-color: var(--smoke-color)  !important; }
.text-white { color: var(--white-color) !important; }
.position-relative { position: relative; }
.overflow-hidden   { overflow: hidden; }

/* ============================================================
   3. PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  background-color: var(--title-color);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.loader {
  width: 150px; height: 150px;
  border: 1px #fff solid;
  border-radius: 50%;
  position: relative;
}
.loader .loading {
  font-size: 10px; position: absolute; width: 100%;
  text-align: center; font-family: var(--title-font);
  left: 0; top: 50%; margin-top: 20px;
  color: #fff; font-weight: bold; text-transform: uppercase;
}
.loader .line {
  width: 10px; height: 2px; background: #fff; position: absolute;
}
.loader .needle {
  width: 2px; height: 60px; background: #fff;
  position: absolute; bottom: 50%; left: 50%;
  transform-origin: bottom center;
  animation: needleSpin 1.5s linear infinite;
}
.loader .loader-circle-1 {
  width: 10px; height: 10px; background: var(--theme-color);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
@keyframes needleSpin { to { transform: rotate(360deg); } }

/* ============================================================
   4. SCROLL TO TOP GOMB
   ============================================================ */
.scroll-top {
  position: fixed; right: 30px; bottom: 70px;
  height: 50px; width: 50px;
  cursor: pointer; border-radius: 50px;
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transform: translateY(45px);
  transition: all 300ms linear;
}
.scroll-top::after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute; text-align: center;
  line-height: 50px; font-size: 20px;
  color: var(--theme-color);
  left: 0; top: 0; height: 50px; width: 50px;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
}
.scroll-top svg { color: var(--theme-color); border-radius: 50%; background: var(--white-color); }
.scroll-top svg path { fill: none; }
.scroll-top .progress-circle path { stroke: var(--theme-color); stroke-width: 20px; transition: all 400ms linear; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   5. GOMBOK (.th-btn)
   ============================================================ */
.th-btn {
  font-family: var(--body-font);
  background-color: var(--theme-color);
  color: var(--white-color);
  position: relative;
  padding: 17px 36px;
  font-weight: 600; font-size: 16px;
  line-height: 26px; text-transform: uppercase;
  z-index: 2; border-radius: 4px;
  display: inline-flex; justify-content: center; align-items: center;
  overflow: hidden; border: none;
  transition: 0.4s; cursor: pointer;
}
.th-btn::before, .th-btn::after {
  content: '';
  position: absolute; z-index: -1;
  top: 0; width: 150%; height: 100%;
  background-color: var(--title-color);
  transform: skew(30deg) translate3d(0,0,0);
  opacity: 0; transition: all 0.4s ease;
}
.th-btn::before { left: auto; right: 100%; transform: skew(-30deg) translate3d(0,0,0); }
.th-btn::after  { left: 100%; }
.th-btn:hover { color: var(--white-color); }
.th-btn:hover::before { right: -10%; opacity: 1; }
.th-btn:hover::after  { left: -10%; opacity: 1; }

.th-btn.style2::before, .th-btn.style2::after { background-color: var(--white-color); }
.th-btn.style2:hover { color: var(--title-color); }

/* ============================================================
   6. MOBIL MENÜ
   ============================================================ */
.th-menu-wrapper {
  position: fixed; top: 0; left: 0;
  height: 100vh; width: 0;
  z-index: 99999;
  overflow: hidden;
  transition: width 0.4s ease;
}
.th-menu-wrapper.th-body-visible { width: 320px; }
.th-menu-area {
  background-color: var(--title-color);
  padding: 30px;
  height: 100%;
  width: 320px;
  overflow-y: auto;
}
.mobile-logo {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 30px;
}
.mobile-logo img { max-width: 150px; }
.close-menu button {
  background: none; border: none;
  color: var(--white-color); font-size: 22px; cursor: pointer;
}
.th-mobile-menu ul li a {
  display: block; color: var(--white-color);
  font-weight: 600; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}
.th-mobile-menu ul li a:hover { color: var(--theme-color); }

/* ============================================================
   7. FEJLÉC (HEADER LAYOUT 4)
   ============================================================ */
.th-header { position: relative; }

/* Felső sáv */
.header-layout4 .header-top {
  background-color: var(--white-color);
  padding: 11px 0;
  position: relative;
  z-index: 2;
}
.header-layout4 .header-top a,
.header-layout4 .header-top p { color: var(--title-color); font-weight: 500; }
.header-layout4 .header-top a:hover { color: var(--theme-color); }

.header-social { display: flex; align-items: center; gap: 8px; }
.header-social .social-title { font-size: 16px; color: var(--title-color); font-weight: 600; }
.header-notice { margin: 0; position: relative; z-index: 2; }
/* A felirat oszlopa egyenlő széles legyen, hogy a text-center érvényesüljön */
.header-layout4 .header-top .row > .col:first-child {
  min-width: 0;
  text-align: center;
}

/* Logo + info sáv */
.header-layout4 .menu-top { background-color: #161921; padding: 23.5px 0; }

.logo-style2 { display: flex; align-items: center; }
.logo-style2 img { max-height: 60px; }

.header-info {
  display: flex; align-items: center; gap: 0 15px;
}
.header-layout4 .header-info_icon {
  color: var(--white-color); font-size: 32px;
  margin: 0 15px 0 0;
}
.header-layout4 .header-info_label {
  font-size: 14px; font-family: var(--title-font);
  color: #74787C; text-transform: capitalize; display: block;
}
.header-layout4 .header-info_link {
  color: var(--white-color); font-family: var(--title-font);
  font-size: 16px; font-weight: 600;
}
.header-layout4 .header-info_link a { color: inherit; }
.header-layout4 .header-info_link a:hover { color: var(--theme-color); }

/* Hamburger gomb */
.th-menu-toggle {
  background: none; border: none;
  color: var(--white-color); font-size: 22px;
  cursor: pointer; padding: 4px 8px;
}
.th-menu-toggle:hover { color: var(--theme-color); }

/* Sticky navigációs sáv */
.sticky-wrapper { position: relative; transition: 0.4s ease-in-out; }
.sticky-wrapper.sticky {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%; background: #070a10;
  z-index: 999;
  animation: headerSticky 0.95s ease forwards;
}
@keyframes headerSticky {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

/* Sticky logó — alapból rejtett, csak sticky módban látható */
.sticky-logo { display: none; }
.sticky-wrapper.sticky .sticky-logo { display: block; }
.sticky-logo img { height: 40px; width: auto; }

/* Mobilon kisebb logó a sticky-ben */
@media (max-width: 991px) {
  .sticky-logo img { height: 26px; }
  .menu-top .th-menu-toggle { display: none !important; }
}

.header-layout4 .menu-area { background-color: #070a10; padding: 0 15px; }

.main-menu { display: flex; align-items: center; }
.main-menu ul { display: flex; margin: 0; padding: 0; }
.main-menu a {
  display: block; position: relative;
  font-weight: 600; font-size: 16px;
  color: var(--white-color);
  font-family: var(--body-font);
  text-transform: uppercase;
  padding: 16.5px 0;
  transition: 0.3s;
}
.main-menu a:hover { color: var(--theme-color); }
.main-menu > ul > li { margin: 0 16px; }

/* Hamburger (desktop oldalmenü nyitó) */
.simple-icon {
  background: none; border: none;
  color: var(--white-color); font-size: 20px;
  cursor: pointer; padding: 4px 8px;
}

/* ============================================================
   8. SZEKCIÓ FEJLÉCEK (sub-title, sec-title, title-area)
   ============================================================ */
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 12px);
  margin-top: -0.25em;
}
.sub-title {
  display: inline-block;
  font-size: 14px; line-height: 14px;
  font-weight: 700;
  color: var(--theme-color);
  font-family: var(--body-font);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.title-area {
  margin-bottom: calc(var(--section-title-space) - 12px);
  position: relative; z-index: 2; margin-top: -6px;
}
.title-area .sub-title {
  position: relative; margin-bottom: 24px;
  padding-left: 40px; color: var(--theme-color);
}
.title-area .sub-title::before,
.title-area .sub-title::after {
  position: absolute; content: '';
  background-color: var(--theme-color);
  left: 0; top: 5px; height: 2px; width: 30px;
}
.title-area .sub-title::after { margin-top: 3px; width: 20px; left: 10px; }
.title-area .sub-title::before { width: 30px; top: auto; bottom: 4px; }
.title-area .sec-title { margin-bottom: 20px; }

/* Középre igazított subtitle vonalak */
.title-area.text-center .sub-title { padding-left: 0; }
.title-area.text-center .sub-title::before,
.title-area.text-center .sub-title::after { left: -40px; }
.title-area.text-center .sub-title::after  { left: -30px; }

/* Double-line dísz a sub-title után */
.double-line { margin-left: 8px; }
.double-line::before, .double-line::after {
  transform: translate(100%, 0); right: -10px; left: auto;
}

/* Reszponzivitás */
@media (max-width: 991px) {
  .title-area.text-lg-start { text-align: center !important; }
}
@media (max-width: 767px) {
  .title-area.text-md-start { text-align: center !important; }
  h2 { font-size: 32px; }
}

/* ============================================================
   9. GÉPKATEGÓRIÁK (.price-box)
   ============================================================ */
.price-box-wrap {
  position: relative;
  background-color: var(--white-color);
  padding: 50px; z-index: 2;
}
.price-box {
  display: flex; align-items: center; gap: 30px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 29px; margin-bottom: 29px;
}
.price-box:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.price-box_img { width: 180px; flex-shrink: 0; }
.price-box_img img { width: 100%; border-radius: 4px; }
.price-box_content { flex: 1; }
.price-box_header { display: flex; justify-content: space-between; }
.price-box_title { font-size: 24px; margin-top: -0.24em; line-height: 34px; }

.price-box_list ul {
  padding-left: 0; list-style: none;
  text-align: left; margin-bottom: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.price-box_list li {
  background-color: var(--smoke-color);
  font-weight: 500; position: relative;
  padding: 4px 15px 4px 38px;
}
.price-box_list li::before {
  content: "\f058";
  font-family: var(--icon-font);
  font-weight: 500;
  color: var(--theme-color);
  position: absolute; left: 15px;
}

/* .price-card — folyamat oldalsáv */
.price-card {
  background-color: var(--white-color);
  box-shadow: 0px 20px 50px rgba(0,0,0,0.08);
  padding: 40px; overflow: hidden;
  transition: 0.4s ease-in-out;
}
.price-card_header { margin-bottom: 25px; }
.price-card_title  { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.price-card_subtitle { color: var(--body-color); font-size: 15px; }
.price-card_price   { font-size: 40px; color: var(--theme-color); margin-bottom: 20px; }
.price-card_content { display: flex; flex-direction: column; gap: 20px; }
.available-list ul  { padding: 0; }
.available-list li  { padding: 6px 0; border-bottom: 1px solid #eee; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.available-list li:last-child { border-bottom: none; }
.available-list li i { color: var(--theme-color); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }

/* price-card piros fejléc (style2 variáns) */
.price-card.style2 {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.price-card.style2 .price-card_header {
  background-color: var(--theme-color);
  padding: 28px 36px 22px;
  margin-bottom: 0;
}
.price-card.style2 .price-card_title   { color: var(--white-color); }
.price-card.style2 .price-card_subtitle { color: rgba(255,255,255,0.85); }
.price-card.style2 .price-card_price {
  background-color: var(--theme-color);
  padding: 16px 36px 22px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.price-card.style2 .price-card_price i { color: var(--white-color); opacity: 0.9; }
.price-card.style2 .price-card_content { padding: 28px 36px; }

@media (max-width: 991px) {
  .price-box { gap: 20px; }
  .price-box-wrap { padding: 30px; }
  .price-box_list ul { gap: 10px; }
}
@media (max-width: 767px) {
  .price-box { flex-wrap: wrap; }
  .price-box_img { min-width: 100%; }
}
@media (max-width: 575px) {
  .price-box_list ul { grid-template-columns: 1fr; }
}
@media (max-width: 375px) {
  .price-box-wrap { padding: 15px; }
}

/* ============================================================
   10. SZOLGÁLTATÁS KÁRTYÁK (.testi-block)
   ============================================================ */
.testi-block {
  padding: 50px;
  background-color: var(--white-color);
  box-shadow: 0px 11px 30px rgba(0,0,0,0.02);
  margin-bottom: 30px;
}
.testi-block_profile {
  display: flex; align-items: center;
  gap: 20px 37px; margin-bottom: 30px;
}
.testi-block_img {
  position: relative; width: 80px; height: 80px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.testi-block_img img { border-radius: 50%; width: 100%; }
.testi-block_name { font-size: 22px; margin-bottom: 0; }
.testi-block_text { font-size: 18px; }

@media (max-width: 1199px) {
  .testi-block_profile { margin-bottom: 25px; }
  .testi-block_text { font-size: 16px; }
}
@media (max-width: 575px) {
  .testi-block { padding: 40px 20px; }
}

/* ============================================================
   11. GYAKORI PROBLÉMÁK (.service-block)
   ============================================================ */
.service-block { --space-x: 40px; --space-y: 40px; }
.service-block_img {
  max-width: calc(100% - var(--space-x)*2);
  margin-left: var(--space-x);
  margin-bottom: -125px;
  overflow: hidden; position: relative; z-index: 3;
}
.service-block_img img { width: 100%; transition: 0.4s ease-in-out; }
.service-block_content {
  background-color: var(--title-color);
  padding: calc(var(--space-y) + 125px) var(--space-x) var(--space-y);
  position: relative; z-index: 2;
}
.service-block_content::before {
  content: ''; width: 100%; height: 100%;
  background-color: #f6f6f6;
  position: absolute; top: 0; left: 0; z-index: -1;
  transition: 0.4s ease-in-out;
}
.service-block_number {
  color: var(--theme-color); display: block;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 5px;
}
.service-block_title { font-size: 24px; margin-bottom: 30px; }
.service-block_title a { color: inherit; }
.service-block_title a:hover { color: var(--theme-color); }
.service-block .th-btn {
  font-size: 14px; padding: 10px 20px;
  background-color: var(--white-color); color: var(--theme-color);
}
.service-block .th-btn::before,
.service-block .th-btn::after { background-color: var(--theme-color); }
.service-block .th-btn:hover { color: var(--white-color); }
.service-block:hover .service-block_img img { transform: scale(1.1); }
.service-block:hover .service-block_content::before { height: 0; }
.service-block:hover .service-block_title { color: var(--white-color); }

@media (max-width: 1199px) { .service-block { --space-x: 30px; --space-y: 30px; } }
@media (max-width: 767px)  { .service-block { --space-x: 40px; --space-y: 40px; } }

/* ============================================================
   12. RÓLAM — GYIK (.feature-media)
   ============================================================ */
.feature-media {
  display: flex; gap: 30px; margin-bottom: 50px;
}
.feature-media-wrap { max-width: 590px; }
.feature-media_num {
  width: 80px; height: 80px; min-width: 80px;
  line-height: 83px;
  color: var(--theme-color);
  background-color: #272A35;
  font-size: 30px; font-weight: bold;
  font-family: var(--title-font);
  text-align: center; border-radius: 50%;
  transition: 0.4s ease-in-out; flex-shrink: 0;
}
.feature-media_title {
  color: var(--white-color); font-size: 24px;
  margin-bottom: 10px; margin-top: -0.26em;
}
.feature-media_text { color: #8b8e95; margin-bottom: -0.5em; }
.feature-media:last-child { margin-bottom: 0; }
.feature-media:hover .feature-media_num { background-color: var(--white-color); }

@media (max-width: 1199px) {
  .feature-media { margin-bottom: 40px; }
  .feature-media-wrap { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 991px) { .feature-media_title { font-size: 22px; } }
@media (max-width: 575px) {
  .feature-media { flex-direction: column; align-items: center; }
  .feature-media_content { text-align: center; }
}

/* ============================================================
   13. KISZÁLLÓ SZERVÍZ FOLYAMAT (.process-box)
   ============================================================ */
.process-box { text-align: center; }
.process-box-wrap { position: relative; }
.process-box-wrap::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='95' height='36' viewBox='0 0 95 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M94.4679 31.6307C91.4009 25.591 89.4353 19.3076 87.1033 12.9862C86.4971 11.3363 84.2227 12.3044 84.3522 13.8361C84.5643 16.4316 85.0589 19.0168 85.7568 21.5611C80.8294 16.8547 74.746 12.8802 69.1491 9.78191C61.6434 5.62951 53.3672 2.63034 44.9206 1.10127C30.9162 -1.43292 11.288 0.651195 1.16013 11.9057C0.580827 12.5533 1.50132 13.4325 2.18539 13.1287C9.13091 10.1 15.2731 6.79511 22.9103 5.64679C30.3866 4.52542 38.3065 4.83422 45.6747 6.54438C53.4625 8.356 60.6085 11.8604 67.2732 16.2324C72.8443 19.8919 77.5181 24.4117 82.4906 28.6701C77.814 28.5231 73.0826 29.199 69.1497 31.0075C66.8375 32.0722 67.9606 35.5872 70.4517 35.2251C74.2327 34.6769 77.7848 33.6626 81.6553 33.633C85.2441 33.6022 88.6855 34.1806 92.1939 34.8647C93.8782 35.2006 95.1984 33.0684 94.4679 31.6307Z' fill='%23E81C2E' fill-opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  height: 36px; width: 96px;
  position: absolute; top: 30px; right: -48px;
}
.process-box-wrap:nth-child(even) { margin-top: 60px; }
.process-box-wrap:nth-child(even)::after { transform: rotateX(180deg); }
.process-box-wrap:last-child::after { display: none; }
.process-box_icon {
  width: 130px; height: 130px; line-height: 130px;
  background-color: var(--white-color);
  border-radius: 50%; text-align: center;
  box-shadow: 0 0 77px 10px rgba(170,170,170,0.13);
  margin: 0 auto 25px;
  transition: 0.4s ease-in-out;
}
.process-box_icon img { transition: 0.4s ease-in-out; }
.process-box_title { font-size: 24px; margin-bottom: 15px; }
.process-box_text { max-width: 285px; margin: 0 auto; }
.process-box:hover .process-box_icon { background-color: var(--theme-color); }
.process-box:hover .process-box_icon img {
  filter: brightness(0) invert(1);
  transform: rotateY(180deg);
}
@media (max-width: 991px) {
  .process-box-wrap:nth-child(even)::after { display: none; }
}
@media (max-width: 767px) {
  .process-box-wrap { margin-bottom: 40px; }
  .process-box-wrap::after { display: none; }
  .process-box-wrap:nth-child(even) { margin-top: 0; }
  .process-box-wrap:last-child { margin-bottom: 0; }
}

/* ============================================================
   14. KAPCSOLAT SZEKCIÓ
   ============================================================ */
/* Kapcsolati info kártyák */
.contact-info-wrap { margin-top: 30px; }
.contact-info {
  display: flex; flex-wrap: wrap;
  gap: 20px; margin-bottom: 30px; max-width: 400px;
}
.contact-info:last-of-type { margin-bottom: 0; }
.contact-info_icon {
  color: var(--theme-color); text-align: center; font-size: 28px;
  background-color: rgba(235,51,0,0.1);
  width: 70px; height: 70px; line-height: 65px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
}
.contact-info_icon img { width: 28px; height: 28px; object-fit: contain; }
.contact-info_title {
  font-family: var(--body-font); font-weight: 600;
  font-size: 16px; color: #787878; margin-bottom: 5px;
}
.contact-info_text {
  font-weight: 600; font-size: 18px;
  color: var(--black-color); display: block;
}
.contact-info_text a { color: inherit; }
.contact-info_text a:hover { color: var(--theme-color); }

/* Kapcsolati form */
.contact-form-wrapper {
  background-color: #F3F3F3;
  overflow: hidden;
  padding: 40px 60px 60px;
}
.contact-form-wrapper .form-title {
  font-weight: 700; font-size: 30px;
  line-height: 40px; color: #0A0A0A;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group > i {
  position: absolute; left: 20px; top: 19px;
  font-size: 16px; color: var(--theme-color);
}
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.contact-form input,
.contact-form select {
  height: 56px;
  padding: 0 20px 0 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 0;
  font-size: 16px; width: 100%;
  font-family: var(--body-font);
  transition: 0.4s ease-in-out;
  outline: none;
}
/* Select specifikusan: Bootstrap saját nyilát megtartjuk, de átszínezzük */
.contact-form select,
.contact-form .form-select {
  appearance: auto;
  -webkit-appearance: auto;
  background-image: none; /* Bootstrap default nyíl eltávolítva */
  padding-right: 40px;    /* hely a böngésző natív nyilának */
  cursor: pointer;
}
.contact-form textarea { height: 120px; padding-top: 16px; resize: vertical; }
.contact-form .form-control:hover,
.contact-form .form-control:focus,
.contact-form input:hover,
.contact-form input:focus,
.contact-form textarea:hover,
.contact-form textarea:focus,
.contact-form select:hover,
.contact-form select:focus {
  border-color: var(--theme-color) !important;
}

@media (max-width: 767px) {
  .contact-form-wrapper { padding: 25px; }
  .contact-form-wrapper .form-title { font-size: 20px; line-height: 30px; }
}

/* ============================================================
   15. LÁBLÉC (.footer-layout4)
   ============================================================ */
.footer-wrapper { position: relative; z-index: 2; }
.footer-layout4 { background-color: #161921; --body-color: #8b8e95; overflow: hidden; }

.footer-layout4 .widget-area {
  padding-top: var(--section-space);
  padding-bottom: 75px;
}
.footer-layout4 .copyright-wrap {
  padding: 30px 0;
  border-top: 1px solid #2A2F3D;
}
.footer-layout4 .th-social a {
  background-color: #252934;
  color: var(--white-color);
  border: none; border-radius: 99px;
}
.footer-layout4 .th-social a:hover { background-color: var(--theme-color); }

.footer-widget { margin-bottom: 40px; }
.footer-widget .widget_title {
  color: var(--white-color);
  border-bottom: none;
  margin: -3px 0 30px;
  padding: 0 0 14px;
  position: relative;
}
.footer-widget .widget_title::before {
  position: absolute; content: '';
  left: 0; bottom: 0; width: 20px; height: 2px;
  background-color: var(--theme-color);
}
.footer-widget .widget_title::after {
  position: absolute; content: '';
  left: 20px; bottom: 0; width: 40px; height: 2px;
  background-color: var(--theme-color);
}

.footer-text { color: #CDCDCD; margin-bottom: 25px; }
.footer-layout4 .footer-text { color: #8b8e95; }
.footer-info-title {
  font-size: 14px; font-family: var(--title-font);
  font-weight: 500; text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 10px;
}

.copyright-text { margin: 0 0 5px; color: #8b8e95; }
.copyright-text a { color: var(--theme-color); }
.copyright-text a:hover { color: var(--white-color); }

.th-social a {
  display: inline-block;
  width: 45px; height: 45px; line-height: 45px;
  background-color: var(--white-color);
  color: var(--title-color); font-size: 16px;
  text-align: center; margin-right: 5px;
  border-radius: 50%; transition: 0.4s;
}
.th-social a:hover { background-color: var(--theme-color); color: var(--white-color); }

@media (max-width: 1199px) { .footer-layout4 .copyright-wrap { padding: 25px 0; } }
@media (max-width: 991px) { .footer-layout4 .widget-area { padding-top: var(--section-space-mobile); padding-bottom: 38px; } }

/* ============================================================
   16. DEKORATÍV HÁTTÉRELEMEK
   ============================================================ */
.shape-mockup {
  position: absolute; z-index: -1; pointer-events: none;
}
.body-shape4,
.body-shape7 { position: absolute; z-index: -1; pointer-events: none; }

/* ============================================================
   17. SLICK CAROUSEL DOTS ÉS NYILAK
   ============================================================ */
.slick-dots {
  display: flex !important; justify-content: center;
  gap: 8px; margin-top: 30px; padding: 0;
  list-style: none;
}
.slick-dots li button {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: var(--gray-color);
  border: none; font-size: 0; cursor: pointer;
  transition: 0.3s;
}
.slick-dots li.slick-active button { background-color: var(--theme-color); transform: scale(1.3); }

.slick-arrow {
  width: 45px; height: 45px; border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none; cursor: pointer;
  font-size: 0; position: absolute; top: 50%; z-index: 5;
  transform: translateY(-50%);
  transition: 0.3s;
}
.slick-arrow::before { font-family: var(--icon-font); font-size: 16px; }
.slick-prev { left: -20px; }
.slick-next { right: -20px; }
.slick-prev::before { content: "\f060"; }
.slick-next::before { content: "\f061"; }
.slick-arrow:hover { background-color: var(--title-color); }

/* ============================================================
   18. ANIMÁCIÓK (WOW scroll reveal)
   ============================================================ */
.wow { visibility: hidden; }

/* ============================================================
   19. TH-VIDEO (kép a rólam szekcióban)
   ============================================================ */
.th-video { position: relative; overflow: hidden; height: 100%; min-height: 400px; }
.th-video img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   20. HEADER SOCIAL SÁV
   ============================================================ */
.header-social a { color: var(--theme-color); font-weight: 600; }
.header-social a:hover { text-decoration: underline; }

/* ============================================================
   21. HEADER-TOP-AREA (piros ferde sáv a logó mögött)
   ============================================================ */
.header-top-area {
  position: relative;
  z-index: 2;
  --shape-width: 31%;
}
.header-top-area::before,
.header-top-area::after {
  content: "";
  height: 150px;
  width: var(--shape-width);
  background-color: var(--theme-color);
  position: absolute;
  top: 0; left: 0; z-index: 0;
}
.header-top-area::before {
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
  z-index: 1;
}
.header-top-area::after {
  height: 50px;
  width: calc(var(--shape-width) + 20px);
  background-color: #c12901;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
}

.logo-style2 {
  position: relative;
  z-index: 2;
  margin-right: 148px;
  margin-top: -5px;
}

@media (max-width: 1500px) { .header-top-area { --shape-width: 28%; } }
@media (max-width: 1300px) { .logo-style2 { margin-right: 70px; } }
@media (max-width: 767px)  {
  .header-top-area::before,
  .header-top-area::after { height: 90px; margin-top: 50px; }
  .logo-style2 { margin-top: 0; }
  .header-layout4 .header-top .container { padding-left: 12px; }
}
@media (max-width: 575px)  { .logo-style2 { margin-right: 0; } }
@media (max-width: 420px)  { .logo-style2 { max-width: 170px; } }

/* ============================================================
   22. SHAPE ANIMÁCIÓK (lassan mozgó PNG díszek)
   ============================================================ */
@keyframes movingX {
  0%   { transform: translateX(0);     }
  50%  { transform: translateX(-30px); }
  100% { transform: translateX(0);     }
}
@keyframes movingY {
  0%   { transform: translateY(0);     }
  50%  { transform: translateY(-30px); }
  100% { transform: translateY(0);     }
}
@keyframes jump {
  0%   { transform: translateY(0);    }
  50%  { transform: translateY(-25px); }
  100% { transform: translateY(0);    }
}
@keyframes rotate360 {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.shape-mockup.movingX {
  animation: movingX 4s ease-in-out infinite;
}
.shape-mockup.movingY {
  animation: movingY 4s ease-in-out infinite;
}
.shape-mockup.jump {
  animation: jump 3.5s ease-in-out infinite;
}
.shape-mockup.rotate360 {
  animation: rotate360 15s linear infinite;
}

/* body-shape4 — a "Gyakori problémák" szekció háttérképe */
.body-shape4 {
  position: absolute;
  bottom: 0; left: 0;
  z-index: -1; pointer-events: none;
  max-width: 45%;
  opacity: 0.6;
}
.body-shape4 img { width: 100%; }

/* eof */

/* ============================================================
   26. TIER_SHAPE_2 a price-box-wrap mögött
   ============================================================ */
.price-section-shape {
  position: absolute;
  top: 20%;
  left: -60px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  width: 380px;
  opacity: 1;
  animation: jump 3.5s ease-in-out infinite;
}
.price-section-shape img { width: 100%; }

/* ============================================================
   27. ROAD_SHAPE_1 a Szolgáltatások (röviden & tömören) szekcióban
   ============================================================ */
.bg-smoke.position-relative::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 380px;
  height: 520px;
  background-image: url("../img/update_1/shape/road_shape_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  animation: movingY 4s ease-in-out infinite;
}

/* Tartalom a shape felett */
.bg-smoke.position-relative .container { position: relative; z-index: 1; }

/* ============================================================
   ADATKEZELÉS CHECKBOX
   ============================================================ */
.adatkezeles-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.adatkezeles-check .form-check-input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    border: 2px solid #aaa;
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--theme-color);
    background-color: #fff;
}
.adatkezeles-check .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.adatkezeles-check.check-invalid .form-check-input {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(235,51,0,0.25);
}
.adatkezeles-check .form-check-label {
    color: var(--body-color);
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}
.adatkezeles-check .form-check-label a {
    color: var(--theme-color);
    text-decoration: underline;
    font-weight: 600;
}
.adatkezeles-check .form-check-label a:hover {
    color: var(--title-color);
}

/* ============================================================
   FOOTER JOGI LINKEK
   ============================================================ */
.footer-legal-links {
    padding: 12px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 10px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.footer-legal-links a:hover { color: var(--theme-color); }
.footer-legal-sep {
    color: rgba(255,255,255,0.2);
    margin: 0 10px;
    font-size: 13px;
}

/* ============================================================
   ALOLDALAK — HERO SÁV
   ============================================================ */
.subpage-hero {
    background: var(--title-color2);
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
}
.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(235,51,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 {
    color: var(--white-color);
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 14px;
    line-height: 1.15;
}
.subpage-hero h1 span { color: var(--theme-color); }
.subpage-hero .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.subpage-hero .breadcrumb-nav a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.subpage-hero .breadcrumb-nav a:hover { color: var(--theme-color); }
.subpage-hero .breadcrumb-nav .sep {
    color: rgba(255,255,255,0.25);
    font-size: 12px;
}
.subpage-hero .breadcrumb-nav .current { color: var(--theme-color); }

/* ============================================================
   ALOLDALAK — FŐ TARTALOM
   ============================================================ */
.subpage-body {
    padding: 80px 0 100px;
    background: #f8f8f8;
}
.subpage-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 48px 52px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .subpage-card { padding: 28px 20px; }
}
.subpage-card h2 {
    font-size: 18px;
    color: var(--title-color);
    margin-top: 36px;
    margin-bottom: 10px;
    padding-left: 14px;
    border-left: 3px solid var(--theme-color);
    line-height: 1.3;
}
.subpage-card h2:first-child { margin-top: 0; }
.subpage-card p,
.subpage-card li {
    color: var(--body-color);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 8px;
}
.subpage-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}
.subpage-card ul li {
    padding-left: 20px;
    position: relative;
}
.subpage-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--theme-color);
    font-weight: 700;
}
.subpage-card strong { color: var(--title-color); }
.subpage-card a {
    color: var(--theme-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(235,51,0,0.3);
    transition: border-color 0.3s;
}
.subpage-card a:hover { border-color: var(--theme-color); }
.subpage-card code {
    background: var(--smoke-color);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--title-color);
}

.info-card {
    background: var(--smoke-color);
    border-radius: 8px;
    padding: 22px 26px;
    margin: 16px 0 24px;
    border-left: 4px solid var(--theme-color);
}
.info-card p {
    margin-bottom: 5px !important;
    font-size: 14px !important;
}
.info-card p:last-child { margin-bottom: 0 !important; }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0 24px;
}
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }
.info-grid-item {
    background: var(--smoke-color);
    border-radius: 8px;
    padding: 18px 20px;
    border-top: 3px solid var(--theme-color);
}
.info-grid-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 4px;
}
.info-grid-item .value {
    font-size: 15px;
    font-weight: 600;
    color: var(--title-color);
}
.info-grid-item .value a {
    color: var(--theme-color);
    border-bottom: none;
}

/* Aloldal fejléc egyszerűsített nav */
.subpage-header {
    background: var(--title-color2);
    padding: 0;
}
.subpage-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
.subpage-header .logo-style2 img { height: 46px; width: auto; }
