/* Modern steel look desktop design */
:root {
  --steel-dark: #23272c;
  --steel-mid: #4d535b;
  --steel-light: #b0bec5;
  --accent: #23a6d5;
  --hero-overlay: rgba(28,36,42,0.50);
  --gradient: linear-gradient(90deg, #8d99ae 0%, #cfd8dc 100%);
  --radius: 12px;
  --shadow: 0 4px 24px 0 rgba(30,34,41,0.09);
  --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: 68px;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.header .container {
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  height: 70px;         /* vagy ami jól néz ki a fejlécedben */
  padding: 0;
}
.logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  /* box-shadow, ha kell */
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  font-weight: 600;
  color: var(--steel-light);
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover {
  color: var(--accent);
}
.nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav a:hover::after {
  width: 100%;
}

.hero-advanced {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 180px;   /* lehet, hogy akarod, hogy mobilon ne legyen túl lapos */
  max-height: 600px;   /* desktopon ne legyen túl nagy */
  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(25%) brightness(0.65) contrast(1.15);
}
.hero-text-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-text-block {
  max-width: 1000px;
  background: var(--hero-overlay);
  padding: 38px 44px 32px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-text-block h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: #fff;
}
.steel-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero-text-block p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #e0e7ef;
}

.btn-main {
  background: var(--gradient);
  color: var(--steel-dark);
  border: none;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 8px;
  box-shadow: 0 2px 10px #232a3014;
  font-size: 1.18rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

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

.services-modern {
  background: #1d2227;
  padding: 56px 0 46px 0;
}
.services-modern h2 {
  font-size: 2.0rem;
  color: #e3e6ec;
  margin-bottom: 32px;
}
.services-list-modern {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.service-card {
  flex: 1 1 210px;
  background: #242933;
  padding: 28px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--steel-light);
  transition: transform 0.16s, box-shadow 0.16s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 30px #23303945;
}
.service-card i {
  color: var(--accent);
  font-size: 2.3rem;
  margin-bottom: 7px;
}
.service-card h3 {
  margin: 9px 0 8px 0;
  color: #fff;
}

.references-modern {
  background: #23272c;
  padding: 52px 0 44px 0;
}
.references-modern h2 {
  font-size: 2.0rem;
  color: #e3e6ec;
  margin-bottom: 32px;
}
.references-list-modern {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.reference-card {
  flex: 1 1 260px;
  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 18px 0;
}
.reference-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 180px;
}
.reference-card p {
  margin-top: 10px;
  color: #b0bec5;
}

.contact-modern {
  background: #1e232a;
  padding: 46px 0;
}
.contact-flex {
  display: flex;
  gap: 46px;
}
.contact-form-modern {
  background: #21262e;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 34px 18px 34px;
  flex: 1.2;
}
.contact-form-modern h2 {
  font-size: 2.0rem;
  color: #e3e6ec;
  margin-bottom: 32px;
}
.input-wrap {
  position: relative;
  margin-bottom: 20px;
}
.input-wrap i {
  position: absolute;
  top: 13px;
  left: 13px;
  color: var(--accent);
  font-size: 1.1rem;
}
.input-wrap input,
.input-wrap textarea {
  width: 90%;
  padding: 11px 11px 11px 38px;
  background: #23272c;
  border: 1.5px solid #393f46;
  border-radius: 6px;
  color: #e3e6ec;
  font-size: 1rem;
  margin-bottom: 2px;
}
.input-wrap textarea {
  min-height: 78px;
  resize: vertical;
}
.contact-info-modern {
  flex: 0.8;
  color: var(--steel-light);
  font-size: 1.13rem;
  background: #1d2126;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  justify-content: center;
}
.contact-info-modern i {
  color: var(--accent);
  margin-right: 10px;
}

.footer {
  background: #16191d;
  color: #cfd8dc;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-top: 0;
}

  .mobile-menu { display: none !important; }
  .nav { display: flex; }
  .hamburger { display: none !important; }

#backToTop {
  display: none; /* Alapból rejtve */
  position: fixed;
  bottom: 38px;
  right: 28px;
  z-index: 1300;
  width: 52px;
  height: 52px;
  background: rgba(35, 166, 213, 0.12);
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 28px #1e22293c;
  cursor: pointer;
  outline: none;
  transition: background 0.23s, box-shadow 0.23s, opacity 0.26s;
  opacity: 0.88;
  padding: 0;
}
#backToTop svg {
  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: 80%;   /* 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;
}

.gdpr-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.02rem;
  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;
  /* Igazítja jobbra, ha szeretnéd középre: 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! */
}

.gslide-inline {
    max-height: 90vh !important;
    overflow-y: auto !important;
}

#adatvedelem-box > div {
    /* A belső divban csak padding legyen! */
    padding: 32px 40px 32px 40px;
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    background: transparent;
}

body.glightbox-open {
    overflow: hidden !important;
}

/* 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 {
  position: fixed;
  bottom: 0;
  left: 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: 1.01rem;
  transition: transform 0.5s cubic-bezier(.7,.1,.6,1);
}

.cookiebar-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 18px 20px 16px 20px;
}

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

.cookiebar-text {
  flex: 1 1 auto;
  text-align: left;
}

.cookiebar-btn {
  padding: 8px 26px;
  font-size: 1.01rem;
  border-radius: 7px;
  font-weight: 600;
  margin-left: 12px;
  min-width: 120px;
}

.service-img {
    width: 120px;   /* vagy ahogy tetszik, pl. 60-100px */
    height: auto;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.arajanlat-form {
  max-width: 50vw;
  margin: 32px auto 0 auto;
  background: rgba(32,40,48,0.98);
  border-radius: 16px;
  padding: 28px 26px 20px 26px;
  box-shadow: 0 2px 20px #0002;
}

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

.arajanlat-input-wrap {
  display: flex;
  align-items: center;
  background: #232932;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 2px 8px;
  border: 1.5px solid #374150;
  transition: border 0.2s;
}

.arajanlat-input-wrap:focus-within {
  border-color: #23a6d5;
}

.arajanlat-input-wrap i {
  color: #23a6d5;
  font-size: 1.25rem;
  margin-right: 8px;
  flex-shrink: 0;
}

.arajanlat-input,
.arajanlat-select,
.arajanlat-textarea {
  background: transparent;
  border: none;
  outline: none;
  color: #e1e6eb;
  font-size: 1.07rem;
  padding: 12px 4px 12px 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: 84px;
}

.arajanlat-gdpr-wrap {
  margin-bottom: 17px;
  font-size: 0.98rem;
  color: #e1e6eb;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.arajanlat-gdpr-wrap input[type="checkbox"] {
  accent-color: #23a6d5;
  margin-top: 3px;
}
.arajanlat-gdpr-wrap a {
  color: #23a6d5;
  text-decoration: underline;
}

.arajanlat-form button.btn-main {
  margin-top: 6px;
  width: 100%;
  padding: 12px 0;
  border-radius: 12px;
  background: linear-gradient(92deg,#dde6eb 0%,#b7e2f9 90%);
  color: #232932;
  font-size: 1.11rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: box-shadow 0.15s, background 0.2s;
  box-shadow: 0 2px 18px #23293211;
}
.arajanlat-form button.btn-main:hover {
  background: linear-gradient(91deg,#c4f2fd 8%,#b7e2f9 100%);
  box-shadow: 0 2px 22px #23a6d522;
}

/* --- CSILLAGOS ÉRTÉKELÉS BLOKK: DESKTOP --- */
.rating-widget {
  background: #232932;
  border-radius: 24px;
  box-shadow: 0 6px 32px #23a6d544;
  max-width: 740px;
  width: 100%;
  margin: 64px auto 48px auto;
  text-align: center;
  padding: 48px 56px 38px 56px;
  position: relative;
  transition: box-shadow 0.22s;
}
.rating-widget::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(90deg,#23a6d525 0%,#8d99ae14 100%);
  box-shadow: 0 12px 60px #23a6d55c;
  pointer-events: none;
}
.rating-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFD600;
  margin-bottom: 13px;
  letter-spacing: 0.7px;
}
.rating-description {
  font-size: 1.22rem;
  color: #e3e6ec;
  margin-bottom: 26px;
}
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-bottom: 12px;
  margin-top: 10px;
  user-select: none;
}
.star {
  font-size: 2.85rem;
  color: #b0b6bb;
  cursor: pointer;
  transition: color 0.19s, transform 0.13s;
  filter: drop-shadow(0 3px 7px #23293224);
}
.star.full,
.star.selected {
  color: #FFD600;
  text-shadow: 0 2px 14px #ffd60049;
  transform: scale(1.13);
}
.star:hover,
.star.full:hover {
  color: #FFF176;
  transform: scale(1.24) rotate(-8deg);
}
.rating-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1.16rem;
  color: #fff;
  margin-bottom: 13px;
  margin-top: 4px;
}
.rating-value {
  font-size: 1.23rem;
  color: #FFD600;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.rating-count {
  font-size: 1.02rem;
  color: #cfd8dc;
}
.rating-distribution {
  margin: 24px auto 8px auto;
  text-align: left;
  max-width: 420px;
}
.rating-distribution div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px 0;
  font-size: 1.11rem;
}
.stars-text {
  width: 74px;
  text-align: right;
  color: #FFD600;
  font-family: 'Titillium Web', Arial, sans-serif;
  letter-spacing: 1.2px;
  font-size: 1.09em;
}
.stars-bar {
  display: inline-block;
  height: 13px;
  background: linear-gradient(90deg, #FFD600 80%, #f1efb3 100%);
  border-radius: 4px;
  margin: 0 7px 0 7px;
  min-width: 10px;
  max-width: 200px;
  transition: width 0.3s;
}
.stars-count {
  min-width: 22px;
  text-align: right;
  color: #fff;
  font-size: 1.01em;
}
.rating-thankyou {
  margin-top: 27px;
  font-size: 1.15rem;
  color: #FFD600;
  font-weight: 600;
  animation: fadeIn 0.8s;
  letter-spacing: 0.5px;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(12px);}
  100% { opacity: 1; transform: translateY(0);}
}

.modern-arajanlat-form {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 40px;
    border-radius: 25px;
    margin: 40px auto;
    max-width: 1200px;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modern-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.modern-form-header h2 {
    font-size: 2.5rem;
    color: #23a6d5;
    margin-bottom: 15px;
    font-weight: 900;
}

.modern-form-header p {
    color: #e1e6eb;
    font-size: 1.1rem;
    line-height: 1.6;
}

.element-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.element-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.element-card-modern.selected {
    border-color: #23d5ab;
    background: rgba(35, 213, 171, 0.1);
}

.element-icon-modern {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #23a6d5;
}

.element-card-modern.selected .element-icon-modern {
    color: #23d5ab;
}

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

.element-card-modern p {
    color: #b0bec5;
    font-size: 0.85rem;
}

.size-section {
    display: none;
    background: rgba(35, 166, 213, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(35, 166, 213, 0.2);
}

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

.size-section h3 {
    color: #23d5ab;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4rem;
}

.size-elements-grid {
    display: grid;
    gap: 25px;
}

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

.size-element-group h4 {
    color: #23d5ab;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.size-inputs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.size-input-group {
    margin-bottom: 15px;
}

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

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

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

.contact-section {
    margin-top: 40px;
}

.contact-section h3 {
    color: #23d5ab;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4rem;
}

.contact-inputs-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.input-wrap-modern {
    position: relative;
}

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

.modern-input {
    width: 94%;
    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;
}

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

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

.modern-textarea {
    min-height: 120px;
    resize: vertical;
}

.gdpr-wrap-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
}

.gdpr-checkbox-modern {
    width: 24px;
    height: 24px;
    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: #23a6d5;
}

.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.95rem;
    line-height: 1.4;
    cursor: pointer;
}

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

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

.submit-btn-modern {
    background: linear-gradient(135deg, #23a6d5, #23d5ab);
    color: white;
    border: none;
    padding: 18px 40px;
    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 20px rgba(35, 166, 213, 0.4);
}

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

/* FOOTER DESKTOP STYLES */
.footer-modern {
    background: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-mid) 100%);
    color: var(--steel-light);
    padding: 48px 0 24px;
    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: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* Nagy képernyőkön (1400px+) még több padding */
@media (min-width: 1400px) {
    .footer-container {
        padding: 0 60px;
    }
}

/* Extra nagy képernyőkön (1800px+) maximális padding */
@media (min-width: 1800px) {
    .footer-container {
        padding: 0 120px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 36px;
}

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

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

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

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

.footer-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--steel-light);
    margin-bottom: 22px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: var(--steel-dark);
    padding: 11px 24px;
    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: 1.05rem;
}

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

.footer-cta i {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

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

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

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

.contact-info {
    background: rgba(35, 166, 213, 0.08);
    padding: 22px 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(35, 166, 213, 0.15);
    backdrop-filter: blur(5px);
}

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

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

.contact-item i {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    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: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

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

.footer-made-by {
    display: flex;
    align-items: center;
    background: rgba(35, 166, 213, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    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.98rem;
}

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

.footer-made-by i {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    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 {
    width: 100%;   /* ikon méret */
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
}
