/* Footer */

.main-footer {
  background: white;
  padding: 3rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-about h1 {
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.footer-about h1 span {
  color: var(--primary);
}

.footer-about h1 .highlight {
  color: var(--secondary);
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.custom-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.custom-primary-btn:hover {
  background: var(--primary);
  color: white;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.custom-primary-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.footer-column-right {
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-value {
  color: #1a1a1a;
  font-weight: 500;
}

.footer-contact-value:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  background: #000000;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-column-center {
  align-items: center;
  justify-content: center;
}

@media (max-width: 968px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-contact-icon {
    display: none;
  }
}
