/* Service icons and visual elements */
.icon-colocation {
  background: url('../images/icon-colocation.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.icon-interconnection {
  background: url('../images/icon-interconnection.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.icon-remote-hands {
  background: url('../images/icon-remote-hands.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.icon-migration {
  background: url('../images/icon-migration.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.icon-disaster-recovery {
  background: url('../images/icon-disaster-recovery.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.icon-bandwidth {
  background: url('../images/icon-bandwidth.svg') no-repeat center;
  width: 64px;
  height: 64px;
  display: inline-block;
}

/* Placeholder icons using CSS */
.icon-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--electric-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
}

/* Animation effects */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-dark {
  background-color: var(--slate-gray);
  color: var(--white);
}

.bg-primary {
  background-color: var(--deep-blue);
  color: var(--white);
}

.bg-accent {
  background-color: var(--electric-green);
  color: var(--white);
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rounded {
  border-radius: 8px;
}

.border {
  border: 1px solid #ddd;
}

/* Logo placeholder */
.logo-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
}

.logo-placeholder span {
  color: var(--electric-green);
}

.logo-placeholder::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--electric-green);
  margin-right: 10px;
  border-radius: 4px;
}
