/* Contact Section */
.contact-section {
  background-color: #111827;
  color: white;
  padding: 5rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.btn-contact-primary {
  background-color: #2563eb;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-contact-primary:hover {
  background-color: #1d4ed8;
}

.btn-contact-secondary {
  border: 2px solid white;
  background-color: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-secondary:hover {
  background-color: white;
  color: #111827;
}

/* Footer Styles */
.site-footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 4rem 0 2rem;
  width: 100%;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #4b5563;
}

.footer-column p {
  margin: 0.5rem 0;
  line-height: 1.6;
  color: #d1d5db;
}

.company-info {
  font-size: 0.9rem;
}

.company-info strong {
  color: #ffffff;
  font-size: 1rem;
}

.footer-contact a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #93c5fd;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  text-align: center;
}

.site-info {
  font-size: 0.875rem;
  color: #9ca3af;
}

.site-info p {
  margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-menu li a:hover {
    padding-left: 0;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
  }
}
