/* ============================= */
/* BOOKING SECTION */
/* ============================= */
.booking-section {
  padding: 90px 20px;

  font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.booking-container {
  max-width: 1000px;
  margin: 0 auto;

  background: #fff;

  border-radius: 34px;

  padding: 70px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.05);
}

/* ============================= */
/* HEADER */
/* ============================= */
.booking-subtitle {
  display: block;

  text-align: center;

  color: #3157e0;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.booking-title {
  text-align: center;

  color: #10224b;

  font-size: 54px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 12px;
}

.booking-text {
  text-align: center;

  color: #667791;

  font-size: 20px;

  margin-bottom: 55px;
}

.service-note {
  margin-top: 14px;

  padding: 14px 16px;

  background: rgba(49,87,224,0.06);

  border: 1px solid rgba(49,87,224,0.12);
  border-radius: 14px;

  font-size: 14px;
  line-height: 1.6;

  color: #42526b;
}

.service-note strong {
  color: #2447d7;
}

.honeypot {
  display: none;
}

.booking-response {
  grid-column: span 2;

  font-size: 15px;
  font-weight: 600;

  color: #2447d7;
}

/* ============================= */
/* TIME SLOTS */
/* ============================= */
.time-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;

    margin-top: 16px;
    width: 100%;
}

.time-slot-btn {
    border: 2px solid #4c6fff;
    background: white;
    color: #0d1b4c;

    padding: 12px 18px;
    border-radius: 12px;

    cursor: pointer;

    transition: 0.3s ease;

    font-weight: 600;
}

.time-slot-btn:hover {
    background: #4c6fff;
    color: white;
}

.time-slot-btn.active {
    background: #4c6fff;
    color: white;
}

.time-slot-btn.disabled {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #9ca3af;

    cursor: not-allowed;
    opacity: 0.7;
}

/* ============================= */
/* FORM */
/* ============================= */
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 28px 24px;
}

/* ============================= */
/* GROUP */
/* ============================= */
.booking-group {
  display: flex;
  flex-direction: column;
}

/* FULL WIDTH */
.booking-group.full-width {
  grid-column: span 2;
}

/* ============================= */
/* LABELS */
/* ============================= */
.booking-group label {
  font-size: 18px;
  font-weight: 700;

  color: #08214d;

  margin-bottom: 14px;
}

/* ============================= */
/* INPUTS */
/* ============================= */
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;

  border: 1px solid #d8dee9;
  border-radius: 16px;

  background: #fff;

  padding: 0 20px;

  font-size: 16px;
  color: #42526b;

  outline: none;

  transition: 0.25s ease;
}

/* HEIGHT */
.booking-form input,
.booking-form select {
  height: 48px;
}

/* TEXTAREA */
.booking-form textarea {
  min-height: 160px;

  padding-top: 18px;

  resize: vertical;
}

/* PLACEHOLDER */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #7c8797;
}

/* FOCUS */
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: #3157e0;

  box-shadow:
    0 0 0 4px rgba(49,87,224,0.08);
}

/* ============================= */
/* BUTTON */
/* ============================= */
.booking-btn {
  grid-column: span 2;

  width: 100%;
  height: 52px;

  border: none;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    #5a73ff,
    #2447d7
  );

  color: white;

  font-size: 20px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow:
    0 14px 30px rgba(49,87,224,0.22);
}

.booking-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(49,87,224,0.3);
}

.booking-btn:disabled {

    opacity: 0.7;

    cursor: not-allowed;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .booking-section {
    padding: 60px 15px;
  }

  .booking-container {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .booking-title {
    font-size: 38px;
  }

  .booking-text {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-group.full-width,
  .booking-btn {
    grid-column: span 1;
  }

  .booking-btn {
    height: 64px;
    font-size: 18px;
  }
}


/* ============================= */
/* POPUP */
/* ============================= */
.booking-popup {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.booking-popup.active {
    display: flex;
}

.booking-popup-content {

    background: white;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    max-width: 400px;

    width: 90%;
}

.booking-popup-content h3 {

    color: #0d1b4c;

    margin-bottom: 16px;
}

.booking-popup-content p {

    color: #555;

    margin-bottom: 24px;
}

.booking-popup-content button {

    background: #4c6fff;

    color: white;

    border: none;

    padding: 12px 24px;

    border-radius: 10px;

    cursor: pointer;

    font-weight: 600;
}