.footer-section {
  background: #000;
}

.footer-details {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 15px;
}

.contact-panel {
  padding: 30px 20px 60px;
  color: white;
  flex: 1;
  max-width: 550px;
}

.contact-panel .company-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

footer svg {
  fill: #6ec1e4;
}

.contact-text {
  line-height: 1.5;
}

.contact-text a {
  color: #6ec1e4;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.map-container {
  flex: 1;
  max-width: 550px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

.scroll-space {
  height: 4.4rem;
  background: white;
}

.scroll-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.scroll-button img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.scroll-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .footer-details {
    flex-direction: column;
    gap: 0px;
  }

  .contact-panel {
    width: 100%;
    height: auto;
    padding: 15px;
    margin-bottom: 10px;
  }

  .map-container {
    flex: auto;
    height: 25vh;
    max-width: unset;
    padding: 10px;
  }

  .contact-panel .company-name {
    font-size: 22px;
}

}
