.contact-us-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

.contact-us-main {
  flex: 1;
  background-color: #f8f5f0;
}

.contact-us-header {
  background-color: #f8f5f0;
  padding: 20px 20px 20px;
  text-align: center;
}

.contact-us-header h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  color: #333;
}

.contact-us-content {
  padding: 80px 20px;
  background-color: #f8f5f0;
}

.contact-us-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-panel {
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.info-panel .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.info-panel .col-xs-12 {
  width: 100%;
  padding: 0 15px;
}

.info-panel .col-md-6 {
  width: 50%;
}

.info-panel h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #00bcd4;
  margin-bottom: 25px;
  margin-top: 0;
}

.info-panel .hotel-name {
  margin-top: 0;
}

.info-panel h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
}

.info-panel p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.contact-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #00bcd4;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Source Sans Pro", sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #00bcd4;
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-group.has-error .form-control {
  border-color: #e85c41;
}

.errors {
  margin-top: 5px;
}

.help-block {
  color: #e85c41;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
}

.btn-primary:hover {
  background-color: #0097a7;
}

/* Success Alert */
.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  position: relative;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert .close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
}

.alert .close:hover {
  opacity: 1;
}

/* Map Container */
.map-canvas-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-canvas-container iframe {
  display: block;
}

/* Responsive */
@media (max-width: 968px) {
  .contact-us-header {
    margin-top: 60px;
  }

  .contact-us-header h1 {
    font-size: 3rem;
  }

  .info-panel {
    padding: 40px;
  }

  .info-panel .col-md-6 {
    width: 100%;
  }

  .info-panel .col-md-6:first-child {
    margin-bottom: 40px;
  }

  .info-panel h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .contact-us-header h1 {
    font-size: 2.5rem;
  }

  .contact-us-content {
    padding: 40px 15px;
  }

  .info-panel {
    padding: 30px 25px;
  }

  .info-panel h2 {
    font-size: 1.5rem;
  }

  .info-panel h4 {
    font-size: 1.1rem;
  }

  .btn-primary {
    width: 100%;
  }

  .map-canvas-container {
    height: 300px;
  }
}


/*# sourceMappingURL=51.19c89382.chunk.css.map*/