/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/src/index.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/css/date-picker.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
/**
 * Modern Date Picker Styles
 * Mobile-first, clean design with European calendar layout
 */
.date-picker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeOut 0.2s ease-out forwards;
}
.date-picker-modal.active {
  display: flex;
  animation: fadeIn 0.2s ease-in forwards;
}
.date-picker-modal.active .date-picker-container {
  animation: slideUp 0.3s ease-out forwards;
}

.date-picker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.date-picker-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  max-width: 95vw;
  max-height: 95vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100px);
  opacity: 0;
}
@media (min-width: 768px) {
  .date-picker-container {
    max-width: 480px;
  }
}

.date-picker-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #072A46 0%, #051d30 100%);
  color: white;
}
.date-picker-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.date-picker-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.date-picker-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.date-picker-calendars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
@media (min-width: 768px) {
  .date-picker-calendars {
    flex-direction: row;
    gap: 32px;
  }
}

.date-picker-calendar {
  flex: 1;
  min-width: 280px;
}
@media (min-width: 768px) {
  .date-picker-calendar {
    min-width: 400px;
  }
}

.date-picker-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.date-picker-month-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.date-picker-prev,
.date-picker-next {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.date-picker-prev:hover,
.date-picker-next:hover {
  background: #f5f5f5;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.date-picker-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  padding: 8px 0;
  text-transform: uppercase;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-picker-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.date-picker-day:hover:not(.disabled):not(.empty) {
  background: #f5f5f5;
  transform: scale(1.05);
}
.date-picker-day.empty {
  cursor: default;
}
.date-picker-day.today {
  font-weight: 700;
  color: #072A46;
}
.date-picker-day.disabled {
  color: #999;
  cursor: not-allowed;
  opacity: 0.4;
}
.date-picker-day.unavailable {
  color: #e08891;
  font-weight: 600;
}
.date-picker-day.unavailable:hover {
  transform: none;
}
.date-picker-day.busy-range-start {
  background: linear-gradient(90deg, rgba(254, 240, 241, 0.05) 0%, rgba(254, 240, 241, 0.3) 30%, #fef0f1 70%);
  color: #e08891;
  font-weight: 600;
  opacity: 1;
}
.date-picker-day.busy-range-start:hover {
  color: #333;
}
.date-picker-day.busy-range-end {
  background: linear-gradient(90deg, #fef0f1 30%, rgba(254, 240, 241, 0.3) 70%, rgba(254, 240, 241, 0.05) 100%);
  color: #e08891;
  font-weight: 600;
  opacity: 1;
}
.date-picker-day.busy-range-end:hover {
  color: #333;
}
.date-picker-day.busy-range-middle {
  background: #fef0f1;
  color: #e08891;
  font-weight: 600;
  opacity: 1;
}
.date-picker-day.busy-range-single {
  background: #fef0f1;
  color: #e08891;
  font-weight: 600;
  opacity: 1;
}
.date-picker-day.half-available-end {
  background: linear-gradient(90deg, transparent 0%, transparent 50%, #fef0f1 50%, #fef0f1 100%);
}
.date-picker-day.half-available-start {
  background: linear-gradient(90deg, #fef0f1 0%, #fef0f1 50%, transparent 50%, transparent 100%);
}
.date-picker-day.in-range {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 0;
}
.date-picker-day.in-range:hover {
  background: rgba(0, 111, 230, 0.1);
}
.date-picker-day.in-hover-range {
  background: rgba(7, 42, 70, 0.1);
  border-radius: 0;
}
.date-picker-day.hover-end {
  background: rgba(7, 42, 70, 0.3);
  color: #333;
  font-weight: 600;
  border: 2px dashed #072A46;
}
.date-picker-day.in-hover-range-invalid {
  background: rgba(224, 136, 145, 0.15);
  border-radius: 0;
}
.date-picker-day.hover-end-invalid {
  background: rgba(224, 136, 145, 0.3);
  color: #333;
  font-weight: 600;
  border: 2px dashed #e08891;
  cursor: not-allowed;
}
.date-picker-day.selected {
  background: #072A46 !important;
  color: white !important;
  font-weight: 600;
}
.date-picker-day.selected:hover {
  background: #051d30 !important;
}
.date-picker-day.start-date {
  border-radius: 8px 0 0 8px !important;
}
.date-picker-day.start-date.end-date {
  border-radius: 8px !important;
}
.date-picker-day.end-date:not(.start-date) {
  border-radius: 0 8px 8px 0 !important;
}

.date-picker-footer {
  padding: 16px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: #fafafa;
}

.date-picker-cancel,
.date-picker-apply {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 100px;
}

.date-picker-cancel {
  background: white;
  color: #333;
  border: 1px solid #e0e0e0;
}
.date-picker-cancel:hover {
  background: #f5f5f5;
}

.date-picker-apply {
  background: #072A46;
  color: white;
}
.date-picker-apply:hover {
  background: #051d30;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 42, 70, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .date-picker-container {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  .date-picker-calendars {
    padding: 16px;
  }
  .date-picker-calendar {
    min-width: 100%;
  }
  .date-picker-header {
    padding: 16px;
  }
  .date-picker-header h3 {
    font-size: 18px;
    color: white;
  }
  .date-picker-close {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
}
.date-picker-calendars::-webkit-scrollbar {
  width: 8px;
}

.date-picker-calendars::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.date-picker-calendars::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.date-picker-calendars::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
/*!*******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/src/index.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/css/search-component.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************/
/**
 * Search Component Styles
 * Clean, modern search interface integrated into hero sections
 */
.search-component {
  width: 100%;
  background: #fff;
  padding: 2rem 0;
}
.search-component .search-form {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;
}
.search-component .search-field-service-types .search-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}
.search-component .search-field-service-types .service-type-checkboxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.search-component .search-field-service-types .service-type-checkbox {
  cursor: pointer;
  display: block;
}
.search-component .search-field-service-types .service-type-checkbox input[type=checkbox] {
  display: none;
}
.search-component .search-field-service-types .service-type-checkbox input[type=checkbox]:checked + .checkbox-custom {
  background: #072A46;
  color: #fff;
  border-color: #072A46;
}
.search-component .search-field-service-types .service-type-checkbox input[type=checkbox]:checked + .checkbox-custom i {
  color: #fff;
}
.search-component .search-field-service-types .service-type-checkbox .checkbox-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 100px;
}
.search-component .search-field-service-types .service-type-checkbox .checkbox-custom:hover {
  border-color: #072A46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}
.search-component .search-field-service-types .service-type-checkbox .checkbox-custom i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #072A46;
  transition: color 0.3s ease;
}
.search-component .search-field-service-types .service-type-checkbox .checkbox-custom .checkbox-label {
  font-size: 0.95rem;
  font-weight: 500;
}
.search-component .search-field-date-mode .search-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}
.search-component .search-field-date-mode .date-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.search-component .search-field-date-mode .date-mode-option {
  cursor: pointer;
  display: block;
}
.search-component .search-field-date-mode .date-mode-option input[type=radio] {
  display: none;
}
.search-component .search-field-date-mode .date-mode-option input[type=radio]:checked + .radio-custom {
  background: #072A46;
  color: #fff;
  border-color: #072A46;
}
.search-component .search-field-date-mode .date-mode-option input[type=radio]:checked + .radio-custom i {
  color: #fff;
}
.search-component .search-field-date-mode .date-mode-option .radio-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
}
.search-component .search-field-date-mode .date-mode-option .radio-custom:hover {
  border-color: #072A46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}
.search-component .search-field-date-mode .date-mode-option .radio-custom i {
  font-size: 1.2rem;
  color: #072A46;
  transition: color 0.3s ease;
}
.search-component .search-field-dates .search-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.search-component .search-field-dates .search-helper-text {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: #666;
}
.search-component .search-field-dates .search-helper-text .helper-single,
.search-component .search-field-dates .search-helper-text .helper-range {
  display: none;
}
.search-component .search-field-dates .search-helper-text.mode-single .helper-single {
  display: inline;
}
.search-component .search-field-dates .search-helper-text.mode-range .helper-range {
  display: inline;
}
.search-component .search-field-dates .input-dates {
  position: relative;
}
.search-component .search-field-dates .input-dates .form-control {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.search-component .search-field-dates .input-dates .form-control:hover, .search-component .search-field-dates .input-dates .form-control:focus {
  border-color: #072A46;
  outline: none;
}
.search-component .search-field-dates .input-dates i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.2rem;
  pointer-events: none;
}
.search-component .search-field-people .search-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}
.search-component .search-field-people .people-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.search-component .search-field-people .people-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
}
.search-component .search-field-people .people-input-group .form-control {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.search-component .search-field-people .people-input-group .form-control:hover, .search-component .search-field-people .people-input-group .form-control:focus {
  border-color: #072A46;
  outline: none;
}
.search-component .search-field-submit .search-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #072A46;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.search-component .search-field-submit .search-submit i {
  font-size: 1.2rem;
}
.search-component .search-field-submit .search-submit:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.search-component .search-field-submit .search-submit:active {
  transform: translateY(0);
}
.search-component .search-error {
  display: none;
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffe6e6;
  border-left: 3px solid #dc3545;
  border-radius: 4px;
}
.search-component .search-error-general {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .search-component .search-form {
    grid-template-columns: repeat(12, 1fr);
  }
  .search-component .search-form .search-field-service-types {
    grid-column: 1/-1;
  }
  .search-component .search-form .search-field-date-mode {
    grid-column: 1/4;
  }
  .search-component .search-form .search-field-dates {
    grid-column: 4/8;
  }
  .search-component .search-form .search-field-people {
    grid-column: 8/11;
  }
  .search-component .search-form .search-field-submit {
    grid-column: 11/-1;
    display: flex;
    align-items: flex-end;
  }
  .search-component .search-form .search-error-general {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .search-component .search-form {
    grid-template-columns: repeat(6, 1fr);
  }
  .search-component .search-form .search-field-service-types {
    grid-column: 1/-1;
  }
  .search-component .search-form .search-field-date-mode {
    grid-column: 1/-1;
  }
  .search-component .search-form .search-field-dates {
    grid-column: 1/4;
  }
  .search-component .search-form .search-field-people {
    grid-column: 4/-1;
  }
  .search-component .search-form .search-field-submit {
    grid-column: 1/-1;
  }
  .search-component .search-form .search-error-general {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .search-component .search-field-service-types .service-type-checkboxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .search-component .search-field-service-types .checkbox-custom {
    min-height: 70px;
    padding: 0.5rem;
  }
  .search-component .search-field-service-types .checkbox-custom i {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
  }
  .search-component .search-field-service-types .checkbox-custom .checkbox-label {
    font-size: 0.75rem;
  }
  .search-component .search-field-date-mode .date-mode-toggle {
    grid-template-columns: 1fr;
  }
  .search-component .search-field-people .people-inputs {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=searchComponent.css.map*/