/* ====== Company Single Page (Light Theme Only) ====== */

.company-contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 800px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Logo inside card */
.company-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.company-logo--image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 10px;
}

/* Company title */
.company-title {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

/* Content wrapper */
.company-data__content {
  width: 100%;
  max-width: 600px;
}

/* Links centered in card */
.company-data__content--list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* Link styling */
.company-data__content--list-item a {
  color: #0073aa;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
  word-break: break-all;
  position: relative;
  padding-left: 28px;
}

.company-data__content--list-item a:hover {
  color: #005c87;
  text-decoration: underline;
}

/* Icons for links */

/* Email */
.company-data__content--list-item a[href*="mailto:"]::before {
  content: "✉️";
  position: absolute;
  left: 0;
}

/* Phone */
.company-data__content--list-item a[href^="tel:"]::before {
  content: "📞";
  position: absolute;
  left: 0;
}

/* Facebook */
.company-data__content--list-item a[href*="facebook.com"]::before {
  content: "👍";
  position: absolute;
  left: 0;
}

/* Twitter / X */
.company-data__content--list-item a[href*="twitter.com"],
.company-data__content--list-item a[href*="@CroweUSA"]::before {
  content: "🐦";
  position: absolute;
  left: 0;
}

/* LinkedIn */
.company-data__content--list-item a[href*="linkedin.com"]::before {
  content: "💼";
  position: absolute;
  left: 0;
}

/* Instagram */
.company-data__content--list-item a[href*="instagram.com"]::before {
  content: "📸";
  position: absolute;
  left: 0;
}

/* Website (default for http/https links that aren’t social) */
.company-data__content--list-item a[href^="http"]:not([href*="facebook.com"]):not([href*="twitter.com"]):not([href*="linkedin.com"]):not([href*="instagram.com"])::before {
  content: "🌐";
  position: absolute;
  left: 0;
}




/* --- Description Section --- */
.company-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.company-description p {
  margin-bottom: 1rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .company-contact-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-logo {
    width: 120px;
    height: 120px;
  }

  .company-title {
    font-size: 1.4rem;
  }

  .company-data__content--list {
    flex-direction: column;
    gap: 6px;
  }
}
