* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p,
a {
  font-size: 16px !important;
}

input,
textarea,
select {
  border: 1px solid #B7BABC;
  padding: 12px 16px;
  border-radius: 4px;
  resize: none;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  background-color: white;
}

input[type=submit] {
  background-color: #FFBE3F;
  border: none;
  width: 100%;
  cursor: pointer;
}

.submit-btn {
  background-color: #FFBE3F;
  border: none;
  width: 100%;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  color: #161F41;
  font-weight: 500;
}
.submit-btn:hover {
  background-color: rgb(255, 172.734375, 12);
  transition: background-color 0.3s ease;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-label {
  font-weight: 600;
  color: #161F41;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
fieldset legend {
  font-weight: 600;
  color: #161F41;
  font-size: 16px;
  margin-bottom: 12px;
  padding: 0;
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
}
.radio-option .radio-input {
  opacity: 0;
  position: absolute;
  margin: 0;
  cursor: pointer;
}
.radio-option label {
  position: relative;
  cursor: pointer;
  color: #161F41;
  font-weight: 500;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 28px;
}
.radio-option label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #B7BABC;
  border-radius: 50%;
  background: white;
  transition: all 0.2s ease;
  cursor: pointer;
}
.radio-option label::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #161F41;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translate(-50%, -50%);
}
.radio-option .radio-input:checked + label::after {
  opacity: 1;
}
.radio-option .radio-input:hover + label::before {
  border-color: #FFBE3F;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  font-weight: 500;
  display: none;
  padding: 5px 0;
  line-height: 1.4;
}

.messages {
  margin-bottom: 20px;
}
.messages .alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 500;
}
.messages .alert.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.messages .alert.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.messages .alert.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #B7BABC;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background-color: white;
}
.dropdown-selected:hover {
  border-color: #FFBE3F;
}
.dropdown-selected.active {
  border-color: #FFBE3F;
  box-shadow: 0 0 0 2px rgba(255, 190, 63, 0.2);
}
.dropdown-selected.active .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-selected .placeholder {
  color: #999;
  font-size: 16px;
}
.dropdown-selected .selected-text {
  color: #333;
  font-size: 16px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #666;
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #B7BABC;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}
.dropdown-options.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
  display: block;
}

.dropdown-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-option:last-child {
  border-bottom: none;
}
.dropdown-option:hover {
  background-color: #f8f9fa;
}
.dropdown-option.selected {
  background-color: #FFBE3F;
  color: #161F41;
  font-weight: 500;
}

.container {
  max-width: 1500px;
  padding-block: 35px;
}
.container .get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.container .get-in-touch h1 {
  border-bottom: 2px solid #FFBE3F;
  font-size: 36px;
  width: -moz-fit-content;
  width: fit-content;
}
.container .get-in-touch .message-info {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
}
.container .get-in-touch .message-info form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.container .get-in-touch .message-info form input[type=submit] {
  cursor: pointer;
}
.container .get-in-touch .message-info .info {
  background-color: #161F41;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 50px;
  color: white;
}
.container .get-in-touch .message-info .info h3 {
  font-size: 32px;
}
.container .get-in-touch .message-info .info .social-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.container .get-in-touch .message-info .info .social-media .icons {
  display: flex;
  gap: 24px;
}
.container .get-in-touch .message-info .info .social-media .icons i {
  background-color: #FFBE3F;
  color: #161F41;
  padding: 3px 6px;
}
.container .map-location {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
  padding: 50px 0;
}
.container .map-location .facebook-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.container .map-location .facebook-section h3 {
  font-size: 24px;
  color: #161F41;
  border-bottom: 2px solid #FFBE3F;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 8px;
  margin: 0;
}
.container .map-location .facebook-section .facebook-embed {
  display: flex;
  justify-content: center;
  width: 100%;
}
.container .map-location .facebook-section .facebook-embed .facebook-fallback {
  width: 100%;
  max-width: 500px;
}
.container .map-location .facebook-section .facebook-embed .facebook-card {
  background: white;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.container .map-location .facebook-section .facebook-embed .facebook-header {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #161F41;
  color: white;
}
.container .map-location .facebook-section .facebook-embed .facebook-header .facebook-logo {
  width: 40px;
  height: 40px;
  background: white;
  padding: 8px;
}
.container .map-location .facebook-section .facebook-embed .facebook-header .facebook-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.container .map-location .facebook-section .facebook-embed .facebook-header .facebook-info p {
  margin: 0;
  font-size: 14px;
  color: #FFBE3F;
}
.container .map-location .facebook-section .facebook-embed .facebook-content {
  padding: 24px 20px;
  text-align: center;
}
.container .map-location .facebook-section .facebook-embed .facebook-content p {
  color: #161F41;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 15px;
}
.container .map-location .facebook-section .facebook-embed .facebook-content .facebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFBE3F;
  color: #161F41;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.container .map-location .facebook-section .facebook-embed .facebook-content .facebook-btn:hover {
  background: #161F41;
  color: #FFBE3F;
  text-decoration: none;
}
.container .map-location .facebook-section .facebook-embed .facebook-content .facebook-btn i {
  font-size: 18px;
}
.container .map-location .location {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.container .disclaimer-section {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}
.container .disclaimer-section p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #333;
}
.container .disclaimer-section h4 {
  color: #161F41;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 24px;
}

@media screen and (max-width: 810px) {
  .container .map-location {
    grid-template-columns: 100%;
  }
  .container .map-location .location-description {
    padding: 80px 8px;
  }
  .dropdown-options {
    max-height: 180px;
  }
  .dropdown-option {
    padding: 14px 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 740px) {
  .container .get-in-touch .message-info {
    grid-template-columns: 100%;
  }
  .container .get-in-touch .message-info .info {
    padding: 20px 30px;
  }
  .container .map-location {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .container .map-location .facebook-section {
    order: 2;
  }
  .container .map-location .facebook-section .facebook-embed .facebook-card .facebook-content {
    padding: 20px 16px;
  }
  .container .map-location .location {
    order: 1;
  }
  .container .disclaimer-section {
    padding: 20px;
  }
  .dropdown-option {
    white-space: normal;
    line-height: 1.4;
    padding: 12px 16px;
  }
}/*# sourceMappingURL=contactus.css.map */