:root {
  --bg: #020617;
  --bg-alt: #ffffff;
  --bg-lt: #f9fafb;
  --text: #0f172a;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --border: #e5e7eb;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.4);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    sans-serif;

 /* Calm green background */
background: radial-gradient(
  circle at top left,
  #d9f7e6 0%,
  #b7edcf 35%,
  #8fddb8 70%,
  #6acaa2 100%
);

  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* MAIN SHELL – white card on blue bg */

main {
  max-width: var(--max-width);
  margin: 40px auto 60px;
  padding: 28px 26px 40px;
  background: radial-gradient(
    circle at top,
    #f9fafb 0,
    #f3f4f6 45%,
    #e5e7eb 100%
  );
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* LINKS */

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #22c55e, #06b6d4, #2563eb, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.6);
}

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

.brand-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 18px;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.pill {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: #2563eb;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
  margin-top: 12px;
}

.hero-left {
  padding-right: 26px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.05;
  font-weight: 780;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero-title span {
  background: linear-gradient(120deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  border-left: 1px solid #e5e7eb;
  padding-left: 10px;
  margin-left: 4px;
}

/* HERO BUTTONS */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.6);
  filter: brightness(1.05);
}

.btn-secondary {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: rgba(248, 250, 252, 0.95);
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.14s ease, border-color 0.14s ease,
    box-shadow 0.14s ease, transform 0.12s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: #9ca3af;
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.4);
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 10px;
  font-size: 12px;
  color: #9ca3af;
}

/* BOOKING CARD */

.booking-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  padding: 20px 18px 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #dbeafe 0, transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 8px;
}

.booking-header h2 {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.booking-header p {
  font-size: 13px;
  color: var(--muted);
}

.badge {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(129, 140, 248, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}

/* FORM FIELDS */

form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

label {
  font-weight: 500;
  color: #4b5563;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

label span.meta {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 9px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background-color: #f3f4f6;
  transition: border-color 0.12s ease, background-color 0.12s ease,
    box-shadow 0.12s ease, transform 0.08s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
  transform: translateY(-0.5px);
}

textarea {
  resize: vertical;
  min-height: 70px;
}

.inline-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 10px;
}

.helper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.secure-note svg {
  width: 13px;
  height: 13px;
}

/* FORM FOOTER / STATUS */

.form-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.form-footer button {
  flex-shrink: 0;
}

.status {
  font-size: 12px;
  color: #16a34a;
  opacity: 0.85; /* visible but subtle */
}

/* SECTIONS */

section {
  margin-bottom: 36px;
}

.section-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9ca3af;
  margin-bottom: 10px;
}

.section-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.3);
}

.section-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 18px;
}

.section-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #4b5563;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  margin-top: 7px;
  background: #9ca3af;
  flex-shrink: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.mini-pill {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  color: #4b5563;
  background-color: #f9fafb;
}

.muted-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.stat {
  font-size: 13px;
  color: #3b82f6;
}

.stat strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #3b82f6;
}

/* FAQ */

.faq-grid {
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 12px;
  padding: 8px 2px 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 3px;
}

.faq-a {
  font-size: 13px;
  color: #6b7280;
}

/* FOOTER */

footer {
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
  font-size: 11px;
  color: #2563eb;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

footer a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* RESPONSIVE */

@media (max-width: 860px) {
  main {
    margin: 24px auto 40px;
    padding: 22px 18px 30px;
    border-radius: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-left {
    padding-right: 0;
  }

  .booking-card {
    order: 2;
  }

  .hero-left {
    order: 1;
  }

  header {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  main {
    padding: 18px 14px 26px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .inline-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
