body {
  background-color: #f8f9fa; 
  color: #191c1d;            
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.material-symbols-outlined[data-weight="fill"] {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #ed9101; 
  outline-offset: 2px;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.industrial-card {
  border: 1px solid rgba(73, 99, 102, 0.1);
  background-color: #ffffff; 
  transition: all 0.3s ease;
}
.industrial-card:hover {
  border-color: #ed9101; 
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(47, 62, 70, 0.08);
}

.blueprint-list-item {
  border-bottom: 1px dotted #c3c7ca;
}
.blueprint-list-item:last-child {
  border-bottom: none;
}

#project-modal {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#project-modal.modal-closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#project-modal.modal-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#modal-container {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#project-modal.modal-closed #modal-container {
  transform: scale(0.95) translateY(12px);
  opacity: 0;
}
#project-modal.modal-open #modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

#mobile-menu {
  border-top: 1px solid rgba(73, 99, 102, 0.1);
}

.map-container {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.map-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
  pointer-events: none;
}
.map-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgb(255, 255, 255) 20%, rgba(12, 12, 12, 0) 100%);
  pointer-events: none;
}
.custom-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.marker-pin {
  width: 40px;
  height: 40px;
  background-color: #192830; 
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.marker-pin::after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 13px 0 0 13px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
}
