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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #f5f5f5;
  color: #050505;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
.cta:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(245, 245, 245, 0.18);
}

.secondary {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border: 1px solid #f5f5f5;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.secondary:hover,
.secondary:focus {
  background-color: rgba(245, 245, 245, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(6px);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: #f5f5f5;
}

.hero-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(160deg, #0c0c0c 0%, #050505 60%, #151515 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 30ch;
  color: rgba(245, 245, 245, 0.78);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.75) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
}

.hero-visual-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(245, 245, 245, 0.18);
  color: rgba(245, 245, 245, 0.78);
}

.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.04);
}

.booking-section {
  padding: 4.5rem 0;
}

.booking-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

.info-card p {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.info-card p strong {
  color: #f5f5f5;
  font-weight: 600;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.calendar-card {
  background: rgba(245, 245, 245, 0.02);
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.section-header {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.section-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.section-title-link:hover {
  color: rgba(245, 245, 245, 0.7);
}

.section-header p {
  color: rgba(245, 245, 245, 0.68);
}

.about-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.about-grid article,
.services-grid article {
  padding: 1.75rem;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.85);
  transition: transform 0.2s ease;
}

.about-grid article:hover,
.services-grid article:hover {
  transform: translateY(-4px);
}

.about-grid h3,
.services-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.booking-section {
  background: linear-gradient(160deg, #050505 0%, #101010 60%, #050505 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.calendar-card {
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.9);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-header button {
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.calendar-month {
  font-size: 1.3rem;
  font-weight: 600;
}

.calendar-year {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.6);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-cell {
  padding: 0.85rem 0;
  text-align: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  position: relative;
}

.calendar-cell.day-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.5);
  border: none;
}

.calendar-cell.available {
  border-color: rgba(76, 175, 80, 0.5);
  border-width: 2px;
  background-color: transparent;
  color: rgba(76, 175, 80, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.calendar-cell.available:hover {
  background-color: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.8);
  transform: translateY(-2px);
}

.calendar-cell.booked {
  color: rgba(245, 245, 245, 0.3);
  border-color: rgba(245, 245, 245, 0.2);
  background-color: transparent;
  cursor: not-allowed;
  position: relative;
  border-width: 2px;
  font-weight: 500;
}

.calendar-cell.booked::before {
  content: 'FULL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}
}

.calendar-cell.blocked-date {
  background: transparent !important;
  color: rgba(244, 67, 54, 0.6) !important;
  border-color: rgba(244, 67, 54, 0.4) !important;
  border-width: 2px !important;
  cursor: not-allowed !important;
  opacity: 0.8;
  position: relative;
  font-weight: 500;
}

.calendar-cell.blocked-date:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(244, 67, 54, 0.4) !important;
  opacity: 0.8;
}

.calendar-cell.blocked-date::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: rgba(244, 67, 54, 0.7);
  transform: translateY(-50%) rotate(-15deg);
  pointer-events: none;
}

.calendar-cell.selected {
  background-color: #2196F3;
  color: #ffffff;
  border-color: #2196F3;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.7);
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 245, 245, 0.05);
}

.calendar-legend .legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legend-dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 4px;
  border: 1.5px solid rgba(245, 245, 245, 0.3);
}

.legend-dot.available {
  background-color: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.6);
}

.legend-dot.booked {
  background-color: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.6);
}

.legend-dot.blocked {
  background-color: rgba(245, 245, 245, 0.05);
  border-color: rgba(245, 245, 245, 0.2);
  position: relative;
}

.legend-dot.blocked::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  background: rgba(245, 245, 245, 0.4);
  transform: translateY(-50%) rotate(-20deg);
}

.legend-dot.selected {
  background-color: #2196F3;
  border-color: #2196F3;
}

.booking-form {
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.9);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  scroll-margin-top: 1rem;
}

.booking-form.form-highlight {
  animation: formPulse 2s ease-in-out;
  border-color: rgba(0, 255, 136, 0.6);
}

@keyframes formPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 255, 136, 0);
    border-color: rgba(245, 245, 245, 0.1);
  }
  25% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.6);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    border-color: rgba(0, 255, 136, 0.8);
  }
  75% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.6);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.65);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background-color: rgba(5, 5, 5, 0.85);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 10px;
  color: #f5f5f5;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f5f5f5;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-hint {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.6);
}

.form-status {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.15);
  color: rgba(76, 175, 80, 0.95);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-status.error {
  background: rgba(244, 67, 54, 0.15);
  color: rgba(244, 67, 54, 0.95);
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Cancellation Notice */
.cancellation-notice {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  text-align: center;
}

.cancellation-text {
  color: rgba(245, 245, 245, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cancellation-text strong {
  color: rgba(255, 193, 7, 0.95);
  font-weight: 600;
  font-size: 1rem;
}

.contact-link {
  color: rgba(255, 193, 7, 0.9);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 193, 7, 0.4);
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: rgba(255, 193, 7, 1);
  border-bottom-color: rgba(255, 193, 7, 0.8);
}

/* Mobile Notification */
.mobile-notification {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #050505;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
  z-index: 10000;
  transition: all 0.3s ease;
  max-width: 90vw;
  text-align: center;
}

.mobile-notification.show {
  top: 20px;
}

.contact-section {
  background: #050505;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.contact-info p {
  margin: 0;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
}

.contact-info strong {
  color: rgba(245, 245, 245, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  transition: background-color 0.2s ease;
}

.social-link:hover,
.social-link:focus {
  background-color: rgba(245, 245, 245, 0.12);
}

.contact-form {
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.9);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(245, 245, 245, 0.05);
  background: #050505;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.55);
}

.footer-note {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Time Slot Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1002;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: min(500px, 90vw);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.modal-header > div {
  flex: 1;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.modal-slot-count {
  font-size: 0.9rem;
  color: rgba(76, 175, 80, 0.8);
  font-weight: 500;
  margin: 0;
}

.modal-instruction {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
  margin: 0.5rem 0 0 0;
  font-style: italic;
  display: none;
}

@media (max-width: 900px) {
  .modal-instruction {
    display: block;
  }
}

.modal-close {
  background: none;
  border: none;
  color: rgba(245, 245, 245, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
  background-color: rgba(245, 245, 245, 0.1);
  color: #f5f5f5;
  outline: none;
}

/* Time Period Sections */
.time-period-section {
  margin-bottom: 2rem;
}

.time-period-section:last-child {
  margin-bottom: 0;
}

.time-period-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.5);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
  font-weight: 600;
}

.period-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.time-slot-btn {
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(245, 245, 245, 0.15);
  border-radius: 10px;
  background: rgba(5, 5, 5, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
  color: #f5f5f5;
  white-space: nowrap;
}

.time-slot-btn.available {
  border-color: rgba(76, 175, 80, 0.4);
  background: transparent;
  color: rgba(76, 175, 80, 0.8);
  border-width: 2px;
  font-weight: 500;
}

.time-slot-btn.available:hover {
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.time-slot-btn.available:active {
  transform: translateY(0);
  background: rgba(76, 175, 80, 0.15);
}

.time-slot-btn:hover {
  background: rgba(245, 245, 245, 0.08);
  border-color: rgba(245, 245, 245, 0.3);
  transform: translateY(-1px);
}

.time-slot-btn:active {
  transform: translateY(0);
}

.time-slot-btn.booked {
  border-color: rgba(244, 67, 54, 0.3);
  background: transparent;
  color: rgba(244, 67, 54, 0.5);
  cursor: not-allowed;
  opacity: 0.6;
  position: relative;
  border-width: 2px;
  font-weight: 500;
}

.time-slot-btn.booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(244, 67, 54, 0.5);
  transform: translateY(-50%) rotate(-15deg);
}

.time-slot-btn.booked:hover {
  background: transparent;
  border-color: rgba(244, 67, 54, 0.3);
  transform: none;
}

.no-slots-message {
  padding: 1.5rem;
  text-align: center;
  color: rgba(245, 245, 245, 0.5);
  font-size: 0.9rem;
  font-style: italic;
}

/* Confirmation Modal Styles */
.confirmation-modal {
  max-width: 500px;
  padding: 0;
  overflow-y: auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.confirmation-header {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}

.confirmation-header .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.75rem;
  width: 2rem;
  height: 2rem;
}

.confirmation-header .modal-close:hover,
.confirmation-header .modal-close:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #00ff88;
  margin: 0 auto 1rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.confirmation-header h2 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.confirmation-body {
  padding: 1.75rem;
  background: rgba(12, 12, 12, 0.95);
  overflow-y: auto;
  flex: 1;
}

.confirmation-message {
  text-align: center;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.save-reminder {
  text-align: center;
  color: rgba(255, 193, 7, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.save-reminder strong {
  color: rgba(255, 193, 7, 1);
}

.confirmation-code {
  background: rgba(76, 175, 80, 0.08);
  border: 1.5px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.confirmation-code .code-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 0.5rem;
}

.confirmation-code .code-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(76, 175, 80, 0.9);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
  margin: 0;
  word-break: break-all;
}

.booking-details {
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-row:first-child {
  padding-top: 0;
}

.detail-label {
  color: rgba(245, 245, 245, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  color: #f5f5f5;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.confirmation-note {
  text-align: center;
  color: rgba(245, 245, 245, 0.4);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.confirmation-footer {
  padding: 1.25rem 1.75rem;
  background: rgba(5, 5, 5, 0.9);
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.confirmation-footer .cta {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  border: none;
}

.confirmation-footer .cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(245, 245, 245, 0.2);
}

.confirmation-footer .add-calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.confirmation-footer .add-calendar-btn:hover:not(:disabled) {
  background: rgba(76, 175, 80, 1);
}

@media (max-width: 900px) {
  .site-header {
    padding: 1rem 0;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .primary-nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p {
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: static;
  }

  .section {
    padding: 3.5rem 0;
  }

  .booking-info {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .cta,
  .secondary {
    width: 100%;
  }

  .calendar-grid {
    gap: 0.4rem;
  }

  .calendar-cell {
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }

  .calendar-cell.available::after {
    width: 1rem;
    height: 1rem;
    font-size: 0.6rem;
  }

  .calendar-legend {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.75rem;
  }

  .calendar-legend .legend {
    gap: 0.4rem;
  }

  .legend-dot {
    width: 0.6rem;
    height: 0.6rem;
  }

  .footer-content {
    text-align: center;
  }

  .hero-visual {
    min-height: 220px;
  }

  .modal-content {
    padding: 1.5rem;
    width: 95vw;
    max-width: 95vw;
    max-height: 95vh;
  }

  .confirmation-modal {
    max-height: 95vh;
  }

  #time-slot-modal .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92vw;
    max-width: 92vw;
    max-height: 85vh;
    overflow-y: auto;
  }

  #time-slot-modal .modal-overlay {
    background: rgba(0, 0, 0, 0.85);
  }

  .modal-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }

  .time-period-label {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .period-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.6rem;
  }

  .time-slot-btn {
    padding: 0.8rem 0.5rem;
    font-size: 0.85rem;
  }

  .confirmation-header {
    padding: 1.5rem 1rem;
  }

  .success-icon {
    width: 56px;
    height: 56px;
    font-size: 32px;
    margin-bottom: 0.75rem;
  }

  .confirmation-body {
    padding: 1.5rem;
  }

  .confirmation-code {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .confirmation-code .code-value {
    font-size: 1.25rem;
  }

  .booking-details {
    padding: 1rem;
  }

  .detail-row {
    padding: 0.5rem 0;
  }

  .detail-label,
  .detail-value {
    font-size: 0.9rem;
  }

  .confirmation-note {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .cancellation-notice {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
  }

  .cancellation-text {
    font-size: 0.9rem;
  }

  .cancellation-text strong {
    font-size: 0.95rem;
  }
}
