/* ════════════════════════════════════════════════
   RideForUp – style.css
   Luxury dark × gold aesthetic
   ════════════════════════════════════════════════ */

:root {
  --bg:       #08090d;
  --bg2:      #0f1018;
  --bg3:      #161721;
  --bg4:      #1c1d2a;
  --gold:     #c9a84c;
  --gold2:    #e8c96a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-glow:rgba(201, 168, 76, 0.25);
  --text:     #f0ede8;
  --text-dim: rgba(240, 237, 232, 0.52);
  --border:   rgba(201, 168, 76, 0.16);
  --border2:  rgba(255, 255, 255, 0.06);
  --radius:   14px;
  --radius-sm:8px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.55);
}

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height .35s, background .35s;
}
nav.scrolled {
  height: 60px;
  background: rgba(8, 9, 13, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 1.7rem; list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #080900 !important;
  padding: .45rem 1.15rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: .78rem !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--gold2) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--gold-glow) !important;
}

/* Nyelvváltó – egyetlen, mindig látható toggle */
.nav-right {
  display: flex; align-items: center; gap: .9rem;
}

.lang-toggle {
  position: relative;
  display: inline-flex; align-items: center;
  width: 66px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  padding: 3px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle .lt-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 30px; height: 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 2px 8px var(--gold-glow);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.lang-toggle.is-en .lt-thumb { transform: translateX(30px); }
.lang-toggle .lt-labels {
  position: relative; z-index: 2;
  display: flex; width: 100%;
  font-size: .66rem; font-weight: 700; letter-spacing: .04em;
  font-family: var(--font-body);
}
.lang-toggle .lt-labels span {
  width: 50%; text-align: center;
  color: var(--text-dim);
  transition: color .3s;
}
.lang-toggle:not(.is-en) .lt-labels span:first-child { color: #080900; }
.lang-toggle.is-en .lt-labels span:last-child { color: #080900; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(8, 9, 13, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1.2rem 5% 1.5rem;
  gap: .2rem;
  z-index: 998;
}
.mobile-menu.open { display: flex; animation: slideDown .3s ease; }
.mobile-menu .mm-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .95rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border2);
  transition: color .2s;
}
.mobile-menu .mm-link:hover { color: var(--gold); }
.mobile-menu .mm-cta {
  margin-top: .8rem;
  text-align: center;
  border-radius: var(--radius-sm) !important;
  padding: .7rem 1rem !important;
  border-bottom: none !important;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(150deg, rgba(8,9,13,.97) 0%, rgba(8,9,13,.62) 55%, rgba(8,9,13,.9) 100%),
    url('images/hero-bw.jpg') center 60%/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,168,76,.055) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.03) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 110px 5% 120px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .38rem 1.1rem;
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeUp .9s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.015em;
  margin-bottom: 1.3rem;
  animation: fadeUp .9s .12s ease both;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(.93rem, 2.5vw, 1.12rem);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 2.6rem;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeUp .9s .24s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .38s ease both;
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  z-index: 2;
  background: rgba(8,9,13,.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  animation: fadeUp .9s .5s ease both;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 1.2rem 1rem;
  max-width: 180px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .7rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: #080900;
  border: none;
  padding: .92rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px var(--gold-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240,237,232,.2);
  padding: .92rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .25s, color .25s, transform .25s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTION SHARED ───────────────────────────── */
section { padding: 6rem 5%; }

.section-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-sub {
  color: var(--text-dim);
  font-size: .93rem;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── SERVICES ─────────────────────────────────── */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.32);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
  border: 1px solid var(--border);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--text-dim);
  font-size: .875rem;
  line-height: 1.68;
}

/* ── HOW IT WORKS ─────────────────────────────── */
#how { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  transition: border-color .3s;
}
.step:hover { border-color: var(--border); }

.step-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,.2);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.step p { color: var(--text-dim); font-size: .87rem; line-height: 1.65; }

/* ── FLEET ────────────────────────────────────── */
.fleet { background: var(--bg2); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,.3);
}

.fleet-img-placeholder {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, #1c1d2a 0%, #0f1018 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem;
  border-bottom: 1px solid var(--border);
}
.car-icon { font-size: 2.8rem; }
.placeholder-label {
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.placeholder-model { font-size: .72rem; color: rgba(255,255,255,.2); }

.fleet-img-real {
  position: relative;
  width: 100%; height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.fleet-img-real img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .5s ease;
}
.fleet-card:hover .fleet-img-real img { transform: scale(1.06); }
.fleet-img-real::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,9,13,.75) 0%, transparent 45%);
  pointer-events: none;
}
.fleet-gallery-btn {
  position: absolute; right: .8rem; bottom: .8rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(8,9,13,.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .4rem .85rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.fleet-gallery-btn:hover {
  background: var(--gold);
  color: #08090d;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.fleet-info { padding: 1.6rem; }

.fleet-brand {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.fleet-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.fleet-info p {
  color: var(--text-dim);
  font-size: .86rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.fleet-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.fleet-tag {
  font-size: .7rem;
  padding: .22rem .65rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── PRICING / KALKULÁTOR ────────────────────────── */
.pricing { background: var(--bg); }

.section-head.center { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 3.5rem;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-hover);
}
.price-card-icon { font-size: 1.8rem; margin-bottom: .7rem; }
.price-card-route {
  font-size: .82rem;
  color: var(--text-dim);
  display: flex; flex-direction: column; gap: .15rem;
  margin-bottom: .9rem;
  min-height: 42px;
  justify-content: center;
}
.price-card-route .route-arrow { color: var(--gold); font-size: .8rem; }
.price-card-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
}
.price-card-amount .cur { font-size: 1.1rem; opacity: .8; }
.price-card-huf { font-size: .76rem; color: var(--text-dim); margin-top: .3rem; }
.price-card-tag {
  display: inline-block;
  margin-top: .8rem;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 20px;
  padding: .22rem .7rem;
}

/* ── Kalkulátor doboz ── */
.quote-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.quote-head {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
}
.quote-badge {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.quote-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
}
.quote-head p { color: var(--text-dim); font-size: .9rem; }

.quote-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.1rem;
}
.quote-row:nth-of-type(2) { grid-template-columns: 1fr auto; }

.quote-field { position: relative; }
.quote-field label {
  display: block; margin-bottom: .4rem;
  font-size: .76rem; color: var(--text-dim);
  letter-spacing: .03em;
}
.quote-input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.qi-ico {
  position: absolute; left: .9rem;
  font-size: .85rem; pointer-events: none;
}
.quote-input-wrap input {
  width: 100%;
  padding: .8rem .9rem .8rem 2.3rem;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color .2s;
}
.quote-input-wrap input:focus {
  outline: none;
  border-color: var(--gold);
}

.quote-suggest {
  position: absolute;
  top: calc(100% + 6px); left: 0; right: 0;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  list-style: none;
  max-height: 230px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.quote-suggest.open { display: block; }
.quote-suggest li {
  padding: .65rem .9rem;
  font-size: .86rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: background .15s, color .15s;
  border-bottom: 1px solid var(--border2);
}
.quote-suggest li:last-child { border-bottom: none; }
.quote-suggest li:hover { background: var(--gold-dim); color: var(--gold2); }

.quote-swap {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg4);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  align-self: center;
  margin-bottom: .1rem;
  transition: background .2s, transform .3s;
}
.quote-swap:hover { background: var(--gold-dim); transform: rotate(180deg); }

.quote-form select {
  width: 100%;
  padding: .8rem .9rem;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
}
.quote-calc-btn { white-space: nowrap; align-self: end; }
.quote-hint { font-size: .78rem; color: var(--text-dim); margin-top: .3rem; }

/* ── Eredmény panel ── */
.quote-result {
  display: none;
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border2);
  animation: fadeUp .5s ease both;
}
.quote-result.open { display: block; }

.qr-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
}
.qr-point {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 500;
}
.qr-route .qr-point:last-child { flex-direction: row-reverse; text-align: right; }
.qr-dot {
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-dim);
}
.qr-dot.from { background: var(--gold2); }
.qr-dot.to { background: var(--gold); }
.qr-line {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
}
.qr-car {
  position: absolute; top: 50%; left: 0;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  animation: qrDrive 2.6s ease-in-out infinite;
}
@keyframes qrDrive {
  0%   { left: 0%; }
  50%  { left: 100%; }
  50.01% { left: 100%; transform: translate(-50%,-50%) scaleX(-1); }
  100% { left: 0%; transform: translate(-50%,-50%) scaleX(-1); }
}

.qr-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.qr-stat {
  text-align: center;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.qr-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold2);
}
.qr-stat-lbl { font-size: .74rem; color: var(--text-dim); margin-top: .2rem; }

.qr-price-hero {
  text-align: center;
  background: linear-gradient(150deg, var(--gold-dim), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.qr-price-lbl { font-size: .82rem; color: var(--text-dim); margin-bottom: .5rem; }
.qr-price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}
.qr-price-num .cur { font-size: 1.5rem; margin-left: .2rem; opacity: .85; }
.qr-price-huf { font-size: .85rem; color: var(--text-dim); margin-top: .4rem; }

.qr-compare { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.qr-compare-row {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: var(--text-dim);
  padding: .55rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
}
.qr-compare-row.active {
  color: var(--text);
  border-color: var(--border);
  background: var(--gold-dim);
}
.qc-huf { color: var(--text-dim); font-size: .76rem; margin-left: .3rem; }

.qr-disclaimer { font-size: .74rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 1.2rem; }
.qr-book-btn { width: 100%; justify-content: center; }

.quote-notfound {
  display: none;
  margin-top: 2rem;
  padding: 1.6rem;
  text-align: center;
  background: var(--bg4);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.quote-notfound.open { display: block; animation: fadeUp .4s ease both; }
.quote-notfound p { color: var(--text-dim); font-size: .9rem; margin-bottom: 1rem; }

@media (max-width: 860px) {
  .price-cards { grid-template-columns: 1fr 1fr; }
  .quote-row, .quote-row:nth-of-type(2) { grid-template-columns: 1fr; }
  .quote-swap { justify-self: center; transform: rotate(90deg); }
  .quote-swap:hover { transform: rotate(270deg); }
  .qr-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .price-cards { grid-template-columns: 1fr; }
  .quote-box { padding: 1.4rem; }
  .qr-price-num { font-size: 2.3rem; }
}

/* ── BOOKING ──────────────────────────────────── */
.booking { background: var(--bg); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-left .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.booking-left .section-sub { margin-bottom: 2.5rem; }

.booking-info-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.booking-info-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border2);
}
.booking-info-list li:last-child { border-bottom: none; }

.info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--gold-dim);
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-text h4 { font-weight: 500; font-size: .9rem; margin-bottom: .2rem; }
.info-text p  { color: var(--text-dim); font-size: .82rem; line-height: 1.6; }

/* Form */
.booking-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }

.form-group label {
  font-size: .73rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-sm);
  padding: .82rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .22s, box-shadow .22s;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,237,232,.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #161721; }
.form-group textarea { resize: vertical; min-height: 85px; }

.form-submit { width: 100%; margin-top: .4rem; padding: 1.05rem; font-size: .88rem; justify-content: center; }

/* Loading spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; }

/* Success state */
.booking-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(100,200,120,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(100,200,120,.07);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
.success-check {
  font-size: 2.2rem;
  color: #6ec87a;
  animation: popIn .5s .1s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes popIn {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: .8rem;
}
.booking-success p {
  color: var(--text-dim);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.booking-success strong { color: var(--text); }

.success-details {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: .85rem;
  line-height: 1.9;
  color: var(--text-dim);
}
.success-details strong { color: var(--gold); font-weight: 500; }

/* ── REVIEWS ──────────────────────────────────── */
.reviews { background: var(--bg2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,.28); }

.review-source {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .68rem;
  color: var(--text-dim);
  background: var(--bg2);
  padding: .2rem .6rem;
  border-radius: 5px;
  border: 1px solid var(--border2);
  letter-spacing: .05em;
}

.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; font-size: 1rem; color: var(--gold); }
.review-text {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.3rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: .85rem; }

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.review-name { font-size: .875rem; font-weight: 500; }
.review-date { font-size: .75rem; color: var(--text-dim); margin-top: .1rem; }

/* Add review */
.add-review-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.add-review-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.star-picker { display: flex; gap: .35rem; cursor: pointer; margin-top: .4rem; }
.star-picker .sp {
  font-size: 1.7rem;
  color: rgba(201,168,76,.22);
  transition: color .15s, transform .15s;
  user-select: none;
  line-height: 1;
}
.star-picker .sp.hover,
.star-picker .sp.active { color: var(--gold); transform: scale(1.18); }

/* Google CTA */
.google-cta {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.8rem 2rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.google-logo { font-size: 2.5rem; margin-bottom: 1rem; }
.google-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .6rem;
}
.google-cta p { color: var(--text-dim); font-size: .9rem; margin-bottom: 1.6rem; line-height: 1.65; }

.btn-google {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #fff;
  color: #333;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.45); }

/* ── CONTACT ──────────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.6rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.contact-item:hover { border-color: rgba(201,168,76,.3); transform: translateY(-2px); }

.contact-ico {
  font-size: 1.4rem;
  width: 50px; height: 50px; min-width: 50px;
  background: var(--gold-dim);
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-weight: 500; font-size: .9rem; margin-bottom: .3rem; }
.contact-item a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .88rem;
  display: block;
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }
.contact-item p { color: var(--text-dim); font-size: .82rem; margin-top: .2rem; line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5% 2rem;
}

.footer-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border2);
}

.footer-brand .nav-logo { display: block; margin-bottom: .6rem; }
.footer-brand p { color: var(--text-dim); font-size: .82rem; max-width: 210px; line-height: 1.65; }

.footer-links h5 {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links ul a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}
.footer-links ul a:hover { color: var(--text); }

.footer-copy {
  text-align: center;
  padding-top: 1.8rem;
  color: rgba(240,237,232,.28);
  font-size: .78rem;
  letter-spacing: .04em;
}

/* ── DIVIDER ──────────────────────────────────── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: .18;
}

/* ── TOAST ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1rem 1.6rem;
  font-size: .875rem;
  color: var(--text);
  z-index: 9999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 12px 50px rgba(0,0,0,.55);
  max-width: 92vw;
  text-align: center;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.65); }
}
@keyframes reviewIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links     { display: none; }
  .hamburger     { display: flex; }
  .booking-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 5%; }
  .hero-content { padding: 90px 5% 100px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .hero-stat .num { font-size: 1.5rem; }
  .booking-form-wrap { padding: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: .65rem; }
}

@media (max-width: 420px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
}

/* ── TAWK.TO OVERRIDE – arany téma ──────────────
   Ha a tawk.to widget betöltődik, ezt injektálja
   a custom CSS mezőjébe a tawk.to dashboardon.
   Ide csak emlékeztető kommentként kerül.

   Tawk.to → Administration → Chat Widget → Appearance
   Widget color: #c9a84c
   ────────────────────────────────────────────── */

/* Tawk.to buborék pozíció fix (ne takarja a tartalmakat) */
#tawk-bubble-container,
.tawk-min-container {
  bottom: 20px !important;
  right:  20px !important;
  z-index: 9990 !important;
}
/* ── FLOTTA GALÉRIA / LIGHTBOX ────────────────── */
.gallery-lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(10px);
  padding: 4vh 4vw;
}
.gallery-lightbox.open { display: flex; animation: fadeUp .25s ease both; }

.gl-inner {
  position: relative;
  width: 100%; max-width: 1100px;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
}

.gl-close {
  position: absolute; top: -3.2rem; right: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.gl-close:hover { background: var(--gold); color: #08090d; transform: rotate(90deg); }

.gl-stage {
  position: relative;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 40vh;
}
.gl-stage img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  object-fit: contain;
  animation: fadeUp .3s ease both;
}

.gl-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(8,9,13,.7);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 3;
}
.gl-nav:hover { background: var(--gold); color: #08090d; border-color: var(--gold); }
.gl-prev { left: -8px; }
.gl-next { right: -8px; }

.gl-counter {
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: .05em;
}

.gl-thumbs {
  display: flex; gap: .5rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: .3rem;
}
.gl-thumbs::-webkit-scrollbar { height: 4px; }
.gl-thumbs img {
  width: 64px; height: 46px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  opacity: .55;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s, border-color .2s;
}
.gl-thumbs img:hover { opacity: .85; }
.gl-thumbs img.active { opacity: 1; border-color: var(--gold); }

@media (max-width: 640px) {
  .gl-nav { width: 38px; height: 38px; font-size: 1.1rem; }
  .gl-prev { left: -4px; }
  .gl-next { right: -4px; }
  .gl-close { top: -2.8rem; width: 36px; height: 36px; }
  .gl-thumbs img { width: 50px; height: 36px; }
}
