/* Green Top Booking v2 */
:root {
  color-scheme: dark;
  --bg: #050a07;
  --bg-soft: #09110c;
  --panel: #0f1a13;
  --panel-raised: #14221a;
  --panel-soft: #101a14;
  --text: #f6f3e8;
  --muted: #c4c8bd;
  --muted-2: #969e93;
  --lime: #b9ef39;
  --gold: #e0bd35;
  --green: #38c96b;
  --green-deep: #0c6f3c;
  --wine: #9e1640;
  --crimson: #d51f58;
  --border: rgba(224, 235, 216, 0.14);
  --border-strong: rgba(185, 239, 57, 0.34);
  --danger: #ffb6bd;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius-lg: 24px;
  --radius-md: 16px;
  --focus: #fff0a8;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 3%, rgba(185, 239, 57, 0.09), transparent 24rem),
    radial-gradient(circle at 12% 40%, rgba(158, 22, 64, 0.10), transparent 22rem),
    linear-gradient(180deg, #07100a 0%, #040806 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 28px 28px;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.en {
  direction: ltr;
  font-family: Arial, sans-serif;
  unicode-bidi: isolate;
}

.hidden { display: none !important; }

/* Opening splash */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(185, 239, 57, 0.11), transparent 25rem),
    #030604;
  animation: splash-screen-exit 0.46s ease 2.25s forwards;
}

.splash-logo {
  width: clamp(190px, 58vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.55));
  animation: splash-logo-arrive 2.12s cubic-bezier(0.22, 0.9, 0.28, 1) both;
}

@keyframes splash-logo-arrive {
  0% {
    opacity: 0;
    transform: scale(0.08);
    filter: blur(10px) drop-shadow(0 18px 40px rgba(0, 0, 0, 0));
  }
  56% {
    opacity: 1;
    transform: scale(1.11);
    filter: blur(0) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.50));
  }
  72%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.50));
  }
}

@keyframes splash-screen-exit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 94px;
  padding: 12px max(16px, env(safe-area-inset-left)) 12px max(16px, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 9, 6, 0.90);
  backdrop-filter: blur(18px);
}

.topbar::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), var(--lime), transparent);
  opacity: 0.7;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.40));
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
  direction: ltr;
  text-align: left;
}

.brand-copy strong {
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.call-button {
  min-height: 58px;
  padding: 10px 16px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(224, 189, 53, 0.52);
  border-radius: 15px;
  color: #172006;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 12px 28px rgba(185, 239, 57, 0.18);
  font-weight: 900;
}

.call-button.compact {
  min-width: 132px;
  min-height: 60px;
  padding: 8px 13px;
}

.call-button span { line-height: 1.25; }
.call-button .en { font-size: 0.69rem; font-weight: 800; }
.call-button b { margin-top: 2px; font-size: 0.82rem; }

.call-button:hover,
.primary-button:hover,
.primary-link:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.call-button:active,
.primary-button:active,
.primary-link:active {
  transform: translateY(1px) scale(0.995);
}

/* Layout */
.page-shell {
  width: min(100% - 28px, 720px);
  margin: 28px auto 24px;
  position: relative;
  z-index: 1;
}

.hero,
.card,
.direct-call-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 34, 26, 0.98), rgba(10, 17, 13, 0.98));
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: clamp(24px, 6vw, 38px);
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  inset-inline-end: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 239, 57, 0.16), transparent 68%);
}

.hero-accent {
  width: 72px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--crimson), #ff4d7c, var(--gold));
  box-shadow: 0 0 18px rgba(213, 31, 88, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  display: grid;
  gap: 2px;
  color: #dcf4a5;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 14px;
  display: grid;
  gap: 5px;
  font-size: clamp(2rem, 8.5vw, 3rem);
  line-height: 1.25;
}

.hero-en {
  color: #f1e9c7;
  font-size: 0.47em;
  font-weight: 700;
  line-height: 1.35;
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.primary-link,
.secondary-link {
  min-height: 60px;
  padding: 11px 16px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.primary-link {
  color: #182006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 14px 32px rgba(185, 239, 57, 0.17);
}

.secondary-link {
  border: 1px solid rgba(213, 31, 88, 0.48);
  color: #ffdbe5;
  background: linear-gradient(135deg, rgba(158, 22, 64, 0.20), rgba(12, 20, 15, 0.82));
}

.primary-link .en,
.secondary-link .en {
  font-size: 0.75rem;
  font-weight: 700;
}

/* Booking card */
.card { padding: clamp(20px, 5.5vw, 34px); }

.section-heading {
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.section-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  display: grid;
  gap: 1px;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
}

.section-heading h2 .en {
  color: var(--muted);
  font-size: 0.48em;
  font-weight: 700;
}

.secure-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(185, 239, 57, 0.25);
  border-radius: 999px;
  color: #dff5a8;
  background: rgba(185, 239, 57, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
}

.progress {
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.progress-step {
  min-width: 74px;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--muted-2);
  text-align: center;
}

.progress-step > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel-soft);
  font-weight: 900;
}

.progress-step b { font-size: 0.76rem; }
.progress-step small { font-size: 0.62rem; }

.progress-step.active { color: var(--text); }
.progress-step.active > span {
  border-color: rgba(224, 189, 53, 0.70);
  color: #172006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 0 18px rgba(185, 239, 57, 0.18);
}

.progress-step.completed > span {
  border-color: rgba(56, 201, 107, 0.55);
  color: #061008;
  background: var(--green);
}

.progress-line {
  height: 2px;
  border-radius: 999px;
  background: var(--border);
}

.form-step { display: none; }
.form-step.active { display: block; animation: step-in 240ms ease both; }

@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  margin-bottom: 18px;
  padding-inline-start: 13px;
  display: grid;
  gap: 1px;
  border-inline-start: 3px solid var(--crimson);
  font-weight: 900;
}

.step-title .en {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.field-group { margin-bottom: 14px; }

label {
  margin: 0 2px 7px;
  display: grid;
  gap: 1px;
  color: var(--text);
  font-weight: 900;
}

label .en {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

label em {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(222, 231, 215, 0.18);
  border-radius: 14px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(3, 8, 5, 0.68);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 112px;
  padding-top: 13px;
  padding-bottom: 13px;
  resize: vertical;
  line-height: 1.7;
}

select {
  color-scheme: dark;
  appearance: auto;
}

input::placeholder,
textarea::placeholder { color: #858d84; opacity: 1; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(5, 12, 8, 0.92);
  box-shadow:
    0 0 0 3px rgba(255, 240, 168, 0.12),
    0 0 0 1px rgba(213, 31, 88, 0.36) inset;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-error {
  min-height: 19px;
  margin: 5px 2px 0;
  display: block;
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.45;
  white-space: pre-line;
}

.primary-button,
.secondary-button {
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.primary-button {
  border: 1px solid rgba(224, 189, 53, 0.55);
  color: #172006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 14px 30px rgba(185, 239, 57, 0.17);
}

.secondary-button {
  border: 1px solid rgba(213, 31, 88, 0.42);
  color: #ffe1e9;
  background: linear-gradient(135deg, rgba(158, 22, 64, 0.19), rgba(10, 17, 13, 0.92));
}

.primary-button span,
.secondary-button span { display: block; }

.primary-button .en,
.secondary-button .en {
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 700;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(180px, 1.3fr);
  gap: 11px;
}

.booking-summary {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(3, 9, 5, 0.48);
}

.summary-row {
  padding: 13px 15px;
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) 1.4fr;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child { border-bottom: 0; }

.summary-label {
  display: grid;
  align-content: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-label .en { font-size: 0.68rem; }

.summary-value {
  overflow-wrap: anywhere;
  color: var(--text);
  font-weight: 800;
}

.form-message {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 182, 189, 0.30);
  border-radius: 12px;
  color: #ffd8dc;
  background: rgba(105, 14, 42, 0.26);
  line-height: 1.7;
  white-space: pre-line;
}

.privacy {
  margin: 18px 0 0;
  display: grid;
  gap: 2px;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

/* Success */
.success {
  text-align: center;
  border-color: rgba(185, 239, 57, 0.27);
}

.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(224, 189, 53, 0.74);
  border-radius: 50%;
  color: #162006;
  background: linear-gradient(135deg, var(--lime), var(--gold));
  box-shadow: 0 0 30px rgba(185, 239, 57, 0.18);
  font-size: 2.25rem;
  font-weight: 900;
}

.success h2 {
  margin: 0 0 18px;
  display: grid;
  gap: 3px;
}

.success h2 .en {
  color: var(--muted);
  font-size: 0.58em;
}

.reference-card {
  margin: 0 auto 18px;
  padding: 18px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(213, 31, 88, 0.45);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(158, 22, 64, 0.18), rgba(185, 239, 57, 0.06)),
    rgba(4, 10, 6, 0.72);
  box-shadow: inset 0 0 22px rgba(213, 31, 88, 0.05);
}

.reference-card > span { font-weight: 900; }
.reference-card .en { color: var(--muted); font-size: 0.76rem; }
.reference-card strong {
  margin-top: 8px;
  color: #e4f77f;
  font-size: clamp(2.2rem, 11vw, 3.2rem);
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(185, 239, 57, 0.16);
}

.success p {
  margin: 0 0 22px;
  display: grid;
  gap: 3px;
  color: var(--muted);
  line-height: 1.8;
}

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

/* Direct call */
.direct-call-card {
  margin-top: 18px;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-color: rgba(224, 189, 53, 0.24);
}

.direct-call-card > div {
  display: grid;
  font-weight: 900;
}

.direct-call-card .en {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.direct-call-card a {
  min-height: 48px;
  padding: 10px 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 239, 57, 0.34);
  border-radius: 13px;
  color: #e7f889;
  text-decoration: none;
  background: rgba(185, 239, 57, 0.07);
  font-weight: 900;
}

footer {
  width: min(100% - 28px, 720px);
  margin: 0 auto 34px;
  display: grid;
  gap: 4px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

footer a {
  color: #d8ef79;
  text-decoration: none;
}

.trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 620px) {
  .topbar { min-height: 86px; }
  .brand-logo { width: 58px; height: 58px; }
  .brand-copy span { font-size: 0.69rem; }
  .call-button.compact { min-width: 118px; min-height: 56px; padding-inline: 10px; }
  .call-button.compact > span:first-child { font-size: 0.82rem; }
  .hero-actions { grid-template-columns: 1fr; }
  .progress { gap: 4px; }
  .progress-step { min-width: 58px; }
  .progress-step b { font-size: 0.68rem; }
  .progress-step small { font-size: 0.56rem; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .button-row,
  .success-actions { grid-template-columns: 1fr; }
  .button-row .secondary-button { order: 2; }
  .summary-row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 420px) {
  .topbar { padding-inline: 10px; gap: 8px; }
  .brand { gap: 7px; }
  .brand-logo { width: 52px; height: 52px; border-radius: 11px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: 0.62rem; }
  .call-button.compact { min-width: 108px; }
  .call-button.compact > span:first-child { font-size: 0.76rem; }
  .call-button.compact .en { font-size: 0.58rem; }
  .call-button.compact b { font-size: 0.72rem; }
  .page-shell { width: min(100% - 20px, 720px); margin-top: 18px; }
  .hero, .card { border-radius: 20px; padding-inline: 17px; }
  .direct-call-card { align-items: stretch; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .splash-screen { animation: splash-screen-exit 0.01s linear 1s forwards !important; }
}

