
.contact-page {
  background-color: rgb(250, 250, 250)
}

.contact-form {
  padding: 1rem;
}

input[type="date"],
input[type="month"],
input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  height: calc(3.5rem + 2px);
}

.form-select {
  border: none;
  height: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 5px;
}


.contact-box {
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.contact-sidebar {
  border-radius: 10px;
  height: 99%;
  background: var(--white-color);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 19px 9px;
}

.contact-method {
  background: #ffffff;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(28, 50, 92, 0.15);
  border: 2px solid rgba(197, 149, 91, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #cf8f0b1a, transparent);
  transition: left 0.6s ease;
}

.contact-method:hover::before {
  left: 100%;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(28, 50, 92, 0.15);
  border-color: var(--third-color);
}

.contact-method-icon img {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto 7px;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 80px;
  height: 80px;
}

.contact-method:hover .contact-method-icon {
  transform: scale(1.1);
}

.contact-method-title {
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--second-color);
}

.contact-method-info {
  color: #142843;
  margin-bottom: 2px;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.contact-method-link {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 21px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-link span{
   font-weight: 500;
  font-size: 19px;
    color: var(--para-color);
    display: block;
}

.contact-method-link:hover {
  color: var(--warm-bronze);
  transform: translateX(5px);
}

.Visit .contact-method {
  height: 303px;
}

.counter-controls {
  display: flex;
  align-items: center;
  border-radius: 0;
  gap: 4px;
  justify-content: center;
  padding: 6px;
  margin-bottom: 8px;
}

button.decrease-btn {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid #ccc;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  color: #000;
  font-size: 20px;
}

button.increase-btn {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid #ccc;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  color: #1a2b49;
  font-size: 20px;
}

input.quantity-input {
  width: 110px;
  border: 2px solid;
  text-align: center;
  border-color: #ccc;
  height: 48px;
}

p {
  margin-bottom: 0;
}

.contact__address .contact-method-link {
  font-size: 17px;
  margin-top: auto;
  text-align: center;
  margin-bottom: 14px;
}

.contact__address {
  display: flex;
  flex-direction: column;
}

.contact-method:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  bottom: 12px;
  right: 16px;
  background-color: transparent;
  border-radius: 10px;
  z-index: -1;
}


.adult-counter {
  text-align: center;
}

@media (max-width: 767px) {
  .adult-counter {
    text-align: left;
  }

  .counter-controls {
    justify-content: flex-start;
  }
   .contact-sidebar {
    padding: 11px;
    margin-top: 27px;
  }

}
