.location {
  margin: 0 auto;
}
.about-us-image-container {
  padding: 1rem;
}

.get-directions-btn {
    display: inline-block;
    background-color: #43574a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
}

/* Hover effect */
.get-directions-btn:hover {
  background-color: #55675e;
  transform: translateY(-2px);
}

/* Active click effect */
.get-directions-btn:active {
  background-color: #4b5b52;
  transform: translateY(0);
}

/* Hamburger Icon */
.hamburger {
  width: 20px;
  cursor: pointer;
  z-index: 40;
  display: block;
  margin-right: 10px;
}
.hamburger .bar {
  height: 2px;
  width: 100%;
  background-color: #444;
  margin: 4px 0;
  transition: 0.4s;
}

/* Hamburger Animation */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu Wrapper (Sidenav Mobile) */
.menu-wrapper {
  position: fixed;
  top: 0;
  left: 100%;
  height: 100vh;
  width: 100vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 30;
  justify-content: start;
  overflow-x: hidden;
}

/* Active State */
.menu-wrapper.active {
  left: 0;
  visibility: visible;
  opacity: 1;
}

/* Menu Items Animation */
.menu-wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-wrapper ul li {
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

/* Mobile Bottom Bar */
/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(255 255 255 / 50%);
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 30px;
  z-index: 50;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Buttons Style */
.bottom-btn {
  flex: 1;
  margin: 0 5px;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 7px 7px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bottom-btn i {
  font-size: 1em;
}

/* Button Colors */
.whatsapp-btn {
  background-color: #43574a;
}

.call-btn {
  background-color: #43574a;
}
/* Desktop Styles */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .menu-wrapper {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    visibility: visible !important;
    opacity: 1 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
  }
  .mobile-bottom-bar {
    display: none;
  }
  .menu-wrapper ul {
    flex-direction: row;
    gap: 20px;
  }
  .menu-wrapper ul li {
    font-size: inherit;
    border: none;
    padding: 0;
  }
}

.section-title {
  text-transform: capitalize;
}

.book-btn-transparent {
    display: inline-block;
    background-color: transparent;
    color: #43574a;
    border: 1px solid #43574a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8em;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 30px;
}

.book-btn {
  display: inline-block;
  background-color: #43574a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
  border: none;
  border-radius: 3px; /* Sharp edges */
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

/* Hover State */
.book-btn:hover, .book-btn-transparent:hover {
  background-color: #55675e; /* Slightly darker */
  transform: translateY(-2px); /* Lift effect */
}

/* Active State */
.book-btn:active, .book-btn-transparent:active {
  background-color: #4b5b52; /* Even darker */
  transform: translateY(0); /* Press back down */
}

/* Focus State */
.book-btn:focus, .book-btn-transparent:focus {
  outline: 2px solid #8ba497; /* Light green outline */
  outline-offset: 2px;
}



@media only screen and (max-width: 780px) {
  .location {
    overflow: hidden;
    max-width: 350px;
  }
  .about-us-image-container {
    padding: 0;
  }

  .logo-container {
    width: 180px;
  }
  .section-title {
    padding-top: 20px !important;
  }

  h1 {
    font-size: 1.3em !important;
  }
  footer {
    margin-bottom: 100px;
  }
}
