body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: #f8f9fb;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: white;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 60px;
  max-width: 100%;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1rem;
}

.nav-book-btn {
  padding: 8px 16px;
  background-color: #0077b6;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  white-space: nowrap;
}

/* Main Content */
.container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

h1 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2rem);
  color: #00205b;
  margin-bottom: 25px;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  flex: 1 1 200px;
  padding: 15px;
}

.contact-item i {
  font-size: 24px;
  color: #00205b;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 1rem;
  color: #333;
}

hr {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 30px 0;
}

h2 {
  text-align: center;
  color: #00205b;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 20px;
}

.terms {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  padding-left: 20px;
}

.terms li {
  margin-bottom: 12px;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 40px 5% 20px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
  max-width: 100%;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons a img {
  width: 25px;
  height: 25px;
}

.call-now {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #fff;
}

/* Media Queries */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    font-size: 1.1rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .container {
    margin: 20px auto;
    padding: 20px;
  }

  .contact-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px;
  }

  .logo img {
    height: 50px;
  }

  .navbar {
    width: 80%;
  }

  .container {
    padding: 15px;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
