
/* Body */
body {
  background-color: #111; 
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1200px;  
  height: 1200px;
  background: url('Images/GH_logo.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  opacity: 0.15; 
  pointer-events: none; 
  z-index: -1; 
}




/* 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);
}

/* Heading */
h1 {
  text-align: center;
  margin-top: 60px;
  font-size: 3.5rem;
}

/* Pricing cards */
.pricing {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px;
  flex-wrap: wrap;
}

.plan {
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: 0.4s;
}

.plan:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.15);
}

.price {
  font-size: 2rem;
  margin: 20px 0;
  color: #0af;
}
.plan-link {
  text-decoration: none;  
  color: inherit;         
  display: block;         
}

.plan-link .plan {
  transition: transform 0.3s, background 0.3s;
}

.plan-link:hover .plan {
  transform: scale(1.08);
  background: linear-gradient(135deg, #ff6600, #ff9933); 
}


/* 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; 
}