/* Footer Main Styles */
.footer-main {
  background: #181818;
  color: #fff;
  padding: 40px 0 0 0;
  font-family: 'Inter', Arial, sans-serif;
}
.footer-main__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-main__about {
  flex: 1 1 340px;
  min-width: 320px;
  margin-bottom: 2rem;
}
.footer-main__brand h2 {
  font-size: 2rem;
  margin: 0 0 0.2em 0;
  letter-spacing: 0.1em;
}
.footer-main__brand span {
  font-size: 1.1rem;
  color: #aaa;
}
.footer-main__desc {
  margin: 2rem 0 1.2rem 0;
  font-size: 1.08rem;
  color: #e0e0e0;
}
.footer-main__more {
  display: inline-block;
  margin-top: 0.7em;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-main__more:hover {
  color: #fff;
}
.footer-main__copyright {
  display: block;
  margin-top: 2em;
  color: #888;
  font-size: 0.95rem;
}
.footer-main__map-contact {
  flex: 1 1 340px;
  min-width: 320px;
  display: block;
  gap: 2rem;
}
.footer-main__map {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-main__info {
  flex: 1 1 120px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
}
.footer-main__info-row {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.08rem;
}
.footer-main__info-icon {
  display: inline-flex;
  align-items: center;
  color: #ffd700;
}
@media (max-width: 900px) {
  .footer-main__container {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .footer-main__about {
    min-width: 0;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }
  .footer-main__map-contact {
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
    align-items: flex-start;
  }
  .footer-main__map {
    width: 100%;
    min-width: 0;
    margin-bottom: 1rem;
  }
  .footer-main__info {
    width: 100%;
    min-width: 0;
    gap: 0.7em;
  }
  .footer-main__copyright {
    margin-top: 2em;
    margin-bottom: 0.5em;
    text-align: left;
  }
}

/* Map iframe responsive */
.footer-main__map iframe {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  border: none;
  display: block;
}

.footer-main__info-row {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.08rem;
  color: #e0e0e0;
  word-break: break-word;
}

.footer-main__info-row a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-main__info-row a:hover,
.footer-main__info-row a:focus {
  color: #fff;
}

.footer-main__about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main__copyright {
  display: block;
  margin-top: 2em;
  color: #888;
  font-size: 0.95rem;
  text-align: left;
}

.footer-main__info {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  color: #e0e0e0;
}
@media (max-width: 900px) {
  .footer-main__info {
    display: flex;
    flex-direction: column;
    gap: 0.7em;
  }
}


