@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Barlow", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #2d2d2d;
  line-height: 1.6;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.site-header {
  height: 100px;
  background-color: #611232;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999999;
}

.header-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-start-end-radius: 10% 50%;
  border-end-end-radius: 10% 50%;
  color: white;
}

.header-logo img {
  width: 200px;
}

.main-container {
  margin: auto;
  margin-top: 140px;
  max-width: 1000px;
  width: 92%;
}

.main-title {
  font-size: 45px;
  color: #2d2d2d;
  margin-top: 15px;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  text-transform: capitalize;
}

.form-input,
.form-select {
  height: 50px;
  text-indent: 10px;
  background-color: #f9f9f9;
  border: none;
  font-size: 14px;
  outline: none;
  border: solid 1px #b1bccf27;
  font-weight: 600;
  color: #616364;
  font-family: "Barlow", sans-serif;
}

.availability-badge {
  background-color: rgb(14, 141, 14);
  color: white;
  width: 125px;
  padding: 10px;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  margin: 0px;
  margin-top: 50px;
  color: #2d2d2d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.submit-button {
  width: 100%;
  height: 50px;
  background-color: #611232;
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Barlow", sans-serif;
}

.submit-button svg {
  width: 25px;
}

.submit-button:hover {
  background-color: #4a0e25;
}

.price-highlight {
  font-size: 19px;
  color: #0c6c0c;
  font-weight: 600;
}

.info-box {
  margin-top: 20px;
  color: #2d2d2d;
  font-size: 14px;
  background-color: #f9f9f9;
  padding: 15px 20px;
  border: solid 1px #b1bccf27;
  border-radius: 4px;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white
    url('data:image/svg+xml;utf8,<svg data-slot="icon" fill="none" stroke-width="1.5" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"></path></svg>')
    no-repeat right 0.75rem center;
  background-size: 1.2em;
}

.required-field {
  color: rgb(233, 20, 20);
}

.site-footer {
  background-color: #611232;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 20px;
}

.footer-text {
  font-size: 14px;
  text-align: center;
}

.loading-spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  width: 50px;
  height: 50px;
}

.loading-spinner .path {
  fill: none;
  stroke: #611232;
  stroke-width: 6;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.loading-overlay {
  position: fixed;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100vh;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.loading-text {
  color: #2d2d2d;
  font-size: 15px;
  font-weight: 600;
  margin-top: 15px;
}

.loading-text::after {
  content: "";
  display: inline-block;
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

.modal-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  padding-top: 150px;
}

.modal-content {
  background-color: white;
  max-width: 500px;
  width: 92%;
  margin: auto;
  min-height: 200px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-content-large {
  background-color: white;
  max-width: 600px;
  width: 92%;
  margin: auto;
  min-height: 500px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  color: #611232;
  text-transform: uppercase;
}

.modal-title svg {
  width: 40px;
}

a {
  text-decoration: none;
}

.copy-button {
  display: flex;
  background-color: transparent;
  font-weight: 600;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  margin-top: 5px;
  border: solid 1px #0c6c0c;
  font-size: 11px;
  color: #0c6c0c;
  transition: all 0.2s ease;
}

.copy-button:hover {
  background-color: #0c6c0c;
  color: white;
}

.copy-button svg {
  width: 16px !important;
  height: 16px !important;
}

#copy-notification {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background-color: #0c6c0c;
  color: white;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: none;
  text-transform: uppercase;
  z-index: 1000;
  font-size: 14px;
  border-radius: 4px;
}

.data-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.data-label {
  font-weight: 600;
  font-size: 15px;
  margin: 0px;
  color: #611232;
}

.data-value {
  margin: 0px;
  font-size: 15px;
  word-break: break-word;
}

.alert-box {
  background-color: #ffd7cd;
  padding: 20px;
  font-size: 14.5px;
  border-left: 4px solid #ff3b1f;
  margin-bottom: 20px;
  border-radius: 4px;
}

.service-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-list li {
  margin-bottom: 8px;
}

@media screen and (max-width: 800px) {
  .form-grid {
    gap: 0px;
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 30px;
  }

  .main-container {
    margin-top: 120px;
  }

  .data-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 15px;
  }

  .modal-content,
  .modal-content-large {
    padding: 25px 20px;
  }
}
