/* Footer Component Styles */

/* Footer */
.footer {
  background: white;
  color: #333;
  padding: 40px 0 20px;
  margin-top: 40px;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
}

/* Footer Left */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  font-family: "Arial", sans-serif;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 300;
  color: #333;
}

.footer-logo .logo-box {
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 300;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.contact-label {
  font-weight: 600;
  margin-right: 8px;
}

.contact-value {
  color: #666;
}

.business-hours {
  margin-top: 8px;
}

.business-hours p {
  margin: 2px 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* Footer Center */
.footer-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #4fc3f7;
}

.footer-link::after {
  content: "|";
  margin-left: 16px;
  color: #ddd;
}

.footer-link:last-child::after {
  display: none;
}

.service-hours {
  margin-top: 10px;
}

.service-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
}

.status-dot.online {
  background: #4caf50;
}

.status-text {
  color: #333;
  font-weight: 500;
}

.status-time {
  color: #4caf50;
  font-weight: 600;
}

/* Footer Right */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.kakao-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fee500;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #3c1e1e;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(254, 229, 0, 0.3);
}

.kakao-btn:hover {
  background: #fdd835;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

.kakao-icon {
  font-size: 16px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  font-size: 16px;
}

.chat-buttons {
  display: flex;
  gap: 8px;
}

.chat-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-btn:hover {
  background: #f8f9fa;
  border-color: #4fc3f7;
  color: #4fc3f7;
}

.estimate-btn {
  background: #333;
  color: white;
  border-color: #333;
}

.estimate-btn:hover {
  background: #555;
  border-color: #555;
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.company-info p {
  margin: 4px 0;
  font-size: 11px;
  color: #999;
  line-height: 1.4;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-consultation-btn {
  background: #25d366;
  color: white;
}

.whatsapp-consultation-btn:hover {
  background: #128c7e;
}

.consultation-btn {
  background: #fee500;
  color: #3c1e1e;
}

.consultation-btn:hover {
  background: #fdd835;
}
