/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.nav-link--active {
  color: #ffffff !important;
  opacity: 1 !important;
}

.contact-page {
  background: #000;
  overflow-x: hidden;
}

.contact-main {
  position: relative;
  width: 100%;
}

/* ============================================================
   CONTACT HERO
   ============================================================ */
.con-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 8% 15vh 8%;
}

.con-hero__background-text {
  position: relative;
  margin-top: 15vh;
  margin-bottom: 5vh;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.con-hero__line {
  font-family: "Montserrat", sans-serif;
  font-size: 17vw;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.85;
  color: #ffffff;
  opacity: 0.15;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-align: center;
}

/* ============================================================
   CONTACT BOOKING SECTION
   ============================================================ */
.contact-layout {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 8rem;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}

/* LEFT: CALENDAR */
.booking-calendar {
  flex: 1.1;
  padding: 4rem 3.5rem;
  border-radius: 2rem;
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(4rem) saturate(1.5);
  -webkit-backdrop-filter: blur(4rem) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4rem 10rem rgba(0,0,0,0.7);
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Alles in het midden */
}

.booking-header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.booking-title-main {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 1rem 2.8rem;
  border-radius: 10rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}

.toggle-icon {
  opacity: 0.6;
}

.booking-steps {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-text-subtle);
}

.step-label {
  transition: all 0.3s ease;
  opacity: 0.3;
}

.step-label.active {
  color: var(--color-text);
  opacity: 1;
}

/* STEP VISIBILITY */
.booking-step-content {
  display: none;
  width: 100%; /* Dwing volledige breedte binnen de container */
  animation: fadeIn 0.5s ease forwards;
}

.booking-step-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-summary {
  width: 100%;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 1.2rem 2rem;
  border-radius: 1rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(255,255,255,0.03);
}

.booking-summary span {
  font-weight: 700;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: -1.2rem;
  margin-bottom: 2.2rem;
  width: 100%;
}

.cal-month {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.cal-nav-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cal-nav-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.calendar-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.cal-day-name {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-subtle);
  margin-bottom: 0.5rem;
}

.cal-day {
  aspect-ratio: 1; /* Perfect vierkant, minder hoog */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Standaard heel donker/transparant */
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.6);
}

.cal-day:not(.empty):hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: #fff;
}

.cal-day.empty {
  opacity: 0.1;
  pointer-events: none;
}

.cal-day.active {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0.5rem 1.5rem rgba(255,255,255,0.05);
  font-weight: 700;
  color: #fff;
}

.cal-footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-subtle);
  margin-top: 1rem;
}

/* TIME STEP */
.time-step-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.back-to-cal {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 0.5rem 1rem;
}

.back-to-cal:hover {
  opacity: 1;
}

.selected-date-display {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

#displayDate {
  color: #fff;
  font-weight: 700;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.time-slot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.time-slot.active {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0.5rem 2rem rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* BOOKING FORM (Step 3 internal) */
.sleek-form-booking {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.form-group-booking {
  position: relative;
  width: 100%;
}

.sleek-input-small {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.8rem;
  padding: 1.4rem 1.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.sleek-input-small:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
}

.booking-submit {
  background: #fff;
  color: #000;
  border: none;
  padding: 1.8rem 3.6rem;
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-premium);
  margin-top: 1rem;
  width: fit-content;
  align-self: center;
}

.booking-submit:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(255,255,255,0.1);
}

.booking-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.back-to-time {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.back-to-time:hover {
  opacity: 1;
}

/* RIGHT: CONTACT INFO */
.contact-info {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  padding: 3.5rem; /* Achtergrondpaneel voor leesbaarheid */
  border-radius: 2rem;
  background: rgba(15, 15, 18, 0.4);
  backdrop-filter: blur(2rem) saturate(1.2);
  -webkit-backdrop-filter: blur(2rem) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2rem 5rem rgba(0,0,0,0.3);
}

.glass-card__label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  line-height: 1;
}

.contact-title em {
  font-style: italic;
  font-weight: 900;
  opacity: 1;
  color: rgba(255,255,255,0.6);
}

.contact-intro {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 5rem;
  line-height: 1.7;
  max-width: 48rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 6rem;
}

.contact-row {
  display: flex;
  gap: 2rem;
  align-items: baseline;
}

.c-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-subtle);
  width: 9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.c-value {
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.c-value[href]:hover {
  opacity: 0.7;
}

/* SLEEK FORM */
.sleek-form {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 48rem;
}

.form-group {
  position: relative;
}

.sleek-input {
  width: 100%;
  background: rgba(0,0,0,0.2); /* Lichte achtergrond voor leesbaarheid */
  border: 1px solid rgba(255,255,255,0.1); /* Volledige rand ipv alleen onder */
  border-radius: 0.8rem;
  padding: 1.4rem 1.6rem;
  color: #fff;
  font-size: 1.3rem;
  font-family: inherit;
  transition: all 0.4s var(--ease-premium);
}

.sleek-input::placeholder {
  color: rgba(255,255,255,0.5); /* Beter leesbaar */
}

.sleek-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 1rem rgba(255,255,255,0.05);
}

textarea.sleek-input {
  resize: vertical;
  min-height: 4rem;
}

.sleek-submit {
  background: #fff;
  color: #000;
  border: none;
  padding: 1.8rem 3.6rem;
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.4s var(--ease-premium);
  margin-top: 2rem;
}

.sleek-submit:hover {
  background: rgba(255,255,255,0.8);
  transform: translateY(-3px);
  box-shadow: 0 1rem 3rem rgba(255,255,255,0.15);
}

.sleek-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  border-radius: 1rem;
  transition: all 0.4s ease;
}

.form-status.success {
  color: #4ade80;
  padding: 2rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.form-status.error {
  color: #f87171;
  padding: 1.5rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .con-hero__line {
    font-size: 25vw;
    margin-top: 5vh;
  }

  .contact-layout {
    flex-direction: column-reverse; /* Form on top, calendar below on mobile/tablet */
    gap: 8rem;
  }
  
  .booking-calendar,
  .contact-info {
    flex: 1;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE OPTIMALISATIES (Additive)
   ============================================================ */
@media (max-width: 768px) {
  .con-hero__line {
    font-size: 22vw;
  }
  .contact-title {
    font-size: 3.5rem;
  }
  .booking-calendar, .contact-info {
    padding: 2rem;
  }
  .cal-day {
    height: 4rem;
  }
}

@media (max-width: 480px) {
  .con-hero__line {
    font-size: 25vw;
  }
  .contact-title {
    font-size: 2.8rem;
  }
  .booking-calendar, .contact-info {
    padding: 1.5rem;
  }
  .cal-day {
    height: 3.5rem;
    font-size: 0.9rem;
  }
  .time-slot {
    padding: 1rem;
  }
}

@media (max-width: 375px) {
  .con-hero__line {
    font-size: 28vw;
  }
  .contact-title {
    font-size: 2.4rem;
  }
  .cal-day {
    height: 3rem;
  }
}
