.justify-content {
  text-align: justify;
}

/* ################ Number Of Days(Range Slider) ########################### */
.range-container {
  width: 100%;
  position: relative;
}

.title {
  font-weight: bold;
  font-size: 18px;
}

.slider-track {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  margin: 50px 0 30px;
  cursor: pointer;
  width: 100%;
}

input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 3;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 3;
}

.range-fill {
  position: absolute;
  height: 6px;
  background: #0a0a0a;
  border-radius: 3px;
  z-index: 1;
}

.labels {
  display: flex;
  justify-content: space-between;
  margin-top: -15px;
  font-size: 14px;
}

.tooltip {
  position: absolute;
  top: -35px;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease;
  pointer-events: none;
}

.tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.tooltip.active {
  opacity: 1;
  visibility: visible;
}

/* ################ Login and Register Page ########################### */


.travel-hero {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.9), rgba(52, 168, 83, 0.8)),
  url('assets/img/banner/login1.webp') no-repeat center center;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.brand-logo {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content {
  max-width: 500px;
  z-index: 2;
}

.hero-content h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.auth-container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.auth-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #E2E8F0;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  color: #718096;
  position: relative;
}

.auth-tab.active {
  color: var(--primary-color);
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.auth-content {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50px;
  color: #A0AEC0;
}

.btn-auth {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s;
  margin-top: 1rem;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #A0AEC0;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #E2E8F0;
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.social-auth {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
  color: var(--dark-color);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.facebook-btn:hover {
  background-color: #3B5998;
  color: white;
}

.google-btn:hover {
  background-color: #DB4437;
  color: white;
}

.twitter-btn:hover {
  background-color: #1DA1F2;
  color: white;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #718096;
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

/* Floating travel elements */
.floating-element {
  position: absolute;
  opacity: 0.8;
  z-index: 1;
}

.suitcase {
  top: 20%;
  right: 10%;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  color: var(--accent-color);
}

.passport {
  bottom: 15%;
  left: 10%;
  font-size: 2.5rem;
  animation: float 7s ease-in-out infinite 1s;
  color: var(--error-color);
}

.camera {
  top: 60%;
  right: 15%;
  font-size: 2rem;
  animation: float 5s ease-in-out infinite 0.5s;
  color: white;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .travel-hero {
    min-height: auto;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .floating-element {
    display: none;
  }
}

/* Form switching animation */
.auth-form {
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateX(0);
}

.auth-form.hidden {
  display: none;
  opacity: 0;
  transform: translateX(100px);
}
.dark-menu{
  background: #172138 !important;
}


/*################# Room Selection #########*/
.pricing-option {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #eaeaea;
}

.pricing-option:hover {
  background-color: #f8f9fa;
}

.pricing-option.selected {
  background-color: #f0f5ff;
}

.radio-btn {
  height: 22px;
  width: 22px;
  min-width: 22px;
  border: 2px solid #c5c5c5;
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.pricing-option:hover .radio-btn {
  border-color: #7a9cc6;
}

.radio-btn::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: #4a6fa5;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .radio-btn {
  border-color: #4a6fa5;
}

input[type="radio"]:checked + .radio-btn::after {
  opacity: 1;
}

input[type="radio"]:checked ~ .room-info .room-name {
  color: #4a6fa5;
}

.room-info {
  flex-grow: 1;
}

.room-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
  transition: color 0.2s;
}

.room-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.room-price {
  font-weight: 700;
  color: #333;
  font-size: 1.3rem;
}

.divider {
  height: 1px;
  background-color: #eaeaea;
  margin: 0 25px;
}

.selected-plan {
  padding: 20px 25px;
  background-color: #4a6fa5;
  color: white;
  text-align: center;
  display: none;
}

.selected-plan.visible {
  display: block;
}

.selected-plan h3 {
  margin-bottom: 8px;
  font-weight: 500;
}

.selected-price {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 500px) {
  .pricing-option {
    padding: 15px 20px;
  }

  .room-name {
    font-size: 1.1rem;
  }

  .room-price {
    font-size: 1.2rem;
  }
  .duration-selector {
    padding: 12px 20px;
  }
}
.price-starts {
  font-size: 0.9rem;
  color: #4e4d4d;
  margin-top: 5px;
}
.duration-selector {
  background: #5484ed;
  color: white;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}

.duration-text {
  font-size: 16px;
  font-weight: 500;
}

.duration-value {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
