  .header-top-clean {
  background: #1d5572;
  border-bottom: 1px solid #e8eef5;
  padding: 5px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

.top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Company Info Section */
.company-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.established {
  background: #f8fafc;
  color: #64748b;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.phone-link {
  color: #febe0d;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.phone-link:hover {
  color: #3b82f6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
}

.social-links a:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-1px);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.translate-widget {
  font-size: 12px;
}

.action-btn {
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.track-btn {
  background: #eff6ff;
  color: #3b82f6;
  border-color: #dbeafe;
}

.track-btn:hover {
  background: #3b82f6;
  color: white;
}

.contact-btn {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #dcfce7;
}

.contact-btn:hover {
  background: #16a34a;
  color: white;
}

.dashboard-btn {
  background: #fef3c7;
  color: #d97706;
  border-color: #fed7aa;
}

.dashboard-btn:hover {
  background: #d97706;
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-wrapper {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .company-info,
  .social-links,
  .header-actions {
    justify-content: center;
  }
  
  .company-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .header-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .action-btn {
    font-size: 12px;
    padding: 5px 12px;
  }
}