
.travel-hero{
  width:100%;
  overflow:hidden;
  position:relative;
  font-family:Arial,sans-serif;
}

.travel-slider{
  position:relative;
  width:100%;
  height:100vh;
  min-height:750px;
}

.travel-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:0.6s ease;
}

.travel-slide.active{
  opacity:1;
  z-index:1;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* CONTENT */
.travel-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1300px;
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:120px 60px 80px;
}

/* LEFT */
.left-content{
  width:55%;
  color:#fff;
}

.tagline{
  display:inline-block;
  background:#ff6b00;
  padding:10px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.left-content h1{
  font-size:68px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:25px;
  color:#fff;
}

.left-content p{
  font-size:18px;
  line-height:1.8;
  color:#f2f2f2;
  margin-bottom:35px;
  max-width:650px;
}

/* BUTTONS */
.hero-btns{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
  text-decoration:none;
  padding:15px 30px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:#ff6b00;
  color:#fff;
}

.btn-primary:hover{
  background:#fff;
  color:#000;
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
}

.btn-outline:hover{
  background:#fff;
  color:#000;
}

/* FORM */
.inquiry-form{
  width:390px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:18px;
  padding:35px;
}

.inquiry-form h3{
  color:#fff;
  text-align:center;
  font-size:30px;
  margin-bottom:25px;
}

.form-group{
  margin-bottom:18px;
  color: #000;
}

.form-group input,
.form-group textarea{
  width:100%;
  border:none;
  outline:none;
  padding:15px;
  border-radius:8px;
  font-size:15px;
}

.form-group textarea{
  height:120px;
  color: #000;
  resize:none;
}

.inquiry-form button{
  width:100%;
  border:none;
  background:#ff6b00;
  color:#fff;
  padding:15px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.inquiry-form button:hover{
  background:#fff;
  color:#000;
}

/* ARROWS */
.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

.prev{
  left:20px;
}

.next{
  right:20px;
}

/* DOTS */
.dots{
  position:absolute;
  bottom:25px;
  left:0;
  width:100%;
  text-align:center;
  z-index:10;
}

.dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#fff;
  display:inline-block;
  margin:0 5px;
  opacity:0.5;
  cursor:pointer;
}

.dot.active{
  opacity:1;
  background:#ff6b00;
}

/* TABLET */
@media(max-width:992px){

  .travel-slider{
    min-height:100vh;
    height:auto;
  }

  .travel-content{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:110px 25px 90px;
    gap:35px;
  }

  .left-content{
    width:100%;
  }

  .left-content h1{
    font-size:48px;
  }

  .left-content p{
    margin:0 auto 30px;
  }

  .hero-btns{
    justify-content:center;
  }

  .inquiry-form{
    width:100%;
    max-width:500px;
  }
}

/* MOBILE PERFECT */
@media(max-width:768px){

  .travel-hero{
    overflow:hidden;
  }

  .travel-slider{
    height:auto;
    min-height:100vh;
  }

  .travel-slide{
    position:absolute;
    inset:0;
    min-height:100vh;
    background-size:cover;
    background-position:center center;
    display:none;
  }

  .travel-slide.active{
    display:block;
    position:relative;
  }

  .overlay{
    background:rgba(0,0,0,0.45);
  }

  .travel-content{
    width:100%;
    min-height:100vh;
    padding:70px 14px 60px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    text-align:left;
    gap:20px;
  }

  .left-content{
    width:100%;
    max-width:100%;
  }

  .tagline{
    font-size:11px;
    padding:7px 14px;
    margin-bottom:14px;
  }

  .left-content h1{
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
  }

  .left-content p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:20px;
  }

  .hero-btns{
    width:100%;
    flex-direction:column;
    gap:12px;
  }

  .btn-primary,
  .btn-outline{
    width:100%;
    text-align:center;
    padding:13px;
    font-size:14px;
  }

  .inquiry-form{
    width:100%;
    background:rgba(255,255,255,0.14);
    backdrop-filter:blur(8px);
    padding:18px 15px;
    border-radius:14px;
    margin-top:5px;
  }

  .inquiry-form h3{
    font-size:22px;
    margin-bottom:16px;
  }

  .form-group{
    margin-bottom:12px;
  }

  .form-group input,
  .form-group textarea{
    padding:13px;
    font-size:14px;
  }

  .form-group textarea{
    height:95px;
  }

  .inquiry-form button{
    padding:13px;
    font-size:14px;
  }

  .prev,
  .next{
    width:36px;
    height:36px;
    font-size:16px;
    top:50%;
    background:rgba(0,0,0,0.4);
  }

  .prev{
    left:8px;
  }

  .next{
    right:8px;
  }

  .dots{
    bottom:10px;
  }

  .dot{
    width:10px;
    height:10px;
  }
}

/* EXTRA SMALL */
@media(max-width:480px){

  .travel-content{
    padding:65px 12px 55px;
  }

  .left-content h1{
    font-size:24px;
  }

  .left-content p{
    font-size:13px;
  }

  .tagline{
    font-size:10px;
  }

  .inquiry-form{
    padding:16px 30px;
  }

  .inquiry-form h3{
    font-size:20px;
  }

  .form-group input,
  .form-group textarea{
    padding:12px;
    font-size:13px;
  }

  .btn-primary,
  .btn-outline{
    font-size:13px;
    padding:12px;
  }
}
