@charset "UTF-8";
.contact-section {
  position: relative;
  background-color: var(--color-brand-dark-grey, #515151);
  /* Matching the dark grey from the screenshot */
  color: #FFFFFF;
  padding: calc(var(--section-padding-y) * 1.5) 0 calc(var(--section-padding-y) * 2);
  display: flex;
  flex-direction: column;
}
.contact-section__inner {
  width: 100%;
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  padding: 40px var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .contact-section__inner {
    flex-direction: row;
    gap: 80px;
  }
}
.contact-section__info {
  display: flex;
  flex-direction: column;
  width: 50%;
  opacity: 0;
  transform: translateX(-40px);
}
@media (max-width: 992px) {
  .contact-section__info {
    width: 100%;
  }
}
.contact-section__title-wrap {
  margin-bottom: 20px;
}
.contact-section__divider {
  width: 60px;
  height: 3px;
  margin-bottom: 12px;
  transform: scaleX(0);
  transform-origin: left center;
  position: relative;
  z-index: 10;
}
.contact-section__title {
  color: var(--color-brand-gold, #F8B425);
  margin: 0;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 42px);
}
.contact-section__tabs-container {
  margin-bottom: 30px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.contact-section__tabs-container::-webkit-scrollbar {
  display: none;
}
.contact-section__tabs-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, rgba(81, 81, 81, 0), rgb(81, 81, 81));
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-section__tabs-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(81, 81, 81, 0), rgb(81, 81, 81));
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-section__tabs-container.has-overflow-left::before {
  opacity: 1;
}
.contact-section__tabs-container.has-overflow-right::after {
  opacity: 1;
}
.contact-section__tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}
.contact-section__tabs:active {
  cursor: grabbing;
}
.contact-section__tabs {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.contact-section__tabs::-webkit-scrollbar {
  display: none;
}
.contact-section__tabs-scroll-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-brand-gold, #F8B425);
  color: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.contact-section__tabs-container.has-overflow-right .contact-section__tabs-scroll-next {
  opacity: 1;
  visibility: visible;
}
.contact-section__tabs-scroll-next:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: #FFFFFF;
}
.contact-section__tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-section__tab::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-brand-gold, #F8B425);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact-section__tab:hover {
  color: #FFFFFF;
}
.contact-section__tab.is-active {
  color: var(--color-brand-gold, #F8B425);
}
.contact-section__tab.is-active::after {
  transform: scaleX(1);
}
.contact-section__loc-title {
  color: #FFFFFF;
  margin: 0 0 16px 0;
  font-weight: 700;
}
.contact-section__loc-desc {
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 15px;
  opacity: 0.9;
}
.contact-section__loc-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .contact-section__loc-links {
    grid-template-columns: auto auto;
  }
}
@media (min-width: 992px) {
  .contact-section__loc-links {
    grid-template-columns: auto auto auto;
  }
}
.contact-section__loc-links li {
  display: flex;
  align-items: flex-start;
  /* Address can be multiple lines */
  gap: 10px;
}
.contact-section__loc-links .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.contact-section__loc-links .contact-link:hover {
  color: var(--color-brand-gold, #F8B425);
}
.contact-section__loc-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue, #68DCFF);
  /* Cyan/Blue icon color matching screenshot */
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-section__hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 24px 0;
  width: 100%;
}
.contact-section__hours-title {
  margin: 0 0 16px 0;
  color: #FFFFFF;
  font-weight: 800;
}
.contact-section__hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .contact-section__hours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.contact-section__hours-col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-section__hours-col li {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #E0E0E0;
}
.contact-section__hours-col li strong {
  color: #FFFFFF;
  width: 30px;
  flex-shrink: 0;
}
.contact-section__hours-col li .time {
  opacity: 0.9;
}
.contact-section__card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: var(--color-brand-dark-grey, #515151);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  /* Prevent jumpy layout */
  width: 50%;
  opacity: 0;
  transform: translateY(40px);
}
@media (max-width: 992px) {
  .contact-section__card {
    padding: 24px;
    min-height: 450px;
    width: 100%;
  }
}
.contact-section__form-title {
  color: var(--color-brand-green-dark, #57803A);
  margin: 0 0 24px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(87, 128, 58, 0.1);
  padding-bottom: 12px;
}
.contact-section__form-container {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.contact-section__form-container:not(.is-active) {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 600px) {
  .contact-section__form-container:not(.is-active) {
    top: 24px;
    left: 24px;
    right: 24px;
  }
}
.contact-section .custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .custom-form-row {
  width: 100%;
}
.contact-section .custom-form-col-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .contact-section .custom-form-col-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-section .custom-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  font-family: var(--font-sans, sans-serif);
  font-size: 14px;
  color: #4F4F4F;
  background-color: #FFFFFF;
  transition: border-color 0.2s;
}
.contact-section .custom-input::placeholder {
  color: #999999;
}
.contact-section .custom-input:focus {
  outline: none;
  border-color: var(--color-brand-green-dark, #57803A);
}
.contact-section .custom-select-wrap {
  position: relative;
}
.contact-section .custom-select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-60%);
  color: #999999;
  pointer-events: none;
  font-size: 16px;
}
.contact-section .custom-select-wrap select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.contact-section .custom-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .custom-form-radios {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.contact-section .custom-radio-label,
.contact-section .custom-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4F4F4F;
  cursor: pointer;
  user-select: none;
}
.contact-section .custom-radio-label input,
.contact-section .custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact-section .custom-radio-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #D0D0D0;
  background-color: #FFFFFF;
  position: relative;
  transition: all 0.2s;
}
.contact-section .custom-radio-mark::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-green-dark, #57803A);
}
.contact-section .custom-radio-label input:checked ~ .custom-radio-mark {
  border-color: var(--color-brand-green-dark, #57803A);
}
.contact-section .custom-radio-label input:checked ~ .custom-radio-mark::after {
  display: block;
}
.contact-section .custom-form-label {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
}
.contact-section .custom-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-section .custom-checkbox-mark {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid #D0D0D0;
  background-color: #FFFFFF;
  position: relative;
  transition: all 0.2s;
}
.contact-section .custom-checkbox-mark::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-section .custom-checkbox-label input:checked ~ .custom-checkbox-mark {
  background-color: var(--color-brand-green-dark, #57803A);
  border-color: var(--color-brand-green-dark, #57803A);
}
.contact-section .custom-checkbox-label input:checked ~ .custom-checkbox-mark::after {
  display: block;
}
.contact-section .custom-form-disclaimer {
  font-size: 10px;
  color: #A0A0A0;
  margin: -8px 0 0 0;
  line-height: 1.4;
}
.contact-section .custom-submit-btn {
  background-color: var(--color-brand-gold, #F8B425);
  color: #111111;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-section .custom-submit-btn:hover {
  opacity: 0.9;
}
.contact-section .custom-submit-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #111111;
  color: var(--color-brand-gold, #F8B425);
  border-radius: 50%;
}
.contact-section__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.contact-section__wave svg {
  display: block;
  width: 100%;
  height: 100px;
  /* Base height for desktop */
}
@media (max-width: 768px) {
  .contact-section__wave svg {
    height: 50px;
    /* Scaled down for mobile */
  }
}
.contact-section {
  /* Small hack to ensure content clears wave visually */
  padding-bottom: clamp(100px, 10vw, 150px);
}

/*# sourceMappingURL=contact-section.css.map */
