/* 공항 픽업 예약 페이지 전용 스타일 - KingKong Transport */

/* 공항 서비스 특화 스타일 */
.service-tab[data-service="airport"] .tab-icon {
  background: linear-gradient(135deg, #007bff, #0056b3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-tab[data-service="airport"].active {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
  border-color: #007bff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
}

.service-tab[data-service="airport"]:hover {
  border-color: #007bff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.service-tab[data-service="airport"]::before {
  background: linear-gradient(90deg, #007bff, #0056b3);
}

/* 공항 전용 일정 아이콘 */
.schedule-icon.airport {
  color: #007bff;
}

/* 공항 안내 스타일 */
.airport-info {
  margin-bottom: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafe 0%, #e6f2ff 100%);
  border: 1px solid #b3d9ff;
  border-radius: 12px;
  border-left: 4px solid #007bff;
}

.airport-info h4 {
  margin: 0 0 12px 0;
  color: #007bff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.airport-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.airport-item {
  font-size: 14px;
  color: #495057;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border-left: 3px solid #007bff;
}

/* 반응형 */
@media (max-width: 768px) {
  .airport-info {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .airport-info h4 {
    font-size: 15px;
  }
  
  .airport-item {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/* 공항 드롭다운 특화 스타일 */
.airport-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999; /* 높은 z-index로 지도 위에 표시 */
  max-height: 200px;
  overflow-y: auto;
  margin-top: 4px;
}

.airport-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.airport-option:last-child {
  border-bottom: none;
}

.airport-option:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.airport-option:hover {
  background-color: #f8f9fa;
}

.airport-option.selected {
  background-color: #e3f2fd;
  color: #1976d2;
}

.airport-option::before {
  content: "✈️";
  font-size: 12px;
  margin-right: 4px;
}

/* 항공편 입력 특화 스타일 */
.flight-input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.flight-number-input {
  padding: 10px 12px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s ease;
}

.flight-number-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.flight-number-input:disabled {
  background: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
}

/* 공항 전용 버튼 색상 (기본 파란색) */
.booking-submit-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.booking-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* 공항 전용 카운터 버튼 호버 */
.counter-btn:hover {
  border-color: #007bff;
  color: #007bff;
}

/* 공항 특화 입력 필드 포커스 */
.route-input-container:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.schedule-datetime-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.trip-type-btn.active {
  color: #007bff;
}

/* 모바일 floating 지도 토글 버튼 */
.mobile-map-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.map-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  gap: 2px;
  overflow: hidden;
}

.map-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.map-toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.toggle-icon {
  font-size: 20px;
  margin-bottom: -2px;
}

.toggle-text {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 0.9;
}

/* 모바일에서만 floating 버튼 표시 */
@media (max-width: 768px) {
  .mobile-map-toggle {
    display: block;
  }
}

/* 지도 모드일 때 버튼 스타일 변경 */
body.map-mode .map-toggle-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

body.map-mode .map-toggle-btn:hover {
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}
