:root {
  --steel-dark: #23272c;
  --steel-mid: #4d535b;
  --steel-light: #b0bec5;
  --accent: #23a6d5;
  --hero-overlay: rgba(28,36,42,0.58);
  --gradient: linear-gradient(90deg, #8d99ae 0%, #cfd8dc 100%);
  --radius: 11px;
  --shadow: 0 4px 20px 0 rgba(30,34,41,0.13);
  --font-main: 'Titillium Web', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  background: var(--steel-dark);
  color: var(--steel-light);
  margin: 0;
  padding: 0;
  padding-top: 54px;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: #fff;
}

.container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 14px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--steel-mid);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* vagy: gap: 8px; */
}

html {
  scroll-padding-top: 70px; /* vagy a header magassága */
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;  /* lehet kisebb, pl. 32–36px */
  padding: 0;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  margin-top: 13px;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.nav a {
  font-weight: 600;
  color: var(--steel-light);
  font-size: 1rem;
  padding: 4px 0;
}
.nav a:hover {
  color: var(--accent);
}

.hero-advanced {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 7px;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(28%) brightness(0.68) contrast(1.15);
}
.hero-text-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.hero-text-block {
  width: 100%;
  background: var(--hero-overlay);
  padding: 22px 11px 16px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-text-block h1 {
  font-size: 1.28rem;
  margin-bottom: 9px;
  color: #fff;
  line-height: 1.18;
}
.steel-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero-text-block p {
  font-size: 1.02rem;
  margin-bottom: 18px;
  color: #e0e7ef;
}

.btn-main {
  background: var(--gradient);
  color: var(--steel-dark);
  border: none;
  font-weight: 600;
  padding: 11px 19px;
  border-radius: 7px;
  font-size: 1rem;
}

.btn-main.btn-wide {
  width: 100%;
  display: block;
}

.btn-main:hover {
  background: var(--accent);
  color: #fff;
}

.services-modern {
  background: #1d2227;
  padding: 33px 0 21px 0;
}
.services-modern h2 {
  font-size: 1.5rem;
  color: #e3e6ec;
  margin-bottom: 18px;
}
.services-list-modern {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.service-card {
  background: #242933;
  padding: 18px 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--steel-light);
  transition: transform 0.14s, box-shadow 0.14s;
}
.service-card i {
  color: var(--accent);
  font-size: 2.0rem;
  margin-bottom: 5px;
}
.service-card h3 {
  margin: 7px 0 7px 0;
  color: #fff;
}

.references-modern {
  background: #23272c;
  padding: 26px 0 20px 0;
}
.references-modern h2 {
  font-size: 1.5rem;
  color: #e3e6ec;
  margin-bottom: 18px;
}
.references-list-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reference-card {
  background: #252d34;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 12px 0;
}
.reference-card img {
  width: 100%;
  object-fit: cover;
  height: 120px;
}
.reference-card p {
  margin-top: 6px;
  color: #b0bec5;
}

.contact-modern {
  background: #1e232a;
  padding: 22px 0;
}
.contact-flex {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-modern {
  background: #21262e;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 21px 11px 11px 11px;
}
.contact-form-modern h2 {
  font-size: 1.5rem;
  color: #e3e6ec;
  margin-bottom: 18px;
}
.input-wrap {
  position: relative;
  margin-bottom: 13px;
}
.input-wrap i {
  position: absolute;
  top: 12px;
  left: 11px;
  color: var(--accent);
  font-size: 1.1rem;
}
.input-wrap input,
.input-wrap textarea {
  width: 90%;
  padding: 8px 8px 8px 32px;
  background: #23272c;
  border: 1.2px solid #393f46;
  border-radius: 6px;
  color: #e3e6ec;
  font-size: 1rem;
}
.input-wrap textarea {
  min-height: 55px;
  resize: vertical;
}
.contact-info-modern {
  color: var(--steel-light);
  font-size: 1.02rem;
  background: #1d2126;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 21px 11px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-modern i {
  color: var(--accent);
  margin-right: 7px;
}

.footer {
  background: #16191d;
  color: #cfd8dc;
  text-align: center;
  padding: 12px 0;
  font-size: 0.96rem;
}

/* Hamburger alap (csak mobilra, max-width: 950px) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(35, 166, 213, 0.15); /* accent árnyalat, halvány */
  border: none;
  border-radius: 9px;
  box-shadow: 0 2px 12px #1e222933;
  cursor: pointer;
  margin-left: auto;
  z-index: 1101;
  transition: background 0.23s;
  position: relative;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  border-radius: 2px;
  background: var(--accent);
  transition: all 0.33s cubic-bezier(.63,.09,.41,.99);
  box-shadow: 0 1px 3px #23272c44;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hamburger csak mobilon */
@media (min-width: 951px) {
  .hamburger { display: none; }
}

/* Mobil menü overlay */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 80vw;
  max-width: 350px;
  height: 100vh;
  background: rgba(28,36,42,0.98);
  box-shadow: -4px 0 18px #1e2229aa;
  padding: 72px 32px 18px 28px;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,.11,.43,.97);
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.27rem;
  color: var(--steel-light);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 7px 0;
  transition: color 0.23s;
  border-bottom: 1.5px solid #2d3a4333;
}
.mobile-menu a:hover {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
}

/* Mobilon: nav elrejtése */
@media (max-width: 950px) {
  .nav { display: none !important; }
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 14px;
  z-index: 1300;
  width: 42px;
  height: 42px;
  background: rgba(35, 166, 213, 0.14);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px #1e22293a;
  cursor: pointer;
  outline: none;
  transition: background 0.23s, box-shadow 0.23s, opacity 0.26s;
  opacity: 0.88;
  padding: 0;
}
#backToTop svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}
#backToTop:hover {
  background: var(--accent);
  box-shadow: 0 8px 32px #23a6d5aa;
  opacity: 1;
}
#backToTop svg path {
  stroke: var(--accent);
  transition: stroke 0.23s;
}
#backToTop:hover svg path {
  stroke: #fff;
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-illust {
  margin-bottom: 18px;
  max-width: 90%;   /* vagy 220px, ha nagyobbat szeretnél */
  width: 100%;
}

.contact-illust img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 6px 28px #1e22293a;
  object-fit: cover;
}

.references-cta {
  margin: 32px 0 0 0;
  text-align: center;
}
.references-cta p {
  font-size: 1.13rem;
  color: #e0e7ef;
  margin-bottom: 15px;
}
.references-cta .btn-main {
  font-size: 1.08rem;
  padding: 13px 28px;
  margin: 0 auto;
  display: inline-block;
}

.form-flex-row {
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  margin-top: 10px;
  align-items: flex-start;
}

.gdpr-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.01rem;
  color: #b0bec5;
  margin: 14px 0 0 0;
  line-height: 1.2;
}

.gdpr-wrap input[type="checkbox"] {
  accent-color: #23a6d5;
  width: 18px;
  height: 18px;
}

.gdpr-wrap a {
  color: #23a6d5;
  text-decoration: underline;
  transition: color 0.18s;
}
.gdpr-wrap a:hover {
  color: #fff;
}

.contact-form-modern button[type="submit"] {
  display: block;
  margin: 20px 0 0 0;
  /* Ha mobilon inkább középre szeretnéd: margin: 20px auto 0 auto; */
}

/* GLightbox modal – belső szöveg mindig teljes szélesség, paddinggel */
.glightbox-container .gslide-inline > div,
.glightbox-container .gslide-inline > * {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  /* Csak padding maradjon rajta! */
}

/* GLightbox adatvédelmi modal szöveg színe */
.gslide-inline,
.gslide-inline *,
.glightbox-container .gslide-inline,
.glightbox-container .gslide-inline * {
  color: #23272c !important;
}

/* Ha a címek legyenek még sötétebbek vagy erősebbek: */
.gslide-inline h1, 
.gslide-inline h2, 
.gslide-inline h3, 
.gslide-inline h4, 
.gslide-inline h5, 
.gslide-inline h6 {
  color: #212121 !important;
  font-weight: 700 !important;
}

/* Ha a linkek se legyenek világoskékek, hanem klasszikus kék: */
.gslide-inline a {
  color: #2370d5 !important;
  text-decoration: underline;
}

.cta-offer-simple {
  text-align: center;
  padding: 36px 8px 32px 8px;
  background: linear-gradient(90deg, #23272c 0%, #23a6d5 100%);
  margin: 0 0 0 0;
  border-radius: 0 0 32px 32px;
}

.cta-offer-simple p {
  color: #fff;
  font-size: 1.32rem;
  margin-bottom: 18px;
  font-weight: 500;
}

.cta-offer-simple b {
  font-size: 1.18em;
  letter-spacing: 0.2px;
  color: #fff;
}

.cta-offer-simple span {
  display: block;
  margin-top: 4px;
  font-size: 1.03em;
  font-weight: 400;
  color: #e5ecf3;
}

/* Cookiebar mindig fixen a képernyő alján, mobilon is! */
.cookiebar {
  position: fixed !important;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(90deg, #23272c 0%, #23a6d5 100%);
  color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 20px #1e222940;
  font-size: 0.98rem;
  transition: transform 0.5s cubic-bezier(.7,.1,.6,1);
}

.cookiebar-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: stretch;
  padding: 15px 8px 10px 8px;
  box-sizing: border-box;
}

.cookiebar.hide {
  transform: translateY(120%);
  pointer-events: none;
}

.cookiebar-text {
  text-align: left;
  margin-bottom: 2px;
  line-height: 1.35;
  word-break: break-word;
}

.cookiebar-btn {
  width: 100%;
  min-width: 0;
  margin-left: 0;
  padding: 11px 0;
  font-size: 1.05rem;
  border-radius: 7px;
  font-weight: 600;
}

/* A tartalom ne legyen kitakarva alul! */
body {
  padding-bottom: 76px;
}

  .service-img {
    width: 60%;
    margin-bottom: 12px;
  }

.arajanlat-form {
  max-width: 96vw;
  margin: 20px auto 0 auto;
  background: rgba(32,40,48,0.99);
  border-radius: 13px;
  padding: 12px 3vw 8px 3vw;
  box-shadow: 0 2px 14px #0002;
}

.arajanlat-form h2 {
  font-size: 1.5rem;
  color: #e3e6ec;
  margin-bottom: 18px;
}

.arajanlat-input-wrap {
  display: flex;
  align-items: center;
  background: #232932;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 2px 6px;
  border: 1.2px solid #374150;
  transition: border 0.2s;
}
.arajanlat-input-wrap:focus-within {
  border-color: #23a6d5;
}
.arajanlat-input-wrap i {
  color: #23a6d5;
  font-size: 1.13rem;
  margin-right: 7px;
  flex-shrink: 0;
}

.arajanlat-input,
.arajanlat-select,
.arajanlat-textarea {
  background: transparent;
  border: none;
  outline: none;
  color: #e1e6eb;
  font-size: 1rem;
  padding: 11px 2px 11px 0;
  width: 100%;
  font-family: inherit;
  resize: none;
}
.arajanlat-select {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  cursor: pointer;
}
.arajanlat-select:invalid {
  color: #8d99a5;
}
.arajanlat-textarea {
  min-height: 70px;
}

.arajanlat-gdpr-wrap {
  margin-bottom: 13px;
  font-size: 0.94rem;
  color: #e1e6eb;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.arajanlat-gdpr-wrap input[type="checkbox"] {
  accent-color: #23a6d5;
  margin-top: 2px;
}
.arajanlat-gdpr-wrap a {
  color: #23a6d5;
  text-decoration: underline;
}
.arajanlat-form button.btn-main {
  margin-top: 5px;
  width: 100%;
  padding: 11px 0;
  border-radius: 9px;
  background: linear-gradient(92deg,#dde6eb 0%,#b7e2f9 90%);
  color: #232932;
  font-size: 1.03rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: box-shadow 0.15s, background 0.2s;
  box-shadow: 0 1px 10px #23293212;
}
.arajanlat-form button.btn-main:hover {
  background: linear-gradient(91deg,#c4f2fd 8%,#b7e2f9 100%);
  box-shadow: 0 2px 18px #23a6d522;
}

/* --- CSILLAGOS ÉRTÉKELÉS BLOKK: MOBIL --- */
.rating-widget {
  background: #232932;
  border-radius: 14px;
  box-shadow: 0 3px 14px #23a6d533;
  max-width: 85vw;
  width: 85%;
  margin: 32px auto 24px auto;
  text-align: center;
  padding: 18px 4vw 12px 4vw;
  position: relative;
}
.rating-widget::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(90deg,#23a6d525 0%,#8d99ae14 100%);
  box-shadow: 0 7px 30px #23a6d53c;
  pointer-events: none;
}
.rating-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFD600;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}
.rating-description {
  font-size: 0.99rem;
  color: #e3e6ec;
  margin-bottom: 13px;
}
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 8px;
  margin-top: 4px;
  user-select: none;
}
.star {
  font-size: 1.34rem;
  color: #b0b6bb;
  cursor: pointer;
  transition: color 0.16s, transform 0.12s;
  filter: drop-shadow(0 1.5px 4px #23293221);
}
.star.full,
.star.selected {
  color: #FFD600;
  text-shadow: 0 2px 8px #ffd60044;
  transform: scale(1.07);
}
.star:hover,
.star.full:hover {
  color: #FFF176;
  transform: scale(1.14) rotate(-6deg);
}
.rating-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 1.01rem;
  color: #fff;
  margin-bottom: 7px;
  margin-top: 2px;
}
.rating-value {
  font-size: 1.09rem;
  color: #FFD600;
  font-weight: 700;
  letter-spacing: 0.45px;
}
.rating-count {
  font-size: 0.97rem;
  color: #cfd8dc;
}
  .rating-distribution {
    text-align: left !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 350px;
    width: 100%;
  }
  .rating-distribution div {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    gap: 8px;
  }
.stars-text {
  width: 64px;         /* 60-68px tartományban tökéletes, próbáld ki melyik tetszik jobban! */
  text-align: right;
  color: #FFD600;
  font-family: 'Titillium Web', Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 1.08em;
  display: inline-block;
  flex-shrink: 0;
}

.stars-bar {
  display: inline-block;
  height: 9px;         /* legyen picit vastagabb, modernebb hatás */
  background: linear-gradient(90deg, #FFD600 80%, #f1efb3 100%);
  border-radius: 4px;
  margin: 0 9px 0 9px; /* kicsit nagyobb margó, elegánsabb */
  min-width: 16px;     /* minimum szélesség, hogy ne törjön össze */
  max-width: 120px;    /* mobilon se legyen túl hosszú */
  flex-shrink: 0;
  transition: width 0.3s;
}

  .stars-count {
    min-width: 20px;
    text-align: right;
    color: #fff;
    font-size: 1em;
    display: inline-block;
  }

.rating-thankyou {
  margin-top: 11px;
  font-size: 0.99rem;
  color: #FFD600;
  font-weight: 600;
  animation: fadeIn 0.8s;
  letter-spacing: 0.5px;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(9px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Modern árajánlatkérő mobil optimalizált stílusok */
/* Ezeket add hozzá a mobil_style.css végéhez */

/* Modern árajánlatkérő alap stílusok mobilra */
.modern-arajanlat-form {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px 15px;
    border-radius: 20px;
    margin: 15px 8px;
    max-width: calc(100vw - 16px);
    color: #fff;
    font-family: var(--font-main);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.modern-arajanlat-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #23a6d5, #23d5ab);
    border-radius: 20px 20px 0 0;
}

/* Form header mobil */
.modern-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.modern-form-header h2 {
    font-size: 1.8rem;
    color: #23a6d5;
    margin-bottom: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.modern-form-header p {
    color: #e1e6eb;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 100%;
}

/* Elemválasztó kártyák mobil */
.element-selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.element-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.element-card-modern:hover,
.element-card-modern:active {
    transform: translateY(-3px);
    border-color: #23a6d5;
    box-shadow: 0 8px 25px rgba(35, 166, 213, 0.4);
}

.element-card-modern.selected {
    border-color: #23d5ab;
    background: rgba(35, 213, 171, 0.15);
    box-shadow: 0 8px 25px rgba(35, 213, 171, 0.5);
}

.element-icon-modern {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #23a6d5;
    transition: all 0.3s ease;
}

.element-card-modern.selected .element-icon-modern {
    color: #23d5ab;
    transform: scale(1.1);
}

.element-card-modern h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.element-card-modern p {
    color: #b0bec5;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

/* Méret szekció mobil */
.size-section {
    display: none;
    background: rgba(35, 166, 213, 0.1);
    padding: 25px 15px;
    border-radius: 15px;
    margin: 25px 0;
    border: 1px solid rgba(35, 166, 213, 0.2);
    animation: slideDown 0.5s ease;
}

.size-section.show {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.size-section h3 {
    color: #23d5ab;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Méret elemek grid mobil */
.size-elements-grid {
    display: grid;
    gap: 20px;
}

.size-element-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.size-element-group h4 {
    color: #23d5ab;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Méret input sorok mobil */
.size-inputs-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.size-input-group {
    margin-bottom: 0;
}

.size-input-group label {
    display: block;
    color: #e1e6eb;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.size-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: var(--font-main);
}

.size-input:focus {
    outline: none;
    border-color: #23a6d5;
    box-shadow: 0 0 15px rgba(35, 166, 213, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.size-input::placeholder {
    color: #8793a0;
}

/* Kapcsolat szekció mobil */
.contact-section {
    margin-top: 30px;
}

.contact-section h3 {
    color: #23d5ab;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-inputs-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

/* Input wrapper modern mobil */
.input-wrap-modern {
    position: relative;
}

.input-wrap-modern i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #23a6d5;
    font-size: 1.1rem;
    z-index: 2;
}

.modern-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: var(--font-main);
}

.modern-input:focus {
    outline: none;
    border-color: #23a6d5;
    box-shadow: 0 0 20px rgba(35, 166, 213, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.modern-input::placeholder {
    color: #8793a0;
}

.modern-textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 15px;
}

/* GDPR wrapper mobil */
.gdpr-wrap-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.gdpr-checkbox-modern {
    width: 22px;
    height: 22px;
    border: 2px solid #23a6d5;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.gdpr-checkbox-modern.checked {
    background: linear-gradient(135deg, #23a6d5, #23d5ab);
    border-color: #23d5ab;
}

.gdpr-checkbox-modern.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.gdpr-wrap-modern label {
    color: #e1e6eb;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.gdpr-wrap-modern a {
    color: #23a6d5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gdpr-wrap-modern a:hover {
    color: #23d5ab;
    text-decoration: underline;
}

/* Submit gomb mobil */
.submit-btn-modern {
    background: linear-gradient(135deg, #23a6d5, #23d5ab);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(35, 166, 213, 0.4);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
}

.submit-btn-modern:hover,
.submit-btn-modern:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(35, 166, 213, 0.6);
}

.submit-btn-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Kis képernyő optimalizálás (320px-480px) */
@media (max-width: 480px) {
    .modern-arajanlat-form {
        padding: 20px 12px;
        margin: 10px 5px;
        border-radius: 15px;
    }
    
    .modern-form-header h2 {
        font-size: 1.6rem;
    }
    
    .modern-form-header p {
        font-size: 0.95rem;
    }
    
    .element-card-modern {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .element-icon-modern {
        font-size: 2.4rem;
    }
    
    .element-card-modern h4 {
        font-size: 1rem;
    }
    
    .element-card-modern p {
        font-size: 0.85rem;
    }
    
    .size-section {
        padding: 20px 12px;
    }
    
    .size-element-group {
        padding: 15px 12px;
    }
    
    .modern-input {
        padding: 12px 12px 12px 45px;
        font-size: 0.95rem;
    }
    
    .input-wrap-modern i {
        left: 12px;
        font-size: 1rem;
    }
    
    .submit-btn-modern {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .gdpr-wrap-modern label {
        font-size: 0.85rem;
    }
}

/* Nagyon kis képernyő (max 320px) */
@media (max-width: 320px) {
    .modern-arajanlat-form {
        padding: 15px 8px;
        margin: 8px 3px;
    }
    
    .modern-form-header h2 {
        font-size: 1.4rem;
    }
    
    .element-card-modern {
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .element-icon-modern {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .size-section {
        padding: 15px 8px;
    }
    
    .size-element-group {
        padding: 12px 8px;
    }
}

/* Landscape mobil orientáció */
@media (max-height: 500px) and (orientation: landscape) {
    .element-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .element-card-modern {
        min-height: 80px;
        padding: 12px 8px;
    }
    
    .element-icon-modern {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .modern-form-header {
        margin-bottom: 20px;
    }
    
    .size-section {
        margin: 15px 0;
    }
}

/* Touch optimalizálás */
@media (pointer: coarse) {
    .element-card-modern {
        min-height: 130px;
    }
    
    .gdpr-checkbox-modern {
        width: 26px;
        height: 26px;
    }
    
    .submit-btn-modern {
        min-height: 55px;
        padding: 18px 30px;
    }
    
    .size-input,
    .modern-input {
        min-height: 48px;
    }
}

/* FOOTER MOBILE STYLES */
.footer-modern {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-mid) 100%);
    color: var(--steel-light);
    padding: 36px 0 18px;
    border-top: 2px solid var(--accent);
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}

.footer-container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-right: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--steel-light);
    margin-bottom: 20px;
    text-align: center;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: var(--steel-dark);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(35, 166, 213, 0.2);
    font-size: 1rem;
}

.footer-cta:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(35, 166, 213, 0.3);
}

.footer-cta i {
    margin-right: 7px;
    width: 16px;
    height: 16px;
}

.footer-section h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--steel-light);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.98rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-links a i {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.contact-info {
    background: rgba(35, 166, 213, 0.08);
    padding: 18px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(35, 166, 213, 0.15);
    backdrop-filter: blur(5px);
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--steel-light);
    font-size: 0.95rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 16px;
    height: 16px;
    margin-right: 9px;
    color: var(--accent);
}

.contact-item a {
    color: var(--steel-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(176, 190, 197, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-copyright {
    color: rgba(176, 190, 197, 0.8);
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-made-by {
    display: flex;
    align-items: center;
    background: rgba(35, 166, 213, 0.1);
    padding: 7px 16px;
    border-radius: 18px;
    border: 1px solid rgba(35, 166, 213, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    font-size: 0.92rem;
}

.footer-made-by:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(35, 166, 213, 0.2);
    background: rgba(35, 166, 213, 0.15);
}

.footer-made-by i {
    width: 16px;
    height: 16px;
    margin-right: 7px;
    color: #ff6b6b;
}

.footer-made-by span {
    color: var(--steel-light);
}

.footer-made-by strong {
    color: var(--accent);
    font-weight: 700;
    margin-left: 4px;
}

.element-icon-modern img {
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
}

@media (max-width: 950px) {
  .element-icon-modern img {
    width: 300px;
  }
}

/* Nagyon kis kijelző */
@media (max-width: 400px) {
  .element-icon-modern img {
    width: 160px;
  }
}
