.hero-section.section.is-no-image {
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  background-color: #211e1d;
  margin-top: -40px;
  padding-top: 120px;
  padding-bottom: 80px;
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container.is-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  width: 100%;
  max-width: 1440px;
}

.hero_subtitle {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.hero_title {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

body {
  background-color: var(--light--off-white) !important;
}

.contact-locations-section {
  background-color: var(--light--off-white) !important;
}

.contact-section {
  padding: 120px 0;
  background: var(--light--off-white) !important;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-card {
  background: #171717;
  color: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.contact-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-card h6 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 20px;
  font-weight: 500;
}

.contact-form-box {
  background: transparent !important;
  border-radius: 24px;
  padding: 60px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #121212;
}

.contact-form-box p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 40px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form-grid.full {
  grid-template-columns: 1fr;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  background: var(--light--off-white);
  border: 1px solid #bcbbaa;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: none !important;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08) !important;
}

.contact-form-box textarea {
  min-height: 160px;
  resize: none;
}

.contact-form-box button,
.contact-form-box .btn {
  margin-top: 22px;
  background: #171717;
  color: white;
  border: none;
  padding: 16px 50px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-form-box button:hover,
.contact-form-box .btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.contact-form-box .alert {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.locations-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px 40px !important;
}

.location-card {
  width: 100%;
  min-width: 0;
}

.location-image img {
  max-width: 100%;
  height: auto;
}

.location-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  min-width: 0;
}

.location-name {
  min-width: 0;
  flex: 1;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.location-collapse {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.location-content {
  padding-bottom: 6px;
}

.hours-list li {
  align-items: baseline;
}

.btn.btn-outline-dark {
  border-color: rgba(0,0,0,0.2);
}

.location-plus {
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
  flex: 0 0 44px;
}

.location-plus::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 3px;
  background: currentColor;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.location-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 34px;
  background: currentColor;
  transform: translate(-50%, -50%) scaleY(1);
  transform-origin: center;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 1;
}

.location-toggle[aria-expanded="true"] .location-plus::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

@media (max-width: 1200px) {
  .contact-wrapper {
    gap: 40px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 28px !important;
  }
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-form-box {
    padding: 40px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .hero-section.section.is-no-image {
    margin-top: -25px;
    padding-top: 90px;
    margin-bottom: 75px;
    padding-bottom: 60px;
  }

  .hero_subtitle {
    font-size: 1.25rem;
  }

  .hero_title {
    font-size: 2rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .location-toggle {
    padding: 16px 0 12px;
    gap: 12px;
  }

  .location-name {
    font-size: 1.6rem;
    line-height: 1.05;
  }

  .location-plus {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .location-plus::before {
    width: 26px;
    height: 3px;
  }

  .location-plus::after {
    width: 3px;
    height: 26px;
  }

  .location-collapse {
    padding-top: 12px;
  }

  .hours-list li {
    padding: 10px 0 !important;
  }
}

@media (max-width: 420px) {
  .location-name {
    font-size: 1.45rem;
  }
}

/* .contact-section {
    padding: 1rem 2rem !important;
} */