/* Harald Service — Professional Design Enhancements */

/* ===== CONTACT BAR ===== */
.harald-contact-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1) !important;
}
.harald-contact-bar a {
  text-decoration: none !important;
}

/* ===== FOOTER COMPANY INFO ===== */
.harald-company-info {
  animation: fadeInUp 0.6s ease-out;
}
.harald-company-info h3 {
  color: #f8fafc !important;
  letter-spacing: 0.1em !important;
}
.harald-company-info a {
  color: rgba(248, 250, 252, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.harald-company-info a:hover {
  color: #f8fafc !important;
}
.harald-company-info svg {
  color: #3b82f6 !important;
}

/* ===== PROFESSIONAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO SECTION ENHANCEMENT ===== */
.harald-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}

/* ===== SERVICE CARDS ENHANCEMENT ===== */
.harald-service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.harald-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
  border-color: rgba(59, 130, 246, 0.3);
}

/* ===== BUTTON ENHANCEMENTS ===== */
.harald-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
  transition: all 0.3s ease !important;
}
.harald-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5) !important;
}

/* ===== TRUST BADGES ===== */
.harald-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #22c55e;
}

/* ===== SECTION DIVIDERS ===== */
.harald-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* ===== LOADING STATES ===== */
.harald-skeleton {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
