
/* Body */
body {
  background: #0a0a0a;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  z-index: 100;
}

nav .logo img {
  height: 50px;
  cursor: pointer;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav ul.nav-links li a {
  color: #999;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a.active {
  color: white;
  background-color: #ff6600;
  transform: scale(1.12);
}

.book-now-btn {
  background-color: #ff6600;
  color: black;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.book-now-btn:hover {
  background-color: #cc5200;
  transform: scale(1.1);
}

/* Booking Form */
form {
  max-width: 500px;
  margin: 90px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 15px 0 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin: 5px 0 15px;
  border-radius: 10px;
  border: none;
}

button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #0af;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #09c;
}
/* CONTACT US SECTION - FULL WIDTH */
.contact-us {
  background-color: #f46b0f; 
  color: black; 
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}
.contact-us .contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;

}

.contact-us h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #111111;
}

.contact-us p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 10px 0;
}

.contact-us a {
  color: black;
  text-decoration: underline;
  font-weight: 600;
  transition: 0.3s;
}

.contact-us a:hover {
  color: #333; 
}
