body.public .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
section[sharp="contact_header"] {
  color: #1a3242;
  text-align: center;
  position: relative;
  padding: 2rem 0;
  margin-bottom: 0;
  overflow: hidden;
}
section[sharp="contact_header"] .preserve-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  animation: fadeIn 0.6s ease-out;
  position: relative;
  z-index: 2;
}
section[sharp="contact_header"] h1 {
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeIn 0.8s ease-out;
  position: relative;
}
section[sharp="contact_header"] h1 span {
  color: #d4a44c;
}
section[sharp="contact_header"] .subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeIn 1s ease-out;
  position: relative;
  color: #262626;
  opacity: 0.9;
}
section[sharp="contact_header"] p {
  position: relative;
  max-width: 800px;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  line-height: 1.8;
  animation: fadeIn 1.2s ease-out;
  color: #262626;
}
section[sharp="contact_content"] {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin: 6rem auto;
  animation: fadeInUp 0.8s ease-out;
  max-width: 1100px;
}
@media (max-width: 992px) {
  section[sharp="contact_content"] {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem auto;
  }
}
div[sharp="contact_form_container"] form[sharp="contact_form"] {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.05);
  animation: fadeInUp 0.8s ease-out;
}
div[sharp="contact_form_container"] form[sharp="contact_form"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #d4a44c, #b78730);
  transition: width 0.4s ease;
}
.sharp__form_message,
.sharp__form_error {
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: none;
}
.sharp__form_message p,
.sharp__form_error p {
  margin: 0;
  font-weight: 500;
}
.sharp__form_message {
  background-color: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.3);
  color: #27ae60;
  box-shadow: 0 3px 10px rgba(39,174,96,0.1);
}
.sharp__form_error {
  background-color: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c;
  box-shadow: 0 3px 10px rgba(231,76,60,0.1);
}
.sharp__form_group {
  margin-bottom: 2rem;
}
.sharp__form_group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #1a3242;
  font-size: 0.95rem;
}
.sharp__form_group input[type="text"],
.sharp__form_group input[type="email"],
.sharp__form_group input[type="tel"],
.sharp__form_group select,
.sharp__form_group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #f5f5f5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sharp__form_group input[type="text"]:hover,
.sharp__form_group input[type="email"]:hover,
.sharp__form_group input[type="tel"]:hover,
.sharp__form_group select:hover,
.sharp__form_group textarea:hover {
  border-color: rgba(58,95,58,0.5);
}
.sharp__form_group input[type="text"]:focus,
.sharp__form_group input[type="email"]:focus,
.sharp__form_group input[type="tel"]:focus,
.sharp__form_group select:focus,
.sharp__form_group textarea:focus {
  outline: none;
  border-color: #3a5f3a;
  box-shadow: 0 0 0 3px rgba(58,95,58,0.15);
  background-color: #fff;
}
.sharp__form_group textarea {
  resize: vertical;
  min-height: 150px;
}
.sharp__form_group .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.5rem 0;
}
.sharp__form_group .checkbox-label input[type="checkbox"] {
  margin-right: 0.8rem;
  margin-top: 0.25rem;
}
div[sharp="contact_info"] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sharp__contact_card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.05);
  animation: fadeInUp 0.8s ease-out;
}
.sharp__contact_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.sharp__contact_card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #d4a44c, #e6c275);
}
.sharp__contact_card h2 {
  color: #1a3242;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.sharp__contact_card h2:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #d4a44c;
  margin-top: 0.5rem;
}
.sharp__contact_card address {
  font-style: normal;
  line-height: 1.8;
  color: #262626;
}
.sharp__contact_card address p {
  margin-bottom: 1.2rem;
}
.sharp__contact_card address strong {
  color: #1a3242;
  font-weight: 600;
}
.sharp__contact_card address a {
  color: #3a5f3a;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: inline-block;
}
.sharp__contact_card address a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4b7a4b;
  transition: width 0.3s ease;
}
.sharp__contact_card address a:hover {
  color: #4b7a4b;
}
.sharp__contact_card address a:hover:after {
  width: 100%;
}
.sharp__contact_card table {
  width: 100%;
}
.sharp__contact_card table td {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sharp__contact_card table td:first-child {
  width: 45%;
  color: #1a3242;
}
.sharp__contact_card table td:first-child strong {
  font-weight: 600;
}
div[sharp="map_embed"] img {
  width: 100%;
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
  transition: transform 1s ease;
}
div[sharp="map_embed"] img:hover {
  transform: scale(1.02);
}
section[sharp="emergency_contact"] {
  background: linear-gradient(to right, rgba(26,50,66,0.97), rgba(39,75,99,0.92));
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  margin: 4rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}
section[sharp="emergency_contact"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/assets/images/mountain-summit-black.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 40%;
  opacity: 0.07;
  z-index: 0;
}
section[sharp="emergency_contact"] div[sharp="emergency_contact_inner"] {
  background-color: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-out;
  backdrop-filter: blur(10px);
}
section[sharp="emergency_contact"] h2 {
  color: #d4a44c;
  margin-top: 0;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
section[sharp="emergency_contact"] h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4a44c;
  margin: 0.8rem auto 0;
}
section[sharp="emergency_contact"] p {
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}
section[sharp="emergency_contact"] .emergency-phone {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4a44c;
  text-decoration: none;
  margin: 1.5rem 0;
  padding: 0.8rem 2rem;
  border: 2px solid rgba(212,164,76,0.3);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
section[sharp="emergency_contact"] .emergency-phone:hover {
  background-color: rgba(212,164,76,0.1);
  border-color: #d4a44c;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
section[sharp="emergency_contact"] em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
button[type="submit"],
.sharp__button {
  background: linear-gradient(to right, #d4a44c, #b78730);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}
button[type="submit"]:before,
.sharp__button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}
button[type="submit"]:hover,
.sharp__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0,0,0,0.25);
}
button[type="submit"]:hover:before,
.sharp__button:hover:before {
  transform: skewX(-20deg) translateX(100%);
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
