.features-1{
  padding: 100px 0;
  background: #fff;
}

.container-1{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.section-title-1{
  text-align: center;
  margin-bottom: 60px;
}

.section-title-1 span{
  color: #EEBF47;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title-1 h2{
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

.section-title-1 p{
  color: #666;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.feature-card-1{
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
  border: 1px solid #f1f1f1;
}

.feature-card-1:hover{
  transform: translateY(-10px);
}

.feature-card-1 i{
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #EEBF47;
  color: #000;
  border-radius: 50%;
  font-size: 35px;
  margin-bottom: 25px;
}

.feature-card-1 h4{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.feature-card-1 p{
  color: #666;
  line-height: 1.8;
}

/* WHY SECTION */

.why-section-1{
  padding: 100px 0;
  background: #f9f9f9;
}

.why-image-1 img{
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.why-content-1{
  padding-left: 40px;
}

.why-content-1 h2{
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.3;
}

.why-content-1 p{
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
}

.why-points-1{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.why-points-1 i{
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  background: #EEBF47;
  color: #000;
  font-size: 20px;
}

.why-points-1 h5{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* BOOKING SECTION */

.booking-section-1{
  padding: 100px 0;
  background: #fff;
}

.booking-box-1{
  background: #111;
  padding: 60px;
  border-radius: 35px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.booking-box-1 h2{
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.booking-box-1 p{
  color: #ccc;
  line-height: 1.8;
}

.form-control-1,
.form-select-1{
  width: 100%;
  height: 60px;
  border-radius: 15px;
  border: none;
  padding: 0 20px;
  margin-bottom: 25px;
  outline: none;
  font-size: 16px;
}

textarea.form-control-1{
  height: 160px;
  padding-top: 20px;
  resize: none;
}

.book-btn-1{
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 15px;
  background: #EEBF47;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s ease;
}

.book-btn-1:hover{
  background: #fff;
}

/* RESPONSIVE */

@media(max-width:991px){

  .why-content-1{
    padding-left: 0;
    margin-top: 40px;
  }

  .section-title-1 h2,
  .why-content-1 h2,
  .booking-box-1 h2{
    font-size: 34px;
  }

  .booking-box-1{
    padding: 40px 25px;
  }
}

@media(max-width:767px){

  .features-1,
  .why-section-1,
  .booking-section-1{
    padding: 70px 0;
  }

  .section-title-1 h2,
  .why-content-1 h2,
  .booking-box-1 h2{
    font-size: 28px;
  }

  .feature-card-1{
    padding: 30px 20px;
  }

  .feature-card-1 i{
    width: 75px;
    height: 75px;
    line-height: 75px;
    font-size: 28px;
  }

  .booking-box-1{
    border-radius: 25px;
  }
}

.contact-section{
    position: relative;
    padding: 100px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.contact-section::before{
    position: absolute;
    content: "";
    width: 450px;
    height: 450px;
    background: #EEBF47;
    border-radius: 50%;
    top: -180px;
    right: -150px;
    opacity: 0.10;
}

.contact-tag{
    display: inline-block;
    background: rgba(238,191,71,0.18);
    color: #A06409;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-title{
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.contact-title span{
    color: #EEBF47;
}

.contact-text{
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 60px;
}

.contact-form-box{
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.input-box{
    position: relative;
}

.input-box i{
    position: absolute;
    top: 18px;
    left: 18px;
    color: #EEBF47;
    font-size: 16px;
}

.input-box .form-control{
    width: 100%;
    height: 58px;
    border-radius: 15px;
    border: 1px solid #eee;
    padding-left: 50px;
    box-shadow: none;
    transition: 0.4s;
}

.textarea-box .form-control{
    height: auto;
    padding-top: 18px;
}

.input-box .form-control:focus{
    border-color: #EEBF47;
    box-shadow: 0 0 0 4px rgba(238,191,71,0.15);
}

.contact-btn{
    background: #EEBF47;
    color: #111;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s;
}

.contact-btn i{
    margin-left: 10px;
}

.contact-btn:hover{
    background: #111;
    color: #fff;
    transform: translateY(-5px);
}

.contact-info-box{
    background: #111;
    padding: 50px 40px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before{
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    background: #EEBF47;
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    opacity: 0.12;
}

.info-header span{
    color: #EEBF47;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.info-header h3{
    font-size: 36px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 40px;
}

.info-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.info-icon{
    width: 65px;
    height: 65px;
    background: #EEBF47;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i{
    color: #111;
    font-size: 24px;
}

.info-content h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-content p{
    margin: 0;
    color: #ccc;
    line-height: 1.8;
}

.contact-social{
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a{
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EEBF47;
    transition: 0.4s;
}

.contact-social a:hover{
    background: #EEBF47;
    color: #111;
    transform: translateY(-5px);
}

@media(max-width:991px){

    .contact-section{
        padding: 80px 0;
    }

    .contact-title{
        font-size: 38px;
    }

    .contact-form-box,
    .contact-info-box{
        padding: 35px 25px;
    }

    .info-header h3{
        font-size: 28px;
    }

}