* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --radius: 18px;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(100% - 24px, 1150px);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-block h1 {
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.header-support-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.active-link {
  color: var(--primary);
}

.booking-page {
  padding-bottom: 32px;
}

.booking-hero {
  padding: 28px 0 14px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-hero h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.booking-hero p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1rem;
}

.booking-layout {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.booking-help-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.booking-help-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-number {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.info-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.info-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-tip {
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.93rem;
}

.booking-tip strong {
  display: block;
  margin-bottom: 4px;
}

.booking-form-card {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-grid {
  display: grid;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.form-note {
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  color: #374151;
  font-size: 0.93rem;
  border: 1px solid var(--border);
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-message.info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-large {
  width: 100%;
  min-height: 52px;
}

.btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .site-header {
    padding: 22px 0;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .booking-hero {
    padding: 40px 0 18px;
  }

  .booking-hero h2 {
    font-size: 2.5rem;
  }

  .booking-layout {
    grid-template-columns: 0.95fr 1.2fr;
    align-items: start;
  }

  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card {
    padding: 26px;
  }
}

.home-page {
  padding-bottom: 32px;
}

.home-hero {
  padding: 30px 0 16px;
}

.home-hero-grid {
  display: grid;
  gap: 18px;
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-content h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.home-hero-content p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 640px;
}

.hero-actions {
  margin-top: 18px;
}

.hero-btn {
  width: 100%;
}

.home-hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.home-info-section {
  margin-top: 48px;
}

.home-info-card {
  background: var(--surface);
}

.home-info-grid {
  display: grid;
  gap: 14px;
}

.simple-info-box {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}

.simple-info-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.simple-info-box p {
  color: var(--muted);
  font-size: 0.93rem;
}

@media (min-width: 768px) {
  .home-hero {
    padding: 44px 0 22px;
  }

  .home-hero-grid {
    grid-template-columns: 1.15fr 0.95fr;
    align-items: center;
  }

  .home-hero-content h2 {
    font-size: 2.7rem;
  }

  .hero-btn {
    width: auto;
    min-width: 220px;
  }

  .home-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

:root {
  --bg: #f5f8f8;
  --surface: #ffffff;
  --surface-soft: #dff4f3;
  --surface-soft-2: #eef8f8;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #d9e6e8;
  --primary: #7dd7cf;
  --primary-dark: #58c4b8;
  --radius: 20px;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.site-header-home {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: #1d9d93;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(29, 157, 147, 0.12);
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.site-nav a:hover {
  background: #edf7f7;
  color: #0f766e;
}

.active-link {
  color: #0f766e;
  background: #edf7f7;
}

.home-hero-modern {
  padding: 34px 0 18px;
}

.home-hero-modern-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}

.home-hero-main h2 {
  font-size: 2.3rem;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 620px;
}

.home-hero-main p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.home-hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  width: 100%;
  max-width: 540px;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4fbfb 0%, #edf5f5 100%);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

.hero-feature-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hero-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.home-feature-strip {
  margin-top: 10px;
}

.home-feature-grid {
  display: grid;
  gap: 16px;
}

.home-feature-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: #cfeff1;
  box-shadow: var(--shadow);
}

.feature-soft {
  background: #cfeff1;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.home-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.home-feature-card p {
  color: #43525f;
  font-size: 0.95rem;
  min-height: 72px;
}

.feature-link {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.feature-link:hover {
  background: #f8ffff;
}

.home-info-card-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  padding: 32px;
  border-radius: 24px;
}

.section-heading.public-heading {
  margin-bottom: 24px;
}

.home-steps-grid {
  display: grid;
  gap: 18px;
}

.home-step-box {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.home-step-box strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1rem;
}

.home-step-box p {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (min-width: 768px) {
  .home-hero-modern {
    padding: 42px 0 22px;
  }

  .home-hero-modern-grid {
    grid-template-columns: 1.05fr 1fr;
  }

  .home-hero-main h2 {
    font-size: 3.35rem;
  }

  .home-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking-page {
  padding-bottom: 56px;
}

.booking-hero {
  padding: 28px 0 8px;
}

.booking-hero-grid {
  display: grid;
  gap: 18px;
}

.booking-hero-copy h2 {
  font-size: 2.2rem;
  line-height: 1.06;
  margin-bottom: 12px;
  max-width: 760px;
}

.booking-hero-copy p {
  max-width: 720px;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.booking-side-card,
.booking-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.booking-side-card {
  padding: 28px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.booking-side-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.booking-help-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft-2);
  border: 1px solid var(--border);
}

.booking-help-box strong {
  display: block;
  margin-bottom: 8px;
  color: #0f766e;
}

.booking-help-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-form-card {
  padding: 28px 22px;
}

.booking-heading {
  margin-bottom: 22px;
}

.booking-form-grid {
  display: grid;
  gap: 16px;
}

.booking-note {
  background: #f7fafb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-submit-row {
  margin-top: 4px;
}

.booking-submit-row .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .booking-hero {
    padding: 36px 0 10px;
  }

  .booking-hero-copy h2 {
    font-size: 2.85rem;
  }

  .booking-layout {
    grid-template-columns: 0.95fr 1.35fr;
    align-items: start;
  }

  .booking-side-card,
  .booking-form-card {
    padding: 32px 28px;
  }

  .booking-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form-grid .full-width {
    grid-column: 1 / -1;
  }
}

.is-loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.hero-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--surface-soft);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;

  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);

  flex-shrink: 0;
}

.hero-info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #0f172a;
}

.hero-info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-location-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-location-link:hover {
  color: #0f766e;
}
