:root {
  --green: #99bd42;
  --dark: #163b30;
  --fr-blue: #0055a4;
  --fr-red: #ef4135;
  --bg: #f6f8f3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(22, 59, 48, 0.12);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 24px;
}

h1 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--dark);
}

.subtitle {
  color: #4b5a54;
  margin: 0 0 28px;
  font-size: 0.95rem;
}

.hint {
  color: #8a958f;
  margin: 0 0 12px;
  font-size: 0.75rem;
}

.field {
  text-align: left;
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #d8e2cf;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23163b30'><path d='M5 7l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

select:focus {
  outline: none;
  border-color: var(--green);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #d8e2cf;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
  font-family: inherit;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
}

.wizard-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 2px solid #d8e2cf;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.wizard-option:hover {
  border-color: var(--green);
  background: rgba(153, 189, 66, 0.08);
}

.wizard-option-label {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.wizard-option-desc {
  font-weight: 400;
  color: #4b5a54;
  font-size: 0.85rem;
  margin-top: 4px;
}

.field-error {
  color: var(--fr-red);
  font-size: 0.85rem;
  margin: -12px 0 16px;
  min-height: 1em;
}

button.submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: filter 0.15s ease;
}

button.submit:hover {
  filter: brightness(0.93);
}

.flag {
  display: inline-flex;
  height: 14px;
  width: 24px;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 8px;
  vertical-align: middle;
}
.flag span {
  flex: 1;
}
.flag .blue { background: var(--fr-blue); }
.flag .white { background: #fff; }
.flag .red { background: var(--fr-red); }

.tagline {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-top: 28px;
}

.banner {
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.1rem;
}

.banner.success {
  background: rgba(153, 189, 66, 0.18);
  color: var(--dark);
  border: 2px solid var(--green);
}

.banner.error {
  background: rgba(239, 65, 53, 0.1);
  color: var(--fr-red);
  border: 2px solid var(--fr-red);
}

.booking-recap {
  font-weight: 400;
  font-size: 0.95rem;
  margin-top: 6px;
  color: #4b5a54;
}

.link-reset {
  display: inline-block;
  margin: 8px 0 20px;
  color: var(--dark);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}
