﻿:root {
  --pg-blue: #1a4cd7;
  --pg-dark: #0e1425;
  --pg-cream: #f7f4ef;
  --pg-sand: #efe7db;
}

body {
  font-family: "Assistant", "Rubik", "Heebo", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--pg-cream) 100%);
  color: var(--pg-dark);
}

.skip-link {
  position: absolute;
  top: -48px;
  right: 12px;
  background: #111827;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1055;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 2px;
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(26, 76, 215, 0.15), transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(26, 76, 215, 0.12), transparent 45%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--pg-blue);
  font-weight: 700;
}

.booking {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pg-sand);
  padding: 16px;
}

.booking-body {
  padding: 16px;
}

.pill {
  background: #1f9d55;
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.stat {
  background: white;
  border-radius: 12px;
  padding: 16px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card,
.price-card,
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  padding: 12px 0;
  border-bottom: 1px dashed #c7c7c7;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  background: white;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-item span {
  width: 36px;
  height: 36px;
  background: var(--pg-blue);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
}

.price-card ul {
  padding: 0;
  list-style: none;
}

.price-card ul li {
  padding: 6px 0;
}

.price-card.featured {
  border: 2px solid var(--pg-blue);
  position: relative;
}

.price-card.featured .badge {
  position: absolute;
  top: -12px;
  right: 16px;
}

.cta {
  background: var(--pg-dark);
  color: white;
}

footer {
  background: white;
}

.date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.date-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f2f2;
  text-decoration: none;
  color: var(--pg-dark);
  font-weight: 600;
}

.date-pill.active {
  background: var(--pg-blue);
  color: white;
}

.slot-option {
  display: block;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
}

.slot-option input {
  display: none;
}

.slot-option span {
  display: block;
  padding: 6px 0;
  border-radius: 8px;
  font-weight: 600;
}

.slot-option input:checked + span {
  background: var(--pg-blue);
  color: white;
}


@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
