/* ── Landing Page ────────────────────────────────────────────────────── */

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ── Hero Logo ──────────────────────────────────────────────────────── */

.hero-logo-container {
  position: relative;
}

.hero-logo {
  max-height: 200px;
  max-width: 100%;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .hero-logo {
    max-height: 150px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    max-height: 120px;
  }
}

/* ── Hero Button ────────────────────────────────────────────────────── */

.hero-section__btn {
  font-weight: 600;
  padding: 12px 24px;
}

.hero-section__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ── Team Members ───────────────────────────────────────────────────── */

.team-member {
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-3px);
}

.team-member__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-bg-light);
}

.team-member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.team-member__image-container:hover .team-member__image {
  transform: scale(1.05);
}

/* ── Contact Cards ──────────────────────────────────────────────────── */

.contact-card {
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
