/* Contact Links */
.contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.scroll-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Featured In Section */
.featured-in {
  background: white;
  padding: 100px 0;
}

.featured-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  margin-top: 50px;
}

.logo-item {
  opacity: 0.7;
  transition: var(--transition);
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.logo-item img {
  width: 180px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}
