
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}
.hero {
  position: relative;
  min-height: 100vh;
  background: url("22f754a081ce24da9a03c52058eb8c78b134d2ab.png") 
  no-repeat center center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(    rgba(30, 30, 30, 0.6) 0%,    
    rgba(1, 96, 76, 0.8) 100% );
}

.floating-btn {
  position: fixed;
  bottom: 30px;   
  right: 30px;  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding: 13px;
  border-radius: 50px;
  border: 1px solid #02ED85;
  background: #5C9A8D; 
  box-shadow: 0 0 13.2px 0 #00C950;
  cursor: pointer;
  z-index: 999; 
}
.floating-btn img {
  width: 30px;
  height: 30px;
}

.navbar {
  position: relative;
  z-index: 2; 
  padding: 10px 20px;   
  display: flex;
  align-items: center;
}
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Inter", sans-serif;
  color: #5AE0C5 !important; 
  font-weight: 700;
  font-size: 22px;   
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none; 
}
.logo:hover { color: #4cc4ad; }
.logo-shape { width: 22px; height: 22px; }


.navbar .navbar-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .nav-link {
  font-size: 16px;  
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover { color: #5AE0C5; }


.navbar .nav-link.active { font-weight: 600; color: #5AE0C5; }

.btn-login {
  color: white;
  background-color: #68AD9E;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 22px;   
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-login:hover {
  background-color: #579285;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.language-dropdown { position: relative; display: inline-block; }
.lang-btn { background: none; border: none; cursor: pointer; padding: 6px; }
.lang-btn img { width: 32px; height: 32px; }
.lang-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  min-width: 150px;
  z-index: 10;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.lang-menu a:hover { background-color: #68AD9E; color: #fff; }
.flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.lang-menu.show { display: block; }

.hero-content {
  position: relative;
  z-index: 2; 
  max-width: 1005px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 15px 40px;
}
.hero-subtitle {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;  
  color: #DDE2E4;
}



/* Hero Title & Description */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;  
  line-height: 42px;
  letter-spacing: -1.2px;   
  margin-bottom: 20px;    
  color: #F1F9F7;
  text-align: center;
}
.hero-description {
  font-size: 18px;  
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 160%;
  color: #DDE2E4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-book{
  color: #00BCD4 ;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-book {
  background-color: #73C0B0;
  border: none;
  color: #fff;
}
.btn-book:hover {
  background-color: #5aa496;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/* Booking Section */
.page-wrapper {
  background-color: #eaf6f3; 
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.booking-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 900px;
  width: 100%;
  display: flex;         
  gap: 40px;             
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.booking-left {
  flex: 1; 
}
.booking-right {
  flex: 1;
}
.booking-wrapper input,
.booking-wrapper select,
.booking-wrapper textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.booking-wrapper button {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
}

.booking-wrapper button:hover {
  background: #009e87;
}

.booking-wrapper h3 {
  font-size: 18px;
  font-weight: bold;
  color: #34564F;
}

.form-group {
  margin-bottom: 15px;
  color: #45556C;
  font-size: 14px;
  line-height: 20px;
}
.form-group input {
  display: block;
  color: #45556C;
  min-height: 20px; 
}
.form-group textarea{
  min-height: 98px;
}
.label {
  color: #62748E;
  font-size: 14px;
}
.value {
  color: #314158;
  font-size: 14px;
}
.review-box {
  background-color:  #f4f6f8;
  padding: 40px;
  border: 2px #DDE2E4;
  border-radius: 10px;
  margin-top: 20px;
}

.review-box h3 {
  margin-bottom: 15px;
  color: #34564F;
}
.review-item {
  display: flex;
  justify-content: space-between; 
  margin-bottom: 10px;
  font-size: 14px;
  color: #62748E;
}
.review-box button {
  margin-top: 15px;
  background: #00BBA7;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}
.review-box button:hover {
  background: #009e87;
}
.booking-outer-container {
  background: #fff;
  border-radius: 16px;
  padding: 40px 90px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Notes Section */
.outer-box {
  background-color: #EAF6F3;
  padding: 40px;            
}

.notes-container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 70px 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.25);
  margin: 8px 16px;
}
.notes-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #34564F;
  text-align: center;
  margin-bottom: 15px;
}
.notes-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #45556C;
  text-align: center;
  margin-bottom: 35px;
}
.notes-box {
  border: 1px dashed #CB822A;
  background-color: #FFF6EB;
  padding: 30px;
  border-radius: 8px;
  margin:  8px 16px;

}
.note-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.note-card p {
  color: #CB822A;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 5px;
  line-height: 1.4;
}


/* footer */
.footer {
  background-color: #34564F;
  color: #fff;
  padding-top: 60px;
  position: relative;
}

.footer h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer p,
.footer a,
.footer span {
  font-size: 16px;
  color: #fff;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ccc;
}


.footer .container {
  text-align: left; 
}
.footer .row {
  justify-content: flex-start; 
  text-align: left;
}

/* Contact info alignment */
.contact-info .d-flex {
  justify-content: flex-start !important; 
  text-align: left;
}

/* Footer bottom */
.footer-bottom {
  background-color: #28433E;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  width: 100%;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .media-icons {
  display: flex;
  gap: 15px;
}

.footer-bottom .media-icons img {
  width: 24px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1366PX) {
  .footer .contact-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .footer-bottom {
    text-align: left;
  }
  .footer .d-flex {
    justify-content: center !important;
  }
  .footer .row > div {
    text-align: center;
  }

   .footer-bottom .media-icons {
    order: 1; 
    margin-bottom: 8px;
  }
     .footer-bottom p {
    order: 2; 
  }}

  @media (max-width: 1024px) {
    .footer {
    text-align: center;
  }

  .footer .row {
    justify-content: center;
  }

  .footer .col-lg-5,
  .footer .col-lg-2,
  .footer .contact-info {
    text-align: center;
    margin-bottom: 20px; 
  }

  .footer .contact-info .d-flex {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom .media-icons {
    order: -1; 
  }
    .footer a.d-flex.align-items-center {
    justify-content: center;   
  }
  .footer .contact-info {
    text-align: center;
  }

  .footer .contact-info .d-flex {
    flex-direction: column;     
    align-items: center;        
  }

  .footer .contact-info img {
    margin-right: 0 !important; 
    margin-bottom: 8px; 
  }
  }
  
  @media (max-width: 767px) {
    .footer .row {
    text-align: center;
  }

  .footer .col-lg-5,
  .footer .col-lg-2,
  .footer .col-md-12 {
    margin-bottom: 20px;
  }

  .footer .contact-info div {
    justify-content: center !important;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom .media-icons {
    order: -1; 
    justify-content: center;
  }
}



@media (max-width: 1366px) {
  .hero-content {
    width: 90%;
    max-width: 900px; 
    margin: 0 auto;  
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 22px; 
    line-height: 1.6;
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    padding: 0 10px;
    line-height: 1.3;
    overflow: hidden;  
    text-overflow: ellipsis;
    width: 100%;
    font-size: 33px;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media (max-width: 1366px) {
  .navbar .navbar-collapse {
    justify-content: center;
    text-align: center;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: column; 
    align-items: center;  
    gap: 10px;
  }

  .d-lg-none { 
    display: flex !important;
    justify-content: center;
    width: 100%;
  }

  .language-dropdown {
    margin: 10px 0; 
    display: flex;
    justify-content: center;
  }
  .lang-menu {
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 1024px) {
  .booking-wrapper {
    flex-direction: column;   
    padding: 20px;
    gap: 20px;
  }

  .booking-outer-container {
    padding: 20px 30px;
  }

  .review-box {
    padding: 20px;
  }

  .notes-title {
    font-size: 28px;
  }
  .notes-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
.notes-container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 70px 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.25);
  margin: 8px 16px;
  width: 100%;
  margin: auto;
}
  .page-wrapper {
    padding: 20px;
  }

  .booking-outer-container {
    padding: 15px;
  }

  .booking-wrapper {
    padding: 20px;
  }

 .booking-outer-container {
    padding: 20px;         
    max-width: 100%;      
  }

  .booking-wrapper {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }

  /* Notes Section */
  .outer-box {
    padding: 20px; 
  }

  .notes-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .notes-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .notes-box {
    padding: 15px;
  }

  .note-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .note-card p {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .page-wrapper {
    padding: 10px;
  }

  .booking-outer-container {
    padding: 10px;
  }

  .booking-wrapper {
    padding: 15px;
    gap: 15px;
  }

  .review-box {
    padding: 15px;
  }
}
@media (max-width: 1366px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
.hero-content {
  position: relative;
  top: 90px;
}
.hero-title{
  font-size: 32px;
}
}
  .error-text {
    color: red;
    font-size: 13px;
    margin-top: 3px;
    display: block;
  }