@import url("components/base.css");
@import url("components/hero.css");
@import url("components/aboutme.css");
@import url("components/method.css");
@import url("components/about.css");
@import url("components/features.css");
@import url("components/services.css");
@import url("components/contact.css");
@import url("components/misc.css");
@media (max-width: 767.98px) {
  #aboutme .row {
    flex-direction: column-reverse;
  }
}
.btn-orange {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-orange:hover {
  background-color: #e56d58;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.service-item {
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.custom-checklist {
  padding-left: 1rem;
}

.custom-checklist li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.05em;
  line-height: 1.6;
  transition: background-color 0.3s ease;
}

.custom-checklist li:hover {
  background-color: rgba(248, 248, 248, 0.6);
  border-radius: 6px;
  padding-left: 0.4rem;
}

.custom-checklist li i {
  color: var(--brand-color, #f1806a);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.custom-checklist li:hover i {
  transform: scale(1.2);
  color: #d85b47;
}

.social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  color: #333;
  text-decoration: none;
}

.social-link i {
  font-size: 2rem;
  transition: transform 0.3s ease;
  color: var(--brand-color, #f1806a);
}

.social-link:hover {
  background-color: #fef6f5;
  transform: translateY(-4px);
  text-decoration: none;
}

.social-link:hover i {
  transform: scale(1.2);
  color: #d85b47;
}

.social-link span {
  font-size: 0.95rem;
  font-weight: 600;
}
