/* ============================================================
   zalozeniefirmyvdubaji.sk — hlavný štýl
   Paleta: polnočná modrá + púštne zlato
   ============================================================ */
:root {
  --navy: #0b1b33;
  --navy-2: #122847;
  --gold: #c9a227;
  --gold-2: #e3c565;
  --sand: #f7f4ee;
  --white: #ffffff;
  --ink: #17233b;
  --muted: #5b6779;
  --line: #e6e1d6;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(11, 27, 51, .12);
  --shadow-lg: 0 24px 70px rgba(11, 27, 51, .22);
  --container: 1180px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #a8861d; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; margin: 0 0 .55em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5.4vw, 3.4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1.1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: linear-gradient(160deg, #0b1b33 0%, #14294d 100%); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #c6cfdd; }

.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Tlačidlá ---------- */
.btn {
  -webkit-appearance: none; appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s;
  font-family: var(--font-body);
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #22201a;
  box-shadow: 0 10px 26px rgba(201, 162, 39, .35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 39, .45); color: #22201a; }
.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; transform: translateY(-3px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #16305a; color: #fff; transform: translateY(-3px); }
.btn--sm { padding: 11px 22px; font-size: .92rem; }

/* ---------- Hlavička ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.header.is-scrolled {
  background: rgba(11, 27, 51, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,.25);
  padding: 10px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; }
.logo:hover { color: #fff; }
.logo__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: grid; place-items: center;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.25rem;
}
.logo__text { line-height: 1.15; font-size: .98rem; }
.logo__text small { display: block; font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #e8ecf3; font-weight: 500; font-size: .95rem; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .28s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav .btn { margin-left: 6px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-2) !important; font-weight: 600; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 150px 0 90px;
  background: var(--navy);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(8, 18, 36, .93) 0%, rgba(10, 22, 44, .78) 45%, rgba(10, 22, 44, .35) 100%);
}
.hero--sub { min-height: 62vh; padding-top: 160px; }
.hero__content { max-width: 690px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-2); }
.hero .lead { color: #d5dce8; font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 580px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 38px; padding: 0; list-style: none; }
.hero__badges li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: #cfd8e6; }
.hero__badges svg { color: var(--gold-2); flex: none; }
.breadcrumbs { font-size: .85rem; color: #9fb0c8; margin-bottom: 18px; }
.breadcrumbs a { color: #c9d4e5; }
.breadcrumbs a:hover { color: var(--gold-2); }

/* ---------- Štatistiky ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.stat__num { font-family: var(--font-head); font-size: 2.3rem; color: var(--gold-2); font-weight: 700; line-height: 1; }
.stat__label { margin-top: 8px; font-size: .9rem; color: #b9c4d6; }

/* ---------- Karty výhod ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(201,162,39,.16), rgba(201,162,39,.05));
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }

/* ---------- Krajiny ---------- */
.countries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.country {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(11,27,51,.14);
  transition: transform .35s ease, box-shadow .35s ease;
}
.country:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); color: #fff; }
.country__img { position: absolute; inset: 0; }
.country__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.country:hover .country__img img { transform: scale(1.07); }
.country::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,19,38,0) 30%, rgba(9,19,38,.92) 100%);
  z-index: 1;
}
.country__body { position: relative; z-index: 2; padding: 26px 24px; width: 100%; }
.country__flag { font-size: 1.5rem; line-height: 1; }
.country h3 { color: #fff; margin: 10px 0 6px; font-size: 1.35rem; }
.country__price { color: var(--gold-2); font-weight: 600; font-size: .95rem; }
.country__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .9rem; font-weight: 600; color: #fff; opacity: .85; }
.country:hover .country__more { opacity: 1; }
.country--featured { grid-column: span 2; }

/* ---------- Proces ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold-2);
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- Cenník ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
.price-table th, .price-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--navy); color: #fff; font-weight: 600; font-size: .92rem; letter-spacing: .04em; }
.price-table td { font-size: .98rem; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: #fbf8f0; }
.price-table .price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-table .flag { margin-right: 8px; }
.tr-featured { background: #fdf9ec; }
.tag {
  display: inline-block; margin-left: 10px; padding: 3px 10px;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #22201a; border-radius: 999px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  vertical-align: middle;
}

/* Balíky */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.package {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package--featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.package__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #22201a;
  padding: 5px 18px; border-radius: 999px; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.package h3 { font-size: 1.2rem; }
.package__price { font-family: var(--font-head); font-size: 2.4rem; color: var(--navy); font-weight: 700; margin: 6px 0 2px; }
.package__price small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.package__note { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }
.package ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.package li { padding: 8px 0 8px 30px; position: relative; font-size: .95rem; border-bottom: 1px dashed var(--line); }
.package li:last-child { border-bottom: 0; }
.package li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201,162,39,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ---------- Obsahové sekcie podstránok ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li { padding: 9px 0 9px 34px; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,162,39,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  padding: 20px 56px 20px 24px;
  font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none; position: relative;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item__body { padding: 0 24px 20px; color: var(--muted); }
.faq-item__body p { margin-bottom: 0; }

/* ---------- Referencie ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 26px; }
.quote__stars { color: var(--gold-2); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: .97rem; color: #d4dbe7; }
.quote footer { margin-top: 14px; font-weight: 600; color: #fff; font-size: .92rem; }
.quote footer span { display: block; font-weight: 400; color: #8fa0ba; font-size: .82rem; }

/* ---------- CTA pás ---------- */
.cta-band {
  position: relative; border-radius: 20px; overflow: hidden;
  padding: clamp(40px, 6vw, 70px); color: #fff; text-align: center;
  background: linear-gradient(120deg, #0b1b33, #1b3763);
}
.cta-band::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(circle at 75% 20%, rgba(201,162,39,.35), transparent 45%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8d2e2; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Formulár ---------- */
.form-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.form-field label .req { color: #c0392b; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fcfbf8; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--muted); }
.form-consent input { margin-top: 4px; accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.form-msg { display: none; padding: 15px 18px; border-radius: 10px; font-weight: 500; margin-top: 16px; }
.form-msg.is-ok { display: block; background: #e8f6ec; color: #1e7c3e; border: 1px solid #bfe5cb; }
.form-msg.is-err { display: block; background: #fdeeee; color: #b03a34; border: 1px solid #f2c7c4; }
.hp-field { position: absolute !important; left: -6000px !important; opacity: 0; height: 0; overflow: hidden; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info h3 { margin-top: 0; }
.contact-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon { width: 44px; height: 44px; flex: none; border-radius: 11px; background: rgba(201,162,39,.13); color: var(--gold); display: grid; place-items: center; }
.contact-item strong { display: block; color: var(--navy); font-size: .92rem; }
.contact-item a, .contact-item span { color: var(--muted); font-size: .95rem; }
.contact-item a:hover { color: var(--gold); }

/* ---------- Pätička ---------- */
.footer { background: #081426; color: #a9b6ca; padding: 64px 0 0; font-size: .93rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer a { color: #a9b6ca; }
.footer a:hover { color: var(--gold-2); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer__about p { margin-top: 14px; color: #8b99af; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between; font-size: .85rem; color: #7787a0;
}
.footer__partner a { color: var(--gold-2); font-weight: 600; }

/* ---------- Animácie ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Video popup ---------- */
button.video-trigger,
.video-trigger {
  -webkit-appearance: none; appearance: none;
  display: inline-flex; align-items: center; gap: 14px;
  cursor: pointer; background: none !important; border: none; padding: 0;
  border-radius: 0; box-shadow: none;
  color: #fff; font-weight: 600; font-size: 1rem; font-family: var(--font-body);
  text-align: left; line-height: 1.35;
}
.video-trigger:hover .video-trigger__icon { transform: scale(1.08); }
.video-trigger__icon {
  width: 56px; height: 56px; flex: none; border-radius: 50%;
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  display: grid; place-items: center; color: #0b1b33;
  position: relative; transition: transform .25s ease;
  box-shadow: 0 10px 26px rgba(201,162,39,.4);
}
.video-trigger__icon::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(201,162,39,.55);
  animation: video-pulse 2.2s ease-out infinite;
}
.video-trigger__icon svg { margin-left: 3px; }
.video-trigger small { display: block; font-weight: 400; font-size: .82rem; opacity: .75; }
.video-trigger--dark { color: var(--navy); }
.video-trigger--dark small { color: var(--muted); }
@keyframes video-pulse {
  0%   { transform: scale(.88); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.video-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 22px; }
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 12, 26, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: video-fade .3s ease;
}
.video-modal__box {
  position: relative; z-index: 1;
  width: min(400px, calc((100vh - 140px) * 9 / 16), 92vw);
  aspect-ratio: 9 / 16;
  border-radius: 20px; overflow: hidden; background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.08);
  animation: video-in .38s cubic-bezier(.2, .9, .3, 1.2);
}
.video-modal__box iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal__close {
  position: absolute; z-index: 2; top: 12px; right: 12px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.3);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.video-modal__close:hover { background: rgba(0,0,0,.75); transform: rotate(90deg); }
@keyframes video-fade { from { opacity: 0; } }
@keyframes video-in { from { opacity: 0; transform: scale(.9) translateY(24px); } }
@media (max-width: 600px) { .video-modal { padding: 14px; } }

/* Plávajúce WhatsApp tlačidlo */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .25s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

/* ---------- Responzivita ---------- */
@media (max-width: 1020px) {
  .grid--3, .countries, .packages, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .country--featured { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 86vw);
    background: #0b1b33;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 30px 40px; gap: 20px;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { font-size: 1.08rem; }
  .nav-toggle { display: flex; z-index: 102; }
  .header.nav-opened { background: rgba(11,27,51,.98); }
  .split, .contact-layout, .grid--2 { grid-template-columns: 1fr; }
  .split__img { order: -1; }
  .hero { min-height: 78vh; padding-top: 120px; }
}
@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .grid--3, .countries, .packages, .steps, .quotes, .form-grid, .stats { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__cta .btn { width: 100%; }
  .section { padding: 52px 0; }
  .country { min-height: 280px; }
  .package--featured { transform: none; }
  .logo__text { font-size: .88rem; }
}
