* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #eef2ff;
  background:
    radial-gradient(circle at top right, rgba(63, 120, 255, 0.10), transparent 22%),
    linear-gradient(180deg, #071018 0%, #09131e 100%);
}
a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-dark {
  background: rgba(255,255,255,0.02);
  padding-top: 26px;
  padding-bottom: 26px;
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}

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

.brand-logo {
  width: 138px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: #000;
  border-radius: 12px;
  padding: 3px 5px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}

.hero {
  position: relative;
  min-height: 88vh;
  background:
    linear-gradient(rgba(4, 9, 16, 0.55), rgba(4, 9, 16, 0.82)),
    url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 66, 0.25), transparent 65%);
  filter: blur(20px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(61, 107, 255, 0.22), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 110px;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd54d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.lead {
  color: #dde7ff;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero-actions,
.hero-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-contact {
  margin-top: 20px;
  color: #d4dcf3;
  font-size: 0.95rem;
}

.hero-contact span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #4d74ff;
  background: linear-gradient(135deg, #4d74ff, #3451d1);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 10px 24px rgba(52, 81, 209, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(52, 81, 209, 0.36);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.38);
  box-shadow: none;
}

.btn-gold {
  background: linear-gradient(135deg, #ffcf52, #e2a713);
  border-color: #f0b72d;
  color: #111827;
  box-shadow: 0 10px 24px rgba(226, 167, 19, 0.28);
}

.btn-full {
  width: 100%;
}

.note-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 20px 22px;
  color: #d7e3ff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}
.section-heading.left { text-align: left; }

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, rgba(17,26,39,0.98), rgba(8,14,22,0.99));
  border: 1px solid rgba(157, 185, 255, 0.14);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.24);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd54d, #4d74ff);
  opacity: 0.95;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 213, 77, 0.28);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.price {
  white-space: nowrap;
  font-weight: 800;
  color: #ffd54d;
  background: rgba(255, 213, 77, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.feature-block {
  margin-bottom: 18px;
}

.feature-block h4 {
  color: #9db9ff;
  margin-bottom: 10px;
}

.feature-block ul {
  margin: 0;
  padding-left: 18px;
  color: #d7e3ff;
  line-height: 1.7;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.booking-panel,
.form-panel {
  background: linear-gradient(180deg, rgba(13,19,30,0.98), rgba(7,12,18,0.98));
  border: 1px solid rgba(157, 185, 255, 0.12);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

.calendar-wrap {
  display: grid;
  gap: 18px;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.date-card,
.slot-card {
  width: 100%;
  border: 1px solid rgba(157, 185, 255, 0.15);
  background: #0f1724;
  color: white;
  border-radius: 18px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.date-card:hover:not([disabled]),
.slot-card:hover:not([disabled]) {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 77, 0.34);
  background: #13203a;
}

.date-card[disabled],
.slot-card[disabled] {
  cursor: not-allowed;
}

.date-card.active,
.slot-card.active {
  outline: 2px solid #4d74ff;
  background: #13203a;
}

.date-card.is-closed {
  opacity: 0.55;
}

.date-label {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.date-status {
  font-size: 0.9rem;
  color: #b5c8ff;
}

.selected-date {
  margin-bottom: 12px;
  color: #d7e3ff;
  font-weight: 600;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.slot-card.is-booked {
  opacity: 0.45;
  background: #241218;
  color: #f1c6d2;
}

.slot-card.is-available {
  background: #0d2230;
  color: #d8f1ff;
}

.form-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-note {
  color: #d1ddf7;
}

.form-row {
  margin-bottom: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  background: #0a1320;
  border: 1px solid rgba(157, 185, 255, 0.16);
  color: white;
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 213, 77, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 213, 77, 0.08);
}

textarea { resize: vertical; }

.form-status {
  margin-top: 12px;
  min-height: 24px;
  color: #d7e3ff;
}

.form-status.success {
  color: #92f0b1;
}

.form-status.error {
  color: #ffb1b1;
}

.contact-box {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #d7e3ff;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050b10;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #c9d6ee;
}

@media (max-width: 980px) {
  .cards,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .dates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .dates-grid,
  .slots-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 62px;
    padding-bottom: 74px;
  }

  .card-top,
  .footer-inner {
    flex-direction: column;
  }

  .brand-with-logo {
    flex-direction: row;
    align-items: center;
  }

  .brand-logo {
    width: 118px;
    height: 50px;
  }

  .hero-contact span {
    width: 100%;
    border-radius: 14px;
  }
}


select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}


.specialty-cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
