.tour-container {
  width: 100%;
  margin: 20px auto;
  background: #f9fdfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  font-family: "Poppins", sans-serif;
  color: #06333a;
  line-height: 1.6;
}

.tour-header {
  text-align: center;
  background:#f75309;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.tour-header h2 {
  margin: 0;
  font-size: 26px;
}

.tour-header p {
  margin: 6px 0 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.tour-overview, .tour-itinerary, .tour-sightseeing {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tour-overview h3, .tour-itinerary h3, .tour-sightseeing h3 {
  color: #ff9933;
  margin-bottom: 10px;
}

.tour-itinerary ul {
  list-style: none;
  padding: 0;
}

.tour-itinerary li {
  padding: 8px 12px;
  border-left: 4px solid #ff9933;
  margin-bottom: 8px;
  background: #f2fbfb;
  border-radius: 6px;
}

.tour-sightseeing p {
  background: #e8f9f8;
  padding: 12px;
  border-left: 4px solid #ff9933;
  border-radius: 6px;
}
.heroimage{width:100%;}


.itinerary-container {
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  background: #f8fcfc;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  color: #06333a;
}

.itinerary-container h2 {
  text-align: center;
  background:#f75309;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.day-box {
  background: #fff;
  border-left: 6px solid #ff9933;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.day-box h3 {
  margin-top: 0;
color: #ff9933;
font-size: 150%;
font-weight: 600;
}

.day-box p {
  margin: 8px 0;
  line-height: 1.6;
}

.history {
  background:#fffaf0;
  border-left: 4px solid #ff9933;
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 12px;
}

.history h4 {
  margin: 0 0 6px;
  color: #0b4f6c;
  font-size: 15px;
}

.tips {
  background: #fffaf0;
  border-left: 4px solid #ff9933;
  padding: 10px 14px;
  border-radius: 6px;
  margin-top: 10px;
}

.tips h5 {
  margin: 0 0 5px;
  font-size: 14px;
  color: #0b4f6c;
}

.tips ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}

.overnight {
  margin-top: 10px;
  font-weight: 600;
  color: #04494a;
  font-size: 14px;
}
.itinerary-notes {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 25px;
  background: #fffaf0;
  border-left: 6px solid #ff9933;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.itinerary-notes h3 {
  color: #d35400;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.itinerary-notes ul {
  margin-left: 20px;
  list-style-type: disc;
}

.itinerary-notes ul li {
  margin-bottom: 6px;
  color: #333;
}

.itinerary-notes .end-message {
  font-weight: bold;
  text-align: center;
  color: #2e8b57;
  margin: 20px 0;
  font-size: 1.1em;
}



.Booknowtour{
    width:200px;
    margin:20px auto;
    height:50px;
    border-radius:50px;
    text-align:center;
    font-weight:bold;
    color:#fff;
    background:#f75309;
    padding:12px 12px;
    cursor:pointer;
}
/* Popup Background */
.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:999;
}

/* Popup Box */
.popup-content{
    background:#fff;
    width:400px;
    margin:100px auto;
    padding:25px;
    border-radius:8px;
    position:relative;
}

.popup-content h3{
    text-align:center;
    margin-bottom:15px;
}

.popup-content input{
    width:100%;
    padding:10px;
    margin-bottom:12px;
}

.popup-content button{
    width:100%;
    padding:10px;
    background:#f75309;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:16px;
}

/* Close Button */
.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:20px;
    cursor:pointer;
}

